Author: marcusb-guest Date: 2006-10-30 07:45:55 +0100 (Mon, 30 Oct 2006) New Revision: 2680
Added: trunk/commons-pool/commons-pool/ trunk/commons-pool/commons-pool/build.properties trunk/commons-pool/commons-pool/build.xml trunk/commons-pool/commons-pool/debian/ trunk/commons-pool/commons-pool/debian/changelog Removed: trunk/commons-pool/commons-pool/build.xml trunk/commons-pool/commons-pool/debian/ trunk/commons-pool/commons-pool/debian/changelog Log: Clone debian branch (r2679). Copied: trunk/commons-pool/commons-pool (from rev 2661, branches/commons-pool/feature/debian) Copied: trunk/commons-pool/commons-pool/build.properties (from rev 2662, branches/commons-pool/feature/debian/build.properties) Deleted: trunk/commons-pool/commons-pool/build.xml =================================================================== --- branches/commons-pool/feature/debian/build.xml 2006-10-26 09:31:28 UTC (rev 2661) +++ trunk/commons-pool/commons-pool/build.xml 2006-10-30 06:45:55 UTC (rev 2680) @@ -1,169 +0,0 @@ -<!-- - Copyright 2003-2004,2006 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. ---> -<!-- $Id: build.xml 390933 2006-04-03 00:46:35Z sandymac $ --> -<project name="commons-pool" default="test" basedir="."> - - <target name="init"> - <tstamp/> - - <!-- read properties from the build.properties, if any --> - <property name="component-propfile" value="${basedir}/build.properties"/> - <property file="${component-propfile}"/> - - <!-- read properties from the commons build.properties, if any --> - <property name="commons-propfile" value="${basedir}/../build.properties"/> - <property file="${commons-propfile}"/> - - <!-- read properties from the ${user.home}/propfile, if any --> - <property name="user-propfile" value="${user.home}/build.properties"/> - <property file="${user-propfile}"/> - - <!-- command line classpath, if any --> - <property name="cp" value=""/> - - <!-- now combine the classpaths --> - <property name="classpath" value="${cp}:${junit.jar}"/> - - <property name="name" value="commons-pool"/> - <property name="title" value="Jakarta Commons Object Pooling Package"/> - <property name="version" value="1.3"/> - <property name="package" value="org.apache.commons.pool.*"/> - - <property name="src.dir" value="${basedir}/src"/> - <property name="src.java.dir" value="${src.dir}/java"/> - <property name="src.test.dir" value="${src.dir}/test"/> - <property name="build.dir" value="${basedir}/build"/> - <property name="build.classes.dir" value="${build.dir}/classes"/> - <property name="build.test-classes.dir" value="${build.dir}/test-classes"/> - <property name="dist.dir" value="${basedir}/dist"/> - <property name="dist.jar" value="${dist.dir}/${name}-${version}.jar"/> - - <property name="test.entry" value="org.apache.commons.pool.TestAll"/> - <property name="test.failonerror" value="true" /> - <property name="test.runner" value="junit.textui.TestRunner" /> - - <property name="javadoc.dir" value="${dist.dir}/docs/api"/> - <property name="javadoc.bottom" value="<small>Copyright &copy; 2001-2003 Apache Software Foundation. Documenation generated ${TODAY}</small>."/> - <property name="javadoc.overview" value="${src.java.dir}/org/apache/commons/pool/overview.html" /> - - <property name="javac.optimize" value="false"/> - <property name="javac.debug" value="true"/> - <property name="javac.deprecation" value="true"/> - </target> - - <!-- ######################################################### --> - - <target name="clean" depends="init" description="removes generated files"> - <delete dir="${build.dir}"/> - <delete dir="${dist.dir}"/> - </target> - - <target name="javadoc" depends="init" description="generates javadocs"> - <mkdir dir="${javadoc.dir}"/> - <javadoc packagenames="org.*" - sourcepath="${src.java.dir}" - classpath="${classpath}" - destdir="${javadoc.dir}" - windowtitle="${title}" - doctitle="${title}" - bottom="${javadoc.bottom}" - overview="${javadoc.overview}" - public="true" - version="true" - author="true" - splitindex="false" - nodeprecated="true" - nodeprecatedlist="true" - notree="true" - noindex="false" - nohelp="true" - nonavbar="false" - serialwarn="false" - source="1.3"> - <link href="http://java.sun.com/j2se/1.3/docs/api"/> - </javadoc> - </target> - - <!-- ######################################################### --> - - <target name="compile" depends="init" description="compiles source files"> - <mkdir dir="${build.classes.dir}"/> - <javac destdir="${build.classes.dir}" - srcdir="${src.java.dir}" - classpath="${classpath}" - debug="${javac.debug}" - deprecation="${javac.deprecation}" - optimize="${javac.optimize}" - source="1.3" - target="1.3"/> - </target> - - <target name="compile-test" depends="compile"> - <mkdir dir="${build.test-classes.dir}"/> - <javac destdir="${build.test-classes.dir}" - srcdir="${src.test.dir}" - debug="${javac.debug}" - deprecation="${javac.deprecation}" - optimize="${javac.optimize}" - source="1.3" - target="1.3"> - <classpath> - <pathelement location="${build.classes.dir}" /> - <pathelement location="${build.test-classes.dir}" /> - <pathelement path="${classpath}" /> - </classpath> - </javac> - </target> - - <target name="test" depends="compile-test" description="runs (junit) unit tests"> - <echo message="Because we need to sleep to test the eviction threads, this takes a little while (around 35 seconds)..."/> - <java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}"> - <arg value="${test.entry}"/> - <classpath> - <pathelement location="${build.classes.dir}" /> - <pathelement location="${build.test-classes.dir}" /> - <pathelement path="${classpath}" /> - </classpath> - </java> - </target> - - <target name="build-jar" depends="compile"> - <mkdir dir="${dist.dir}"/> - <jar jarfile="${dist.jar}"> - <fileset dir="${build.classes.dir}"/> - <metainf dir="${basedir}" includes="LICENSE.txt,NOTICE.txt"/> - <manifest> - <attribute name="Built-By" value="${user.name}"/> - <attribute name="Package" value="${package}"/> - <attribute name="Extension-Name" value="${name}"/> - <attribute name="Specification-Vendor" value="Apache Software Foundation"/> - <attribute name="Specification-Title" value="${title}"/> - <attribute name="Implementation-Version" value="${version}"/> - <attribute name="Implementation-Vendor" value="Apache Software Foundation"/> - - </manifest> - </jar> - </target> - - <target name="build" depends="clean,build-jar,javadoc"> - <copy todir="${dist.dir}" file="${basedir}/LICENSE.txt"/> - <copy todir="${dist.dir}" file="${basedir}/NOTICE.txt"/> - <copy todir="${dist.dir}" file="${basedir}/README.txt"/> - </target> - - <target name="dist" depends="build" description="gump target"/> - -</project> Copied: trunk/commons-pool/commons-pool/build.xml (from rev 2662, branches/commons-pool/feature/debian/build.xml) Copied: trunk/commons-pool/commons-pool/debian (from rev 2662, branches/commons-pool/feature/debian/debian) Deleted: trunk/commons-pool/commons-pool/debian/changelog =================================================================== --- branches/commons-pool/feature/debian/debian/changelog 2006-10-26 20:20:03 UTC (rev 2662) +++ trunk/commons-pool/commons-pool/debian/changelog 2006-10-30 06:45:55 UTC (rev 2680) @@ -1,77 +0,0 @@ -commons-pool (1.3-1) unstable; urgency=low - - * New upstream release. - - Build process doesn't use network anymore. (Closes: #395264) - - No dependency on commons-collections. - * debian/rules: Get rid of cdbs. - * debian/rules: Build with GCJ instead of Kaffe. - * Updated copyright information. - - -- Marcus Better <[EMAIL PROTECTED]> Thu, 26 Oct 2006 11:07:53 +0200 - -commons-pool (1.2-4) unstable; urgency=low - - * debian/control, debian/rules: ant transition (changed deps: - libant1.6-java to ant) - * debian/copyright: removed the CVS tags - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Thu, 22 Sep 2005 23:35:42 +0200 - -commons-pool (1.2-3) unstable; urgency=low - - * changed build-dep from libant1.5-java to libant1.6-java - * added debian/watch file - * added dependency to libcommons-collections-java - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Mon, 7 Feb 2005 12:26:23 +0100 - -commons-pool (1.2-2) unstable; urgency=low - - * good idea to add jikes as build-dep when building the lib with jikes! - (closes: #257780) - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Wed, 7 Jul 2004 14:46:34 +0200 - -commons-pool (1.2-1) unstable; urgency=low - - * New upstream release - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Tue, 29 Jun 2004 15:08:11 +0200 - -commons-pool (1.1-4) unstable; urgency=low - - * Move to main! libcommons-collections-java is now in main. - * add dpatch has a build-dep-indep. - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Thu, 8 Apr 2004 16:57:35 +0200 - -commons-pool (1.1-3) unstable; urgency=low - - * Rebuild with the sources - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Wed, 24 Mar 2004 14:54:33 +0100 - -commons-pool (1.1-2) unstable; urgency=low - - * Still in contrib!.. - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Thu, 11 Mar 2004 00:21:42 +0100 - -commons-pool (1.1-1) unstable; urgency=low - - * New upstream release - * Changed standards version - * New maintainer (Adam wants me to take the package, I set - pkg-java-maintainers as a maintainer, Both he and I are uploaders) - * Removed the libcommons-pool-java-doc package because it's not so heavy - * Not javadoc at the moment but will be rebuild later - * Now build with kaffe (Move to main when libcommons-collections-java - will be in main) - - -- Arnaud Vandyck <[EMAIL PROTECTED]> Thu, 11 Mar 2004 00:09:57 +0100 - -commons-pool (1.0-1) unstable; urgency=low - - * Initial release. - - -- Adam Heath <[EMAIL PROTECTED]> Sun, 21 Jul 2002 12:12:59 -0500 Copied: trunk/commons-pool/commons-pool/debian/changelog (from rev 2668, branches/commons-pool/feature/debian/debian/changelog) _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

