summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2007-10-27 12:51:17 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2007-10-27 12:51:17 +0000
commit82cfa89eb976851f6dad2a629a3b20e3c1192ab8 (patch)
tree39f97b9d19e349ab85da34b4c5b245b904503de3 /dev-java/freemarker/files
parentFix variable quoting. (diff)
downloadhistorical-82cfa89eb976851f6dad2a629a3b20e3c1192ab8.tar.gz
historical-82cfa89eb976851f6dad2a629a3b20e3c1192ab8.tar.bz2
historical-82cfa89eb976851f6dad2a629a3b20e3c1192ab8.zip
Remove old version.
Package-Manager: portage-2.1.3.16
Diffstat (limited to 'dev-java/freemarker/files')
-rw-r--r--dev-java/freemarker/files/digest-freemarker-2.3.93
-rw-r--r--dev-java/freemarker/files/freemarker-2.3.9-gentoo.patch63
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-java/freemarker/files/digest-freemarker-2.3.9 b/dev-java/freemarker/files/digest-freemarker-2.3.9
deleted file mode 100644
index 7bfc21bd3ee5..000000000000
--- a/dev-java/freemarker/files/digest-freemarker-2.3.9
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 1798edc2bb37a6235ed0fc81456a91a0 freemarker-2.3.9.tar.gz 2016244
-RMD160 b12965adcf7d33e887b7a0367caa94a01a2c5bb7 freemarker-2.3.9.tar.gz 2016244
-SHA256 f9b462312bfbf22058e5d43683754a0a87294e5dff9bc1696b6ee48b0dafeefa freemarker-2.3.9.tar.gz 2016244
diff --git a/dev-java/freemarker/files/freemarker-2.3.9-gentoo.patch b/dev-java/freemarker/files/freemarker-2.3.9-gentoo.patch
deleted file mode 100644
index 7e34a18010b7..000000000000
--- a/dev-java/freemarker/files/freemarker-2.3.9-gentoo.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-diff -Nru freemarker-2.3.9.vanilla/build.xml freemarker-2.3.9/build.xml
---- freemarker-2.3.9.vanilla/build.xml 2007-03-09 15:38:44.000000000 +0100
-+++ freemarker-2.3.9/build.xml 2007-03-17 15:21:33.000000000 +0100
-@@ -60,11 +60,13 @@
- <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 +74,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 +92,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 +115,7 @@
- <pathelement path="${lib.logkit}"/>
- <pathelement path="${lib.log4j}"/>
- <pathelement path="${java.class.path}"/>
-+ <fileset dir="lib/" includes="**/*.jar"/>
- </path>
-
-
-diff -Nru freemarker-2.3.9.vanilla/src/freemarker/ext/rhino/RhinoFunctionModel.java freemarker-2.3.9/src/freemarker/ext/rhino/RhinoFunctionModel.java
---- freemarker-2.3.9.vanilla/src/freemarker/ext/rhino/RhinoFunctionModel.java 2007-03-09 15:38:42.000000000 +0100
-+++ freemarker-2.3.9/src/freemarker/ext/rhino/RhinoFunctionModel.java 2007-03-09 15:39:25.000000000 +0100
-@@ -37,7 +37,11 @@
- for (int i = 0; i < args.length; i++) {
- args[i] = wrapper.unwrap((TemplateModel)args[i]);
- }
-+ try {
- return wrapper.wrap(((Function)getScriptable()).call(cx,
- ScriptableObject.getTopLevelScope(fnThis), fnThis, args));
-+ } catch (Exception e) {
-+ throw new TemplateModelException(e);
-+ }
- }
- }