summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2016-01-20 22:11:16 +0000
committerPatrice Clement <monsieurp@gentoo.org>2016-01-20 22:14:01 +0000
commitb92032a4fd044fcc0049dc5a77990f7dda0c3718 (patch)
tree1c5a34f7d9bfece80c76616772e3a6b62bfbcac9 /dev-java/freemarker/files
parentdev-java/freemarker: Fix DESCRIPTION length + minor housekeeping. (diff)
downloadgentoo-b92032a4fd044fcc0049dc5a77990f7dda0c3718.tar.gz
gentoo-b92032a4fd044fcc0049dc5a77990f7dda0c3718.tar.bz2
gentoo-b92032a4fd044fcc0049dc5a77990f7dda0c3718.zip
dev-java/freemarker: Clean up old.
Package-Manager: portage-2.2.26 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/freemarker/files')
-rw-r--r--dev-java/freemarker/files/freemarker-2.3.10-gentoo.patch54
-rw-r--r--dev-java/freemarker/files/freemarker-jython-2.2.patch20
2 files changed, 0 insertions, 74 deletions
diff --git a/dev-java/freemarker/files/freemarker-2.3.10-gentoo.patch b/dev-java/freemarker/files/freemarker-2.3.10-gentoo.patch
deleted file mode 100644
index 2282b04de165..000000000000
--- a/dev-java/freemarker/files/freemarker-2.3.10-gentoo.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-diff -Nru freemarker-2.3.10.vanilla/build.xml freemarker-2.3.10/build.xml
---- freemarker-2.3.10.vanilla/build.xml 2007-05-06 11:46:06.000000000 +0200
-+++ freemarker-2.3.10/build.xml 2007-05-06 11:48:55.000000000 +0200
-@@ -55,16 +55,19 @@
- <pathelement path="${lib.log4j}"/>
- <pathelement path="${lib.rhino}"/>
- <pathelement path="${java.class.path}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
- <path id="compile.classpath">
- <path refid="compile.nojsp.classpath"/>
- <pathelement path="${lib.servlet23}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
- <path id="compile.jsp2.classpath">
- <path refid="compile.nojsp.classpath"/>
- <pathelement path="${lib.servlet24}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
- <path id="compile.classpath.testcases">
-@@ -72,6 +75,7 @@
- <pathelement path="${lib.jython}"/>
- <pathelement path="${lib.jdom}"/>
- <pathelement path="${lib.servlet23}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
- <path id="compile.classpath.javadoc">
-@@ -89,12 +93,14 @@
- <pathelement path="${src.dir}"/>
- <pathelement path="${build.javacc.dir}"/>
- <pathelement path="${java.class.path}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
- <path id="compile.classpath.examples">
- <pathelement path="${lib.servlet23}"/>
- <pathelement path="${lib.dir}/freemarker.jar"/>
- <pathelement path="${lib.struts}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
- <path id="full.classpath">
-@@ -110,6 +116,7 @@
- <pathelement path="${lib.logkit}"/>
- <pathelement path="${lib.log4j}"/>
- <pathelement path="${java.class.path}"/>
-+ <fileset dir="lib" includes="*.jar"/>
- </path>
-
-
diff --git a/dev-java/freemarker/files/freemarker-jython-2.2.patch b/dev-java/freemarker/files/freemarker-jython-2.2.patch
deleted file mode 100644
index 0d0d387ee1b4..000000000000
--- a/dev-java/freemarker/files/freemarker-jython-2.2.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -Naur src.orig/freemarker/ext/jython/JythonHashModel.java src/freemarker/ext/jython/JythonHashModel.java
---- src.orig/freemarker/ext/jython/JythonHashModel.java 2007-04-21 01:06:15.000000000 +1200
-+++ src/freemarker/ext/jython/JythonHashModel.java 2008-02-29 18:56:57.000000000 +1300
-@@ -137,7 +137,7 @@
- {
- throw new TemplateModelException(e);
- }
-- throw new TemplateModelException("'?keys' is not supported as there is no 'keys' nor 'keySet' attribute on an instance of " + object.__class__.__name__);
-+ throw new TemplateModelException("'?keys' is not supported as there is no 'keys' nor 'keySet' attribute on an instance of " + object.getType());
- }
-
- /**
-@@ -157,6 +157,6 @@
- {
- throw new TemplateModelException(e);
- }
-- throw new TemplateModelException("'?values' is not supported as there is no 'values' attribute on an instance of " + object.__class__.__name__);
-+ throw new TemplateModelException("'?values' is not supported as there is no 'values' attribute on an instance of " + object.getType());
- }
- }