diff options
author | 2005-12-05 03:35:03 +0000 | |
---|---|---|
committer | 2005-12-05 03:35:03 +0000 | |
commit | 89857e8e91ad5a98b732ed8713d963344cc0689e (patch) | |
tree | 43f77066e5cacee5e6504870105c7ea5fcf740f3 /dev-java/commons-attributes/files | |
parent | Initial commit - bug #98781, based on ebuild submitted by Dick Marinus <dm@ch... (diff) | |
download | gentoo-2-89857e8e91ad5a98b732ed8713d963344cc0689e.tar.gz gentoo-2-89857e8e91ad5a98b732ed8713d963344cc0689e.tar.bz2 gentoo-2-89857e8e91ad5a98b732ed8713d963344cc0689e.zip |
Initial commit (bug #97008).
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'dev-java/commons-attributes/files')
3 files changed, 51 insertions, 0 deletions
diff --git a/dev-java/commons-attributes/files/anttasks.properties b/dev-java/commons-attributes/files/anttasks.properties new file mode 100644 index 000000000000..271c87b9240d --- /dev/null +++ b/dev-java/commons-attributes/files/anttasks.properties @@ -0,0 +1,18 @@ +#
+# Copyright 2003-2004 The Apache Software Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+attribute-compiler=org.apache.commons.attributes.compiler.AttributeCompiler
+attribute-indexer=org.apache.commons.attributes.compiler.AttributeIndexer
+attribute-validator=org.apache.commons.attributes.validation.AttributeValidatorTask
\ No newline at end of file diff --git a/dev-java/commons-attributes/files/commons-attributes-2.1-gentoo.patch b/dev-java/commons-attributes/files/commons-attributes-2.1-gentoo.patch new file mode 100644 index 000000000000..b4de400cb3a1 --- /dev/null +++ b/dev-java/commons-attributes/files/commons-attributes-2.1-gentoo.patch @@ -0,0 +1,32 @@ +Only in commons-attributes-patched/: .build.xml.swo +Only in commons-attributes-patched/: .build.xml.swp +diff -ru commons-attributes/build.xml commons-attributes-patched/build.xml +--- commons-attributes/build.xml 2004-08-01 16:18:27.000000000 -0400 ++++ commons-attributes-patched/build.xml 2005-06-24 21:31:02.000000000 -0400 +@@ -86,6 +86,9 @@ + <include name="**/*.xservice">
+ </include>
+ </fileset>
++ <fileset dir="compiler/src/java">
++ <include name="org/apache/commons/attributes/anttasks.properties"/>
++ </fileset>
+ </copy>
+ <copy todir="${classesdir}">
+ <fileset dir="." includes="LICENSE.txt,NOTICE.txt"/>
+@@ -100,7 +103,7 @@ + <target name="jar" description="o Create the jar" depends="compile">
+ <jar jarfile="target/${final.name.api}.jar" includes="org/apache/commons/attributes/*,LICENSE.txt,NOTICE.txt" basedir="${classesdir}">
+ </jar>
+- <jar jarfile="target/${final.name.compiler}.jar" excludes="org/apache/commons/attributes/*" includes="**/*" basedir="${classesdir}">
++ <jar jarfile="target/${final.name.compiler}.jar" excludes="org/apache/commons/attributes/*.class" includes="**/*,org/apache/commons/attributes/anttasks.properties" basedir="${classesdir}">
+ </jar>
+ </target>
+ <target name="clean" description="o Clean up the generated directories">
+@@ -162,4 +167,4 @@ + <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
+ </unjar>
+ </target>
+-</project> +\ No newline at end of file ++</project>
+Only in commons-attributes-patched/: target diff --git a/dev-java/commons-attributes/files/digest-commons-attributes-2.1 b/dev-java/commons-attributes/files/digest-commons-attributes-2.1 new file mode 100644 index 000000000000..a65504200934 --- /dev/null +++ b/dev-java/commons-attributes/files/digest-commons-attributes-2.1 @@ -0,0 +1 @@ +MD5 3ee125a9f06ae3462f1d5ac58f7c1648 commons-attributes-2.1-src.tgz 89259 |