summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2015-10-28 21:00:47 +0000
committerPatrice Clement <monsieurp@gentoo.org>2015-10-28 21:08:41 +0000
commitd53ff204309b1e75190277f93c2eaeea0b4a64a0 (patch)
tree6bc36fb90f4b932b1d467051e5a4b9419ebc9a8b /dev-java/rhino/files
parentdev-java/rhino: Stable for amd64. Stable for ppc+ppc64+x86 using the ALLARCHE... (diff)
downloadgentoo-d53ff204309b1e75190277f93c2eaeea0b4a64a0.tar.gz
gentoo-d53ff204309b1e75190277f93c2eaeea0b4a64a0.tar.bz2
gentoo-d53ff204309b1e75190277f93c2eaeea0b4a64a0.zip
dev-java/rhino: Clean up old.
Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/rhino/files')
-rw-r--r--dev-java/rhino/files/00_dont-fetch-swing-ex.patch10
-rw-r--r--dev-java/rhino/files/1.5.5_jdk15.patch23
-rw-r--r--dev-java/rhino/files/public-NativeScript.patch11
-rw-r--r--dev-java/rhino/files/rhino-1.6-noget.patch12
4 files changed, 0 insertions, 56 deletions
diff --git a/dev-java/rhino/files/00_dont-fetch-swing-ex.patch b/dev-java/rhino/files/00_dont-fetch-swing-ex.patch
deleted file mode 100644
index 994975149dd0..000000000000
--- a/dev-java/rhino/files/00_dont-fetch-swing-ex.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- toolsrc/build.xml 2004-03-25 15:54:34.000000000 +0100
-+++ toolsrc/build-patch.xml 2004-06-19 23:48:07.225123288 +0200
-@@ -20,7 +20,6 @@
- <!-- Download source from Sun's site, unzip it, remove
- the files we don't need, and change the package
- -->
-- <get src="http://java.sun.com/products/jfc/tsc/articles/treetable2/downloads/src.zip" dest="${nest}/${build.dir}/swingExSrc.zip"/>
- <unzip src="${nest}/${build.dir}/swingExSrc.zip" dest="${src.debugger}"/>
- <delete file="${src.debugger}/FileSystemModel2.java" />
- <delete file="${src.debugger}/MergeSort.java" />
diff --git a/dev-java/rhino/files/1.5.5_jdk15.patch b/dev-java/rhino/files/1.5.5_jdk15.patch
deleted file mode 100644
index 0948921b4770..000000000000
--- a/dev-java/rhino/files/1.5.5_jdk15.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -urpN rhino1_5R5.old/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java rhino1_5R5/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java
---- rhino1_5R5.old/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java 2004-03-25 15:54:34.000000000 +0100
-+++ rhino1_5R5/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java 2005-02-01 13:58:26.521223264 +0100
-@@ -124,7 +124,7 @@ public class JavaPolicySecurity extends
-
- public JavaPolicySecurity() {
- // To trigger error on jdk-1.1 with lazy load
-- new CodeSource(null, null);
-+ new CodeSource(null, (java.security.cert.Certificate[])null);
- }
-
- protected void callProcessFileSecure(final Context cx,
-@@ -167,8 +167,8 @@ public class JavaPolicySecurity extends
- }
-
- private ProtectionDomain getUrlDomain(URL url) {
-- CodeSource cs = new CodeSource(url, null);
-- PermissionCollection pc = Policy.getPolicy().getPermissions(cs);
-+ CodeSource cs = new CodeSource(url, (java.security.cert.Certificate[])null);
-+ PermissionCollection pc = Policy.getPolicy().getPermissions(cs);
- return new ProtectionDomain(cs, pc);
- }
-
diff --git a/dev-java/rhino/files/public-NativeScript.patch b/dev-java/rhino/files/public-NativeScript.patch
deleted file mode 100644
index 026bcedb0e55..000000000000
--- a/dev-java/rhino/files/public-NativeScript.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- rhino1_5R5/src/org/mozilla/javascript/NativeScript.java.orig 2006-05-31 14:01:06.000000000 +0200
-+++ rhino1_5R5/src/org/mozilla/javascript/NativeScript.java 2006-05-31 14:03:37.000000000 +0200
-@@ -55,7 +55,7 @@
- * @author Norris Boyd
- */
-
--class NativeScript extends NativeFunction implements Script
-+public class NativeScript extends NativeFunction implements Script
- {
-
- static void init(Context cx, Scriptable scope, boolean sealed)
diff --git a/dev-java/rhino/files/rhino-1.6-noget.patch b/dev-java/rhino/files/rhino-1.6-noget.patch
deleted file mode 100644
index 235091428392..000000000000
--- a/dev-java/rhino/files/rhino-1.6-noget.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/toolsrc/org/mozilla/javascript/tools/debugger/build.xml b/toolsrc/org/mozilla/javascript/tools/debugger/build.xml
-index 7ed0236..5f7db6e 100644
---- a/toolsrc/org/mozilla/javascript/tools/debugger/build.xml
-+++ b/toolsrc/org/mozilla/javascript/tools/debugger/build.xml
-@@ -47,7 +47,6 @@
- the files we don't need, and change the package
- -->
- <mkdir dir="downloaded"/>
-- <get src="${swing-ex-url}" dest="downloaded/swingExSrc.zip"/>
- <unzip src="downloaded/swingExSrc.zip" dest="downloaded/">
- <patternset>
- <include name="AbstractCellEditor.java"/>