diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-10-25 20:30:51 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-10-25 20:30:51 +0000 |
commit | 001cb92fdbce14451fd7a323a3c59468af5a7521 (patch) | |
tree | 25343810c82dae48a50e70ccc3cabdbd396ea54b | |
parent | Version bump to fix the KSpell2 debacle, bug #152417. Keywording on 3.5.4-r4 ... (diff) | |
download | gentoo-2-001cb92fdbce14451fd7a323a3c59468af5a7521.tar.gz gentoo-2-001cb92fdbce14451fd7a323a3c59468af5a7521.tar.bz2 gentoo-2-001cb92fdbce14451fd7a323a3c59468af5a7521.zip |
Forgot to include other patch...
(Portage version: 2.1.2_pre3-r4)
-rw-r--r-- | dev-java/commons-logging/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/commons-logging/files/commons-logging-1.1-gentoo.patch | 27 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-java/commons-logging/ChangeLog b/dev-java/commons-logging/ChangeLog index 947068419f83..7dbcda61a9ff 100644 --- a/dev-java/commons-logging/ChangeLog +++ b/dev-java/commons-logging/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/commons-logging # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.42 2006/10/25 16:29:07 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.43 2006/10/25 20:30:51 nichoj Exp $ + + 25 Oct 2006; Joshua Nichols <nichoj@gentoo.org> + +files/commons-logging-1.1-gentoo.patch: + Forgot to include other patch... 25 Oct 2006; Joshua Nichols <nichoj@gentoo.org> +files/commons-logging-1.1-servletapi.patch: diff --git a/dev-java/commons-logging/files/commons-logging-1.1-gentoo.patch b/dev-java/commons-logging/files/commons-logging-1.1-gentoo.patch new file mode 100644 index 000000000000..06ac54cdb79f --- /dev/null +++ b/dev-java/commons-logging/files/commons-logging-1.1-gentoo.patch @@ -0,0 +1,27 @@ +--- build.xml.original 2006-10-01 18:15:11.000000000 +0200 ++++ build.xml 2006-10-01 18:36:46.000000000 +0200 +@@ -772,5 +772,23 @@ + One or more unit tests failed. + </fail> + </target> +- ++ <target name="javadoc" description="o Generate javadoc" depends=""> ++ <mkdir dir="${build.home}/docs"> ++ </mkdir> ++ <tstamp> ++ <format pattern="2001-yyyy" property="year"> ++ </format> ++ </tstamp> ++ <property name="copyright" value="Copyright &copy; The Apache Software Foundation. All Rights Reserved."> ++ </property> ++ <property name="title" value="Logging 1.1 API"> ++ </property> ++ <javadoc use="true" private="true" destdir="${build.home}/docs" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.logging.*"> ++ <classpath> ++ <path refid="javadoc.classpath"> ++ </path> ++ </classpath> ++ </javadoc> ++ </target> ++ + </project> |