diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-01-16 17:13:38 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-01-16 17:13:38 +0000 |
commit | 0ea9d281e680cd73904f3a70e8efe8834650baa3 (patch) | |
tree | 063211d1d7c963ea7a13d8eb2cded300e75911e0 /dev-java/hessian/files | |
parent | Stable on amd64. Remove obsolete versions. (diff) | |
download | gentoo-2-0ea9d281e680cd73904f3a70e8efe8834650baa3.tar.gz gentoo-2-0ea9d281e680cd73904f3a70e8efe8834650baa3.tar.bz2 gentoo-2-0ea9d281e680cd73904f3a70e8efe8834650baa3.zip |
Separated caucho-services from 3.0.8 to dev-java/caucho-services.
(Portage version: 2.1.2)
Diffstat (limited to 'dev-java/hessian/files')
-rw-r--r-- | dev-java/hessian/files/3.0.8-java5.patch | 28 | ||||
-rw-r--r-- | dev-java/hessian/files/digest-hessian-3.0.8-r4 | 3 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-java/hessian/files/3.0.8-java5.patch b/dev-java/hessian/files/3.0.8-java5.patch new file mode 100644 index 000000000000..906eb7efca18 --- /dev/null +++ b/dev-java/hessian/files/3.0.8-java5.patch @@ -0,0 +1,28 @@ +diff -uNr hessian-3.0.8.orig/src/com/caucho/hessian/client/HessianProxyFactory.java hessian-3.0.8/src/com/caucho/hessian/client/HessianProxyFactory.java +--- hessian-3.0.8.orig/src/com/caucho/hessian/client/HessianProxyFactory.java 2006-08-15 10:38:05.000000000 +0200 ++++ hessian-3.0.8/src/com/caucho/hessian/client/HessianProxyFactory.java 2006-08-15 10:40:24.000000000 +0200 +@@ -230,7 +230,7 @@ + { + HessianProxy handler = new HessianProxy(this, new URL(url)); + +- return Proxy.newProxyInstance(api.getClassLoader(), ++ return java.lang.reflect.Proxy.newProxyInstance(api.getClassLoader(), + new Class[] { api, + HessianRemoteObject.class }, + handler); +diff -uNr hessian-3.0.8.orig/src/com/caucho/hessian/client/HessianProxy.java hessian-3.0.8/src/com/caucho/hessian/client/HessianProxy.java +--- hessian-3.0.8.orig/src/com/caucho/hessian/client/HessianProxy.java 2006-08-15 10:38:05.000000000 +0200 ++++ hessian-3.0.8/src/com/caucho/hessian/client/HessianProxy.java 2006-08-15 10:40:06.000000000 +0200 +@@ -94,10 +94,10 @@ + if (methodName.equals("equals") && + params.length == 1 && params[0].equals(Object.class)) { + Object value = args[0]; +- if (value == null || ! Proxy.isProxyClass(value.getClass())) ++ if (value == null || ! java.lang.reflect.Proxy.isProxyClass(value.getClass())) + return new Boolean(false); + +- HessianProxy handler = (HessianProxy) Proxy.getInvocationHandler(value); ++ HessianProxy handler = (HessianProxy) java.lang.reflect.Proxy.getInvocationHandler(value); + + return new Boolean(_url.equals(handler.getURL())); + } diff --git a/dev-java/hessian/files/digest-hessian-3.0.8-r4 b/dev-java/hessian/files/digest-hessian-3.0.8-r4 new file mode 100644 index 000000000000..bbef2bfc8555 --- /dev/null +++ b/dev-java/hessian/files/digest-hessian-3.0.8-r4 @@ -0,0 +1,3 @@ +MD5 de8cb0063ef400a2f0f98a42f3714e5a hessian-3.0.8-src.jar 184076 +RMD160 58fabf4adaf5fc508293c55a4451ab2dde48265a hessian-3.0.8-src.jar 184076 +SHA256 467163cb89ca6f40d8fd8ccafd1ca9c8e3a4d670529acbc53c0e0efe29c2cb1b hessian-3.0.8-src.jar 184076 |