summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Aniszczyk <zx@gentoo.org>2004-05-14 02:54:19 +0000
committerChris Aniszczyk <zx@gentoo.org>2004-05-14 02:54:19 +0000
commit0831ec2f35f5fbf52c1fb71737553e3d5cded61e (patch)
tree0ba48d9b688268be247da3794f62f8bf2e88b9aa /dev-java/commons-cli/files
parent~amd64 (Manifest recommit) (diff)
downloadgentoo-2-0831ec2f35f5fbf52c1fb71737553e3d5cded61e.tar.gz
gentoo-2-0831ec2f35f5fbf52c1fb71737553e3d5cded61e.tar.bz2
gentoo-2-0831ec2f35f5fbf52c1fb71737553e3d5cded61e.zip
Closes #50304
Diffstat (limited to 'dev-java/commons-cli/files')
-rw-r--r--dev-java/commons-cli/files/commons-cli-1.0-gentoo.diff112
-rw-r--r--dev-java/commons-cli/files/digest-commons-cli-1.0-r41
2 files changed, 109 insertions, 4 deletions
diff --git a/dev-java/commons-cli/files/commons-cli-1.0-gentoo.diff b/dev-java/commons-cli/files/commons-cli-1.0-gentoo.diff
index 88b6a8461f1d..9a916e774f8f 100644
--- a/dev-java/commons-cli/files/commons-cli-1.0-gentoo.diff
+++ b/dev-java/commons-cli/files/commons-cli-1.0-gentoo.diff
@@ -1,11 +1,115 @@
---- build.xml.orig 2003-03-10 16:54:25.000000000 -0600
-+++ build.xml 2003-03-10 16:54:13.000000000 -0600
-@@ -8,7 +8,7 @@
+--- build.xml 2002-11-06 00:10:24.000000000 -0500
++++ build.xml.patched 2004-05-13 22:46:32.819126973 -0400
+@@ -1,15 +1,23 @@
+ <?xml version="1.0" encoding="UTF-8"?>
+
+ <project default="jar" name="commons-cli" basedir=".">
+-
++
++ <property file="${basedir}/build.properties"/>
++
++ <path id="compile.classpath">
++ <pathelement location="${commons-logging.jar}"/>
++ <pathelement location="${commons-lang.jar}"/>
++ <pathelement location="${junit.jar}"/>
++ </path>
++
+ <property name="defaulttargetdir" value="target"></property>
+ <property name="classesdir" value="target/classes"></property>
+ <property name="testclassesdir" value="target/test-classes"></property>
<property name="testreportdir" value="target/test-reports"></property>
<property name="distdir" value="dist"></property>
<property name="javadocdir" value="target/docs/apidocs"></property>
- <property name="final.name" value="commons-cli-1.0-beta-2-dev"></property>
+-
+ <property name="final.name" value="commons-cli-1.0"></property>
-
++
<target name="init" description="o Initializes some properties">
+ <condition property="noget">
+@@ -17,21 +25,13 @@
+ </condition>
+ </target>
+
+- <target name="jar" description="o Create the jar" depends="get-deps">
++ <target name="jar" description="o Create the jar">
+
+ <mkdir dir="${classesdir}"></mkdir>
+
+- <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
+- <src>
+- <pathelement location="src/java"></pathelement>
+- </src>
+- <classpath>
+- <fileset dir="lib">
+- <include name="*.jar"></include>
+- </fileset>
+- </classpath>
++ <javac srcdir="src/java" destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
++ <classpath refid="compile.classpath"/>
+ </javac>
+-
+
+ <jar jarfile="target/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}"></jar>
+
+@@ -55,10 +55,8 @@
+ <sysproperty key="basedir" value="src/test"></sysproperty>
+ <formatter type="xml"></formatter>
+ <formatter usefile="true" type="plain"></formatter>
++ <classpath refid="compile.classpath"/>
+ <classpath>
+- <fileset dir="lib">
+- <include name="*.jar"></include>
+- </fileset>
+ <pathelement location="target/${final.name}.jar"></pathelement>
+ <pathelement path="${testclassesdir}"></pathelement>
+ </classpath>
+@@ -115,39 +113,17 @@
+ <property name="title" value="CLI 1.0-beta-2-dev API"></property>
+
+ <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.cli.*">
++
++ <classpath refid="compile.classpath"/>
+ <classpath>
+- <fileset dir="lib">
+- <include name="*.jar"></include>
+- </fileset>
+ <pathelement location="target/${final.name}.jar"></pathelement>
+ </classpath>
+ </javadoc>
+
+ </target>
+
+- <target name="get-deps" unless="noget" depends="init">
+-
+- <mkdir dir="lib"></mkdir>
+-
+- <get dest="lib/commons-logging-1.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.jar"></get>
+- <get dest="lib/commons-lang-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-lang/jars/commons-lang-SNAPSHOT.jar"></get>
+- <get dest="lib/junit-3.7.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.7.jar"></get>
+-
+- </target>
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+ <target name="install-maven">
+
+-
+-
+ <get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${maven.repo.remote}/maven/maven-install-latest.jar"></get>
+
+ <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar"></unjar>
+@@ -155,4 +131,4 @@
+ </target>
+
+ </project>
+-
+\ No newline at end of file
++
diff --git a/dev-java/commons-cli/files/digest-commons-cli-1.0-r4 b/dev-java/commons-cli/files/digest-commons-cli-1.0-r4
new file mode 100644
index 000000000000..9fa950d9ac6b
--- /dev/null
+++ b/dev-java/commons-cli/files/digest-commons-cli-1.0-r4
@@ -0,0 +1 @@
+MD5 ba34d585046b1f17dacbb13b377f4255 cli-1.0-src.tar.gz 37046