[pkg-java] r18534 - in tags/ant: . 1.9.4-3/debian 1.9.4-3/debian/patches

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Wed Oct 8 10:15:08 BST 2014


Author: ebourg-guest
Date: 2014-10-08 09:15:08 +0000 (Wed, 08 Oct 2014)
New Revision: 18534

Added:
   tags/ant/1.9.4-3/
   tags/ant/1.9.4-3/debian/build.xml.5
   tags/ant/1.9.4-3/debian/changelog
   tags/ant/1.9.4-3/debian/control
   tags/ant/1.9.4-3/debian/maven.rules
   tags/ant/1.9.4-3/debian/patches/series
   tags/ant/1.9.4-3/debian/rules
Removed:
   tags/ant/1.9.4-3/debian/build.xml.5
   tags/ant/1.9.4-3/debian/changelog
   tags/ant/1.9.4-3/debian/control
   tags/ant/1.9.4-3/debian/maven.rules
   tags/ant/1.9.4-3/debian/patches/0003-add-Xerces-from-Debian-s-path.patch
   tags/ant/1.9.4-3/debian/patches/series
   tags/ant/1.9.4-3/debian/rules
Log:
[svn-buildpackage] Tagging ant 1.9.4-3

Deleted: tags/ant/1.9.4-3/debian/build.xml.5
===================================================================
--- trunk/ant/debian/build.xml.5	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/build.xml.5	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,178 +0,0 @@
-.TH build.xml 5 "February 2010" "Debian GNU/Linux"
-.SH NAME
-build.xml \- configuration file used by ant to build projects
-
-.SH DESCRIPTION
-
-The file
-.B build.xml
-is the default configuration file used by
-.B ant
-to determine target to build for a specific project. It can be
-considered the ant equivalent of Makefile.
-
-The format of
-.B ant
-is XML and for each project a separate file is constructed.
-The buildfile consists of one or more tasks. An example is
-given below.
-
-<project default="compile">
-  
-  <target name="compile">
-    <javac srcdir="src"/>
-  </target>
-
-</project>
-
-This example has one target and it is defaulted. The target itself
-consists of one task
-.B javac
-which compiles the files in the \fIsrc\fR directory.
-
-.SH TARGETS
-
-Targets can depend on other targets. These dependencies are given by 
-the \fIdepends\fR attribute of the <\fItarget\fR> element.
-
-.SH TASKS
-
-A task is a piece of code that is executed. 
-.B Ant
-recognizes built-in task, optional tasks, but one can also write new 
-tasks.
-
-.B Built-in tasks
-
-The built-in tasks are: \fIAnt\fR, \fIAntCall\fR, \fIAntStructure\fR,
-\fIAntVersion\fR, \fIApply\fR, \fIApt\fR, \fIAvailable\fR, \fIBasename\fR,
-\fIBuildNumber\fR, \fIBUnzip2\fR, \fIBZip2\fR, \fIChecksum\fR, \fIChmod\fR,
-\fIConcat\fR, \fICondition\fR, \fICopy\fR, \fIComponentdef\fR, \fICvs\fR,
-\fICvsChangeLog\fR, \fICvsVersion\fR, \fICVSPass\fR, \fICvsTagDiff\fR,
-\fIDefaultexcludes\fR, \fIDelete\fR, \fIDeltree\fR, \fIDependset\fR, 
-\fIDiagnostics\fR, \fIDirname\fR, \fIEar\fR, \fIEcho\fR, \fIEchoXML\fR,
-\fIExec\fR, \fIFail\fR, \fIFilter\fR, \fIFixCRLF\fR, \fIGenKey\fR, \fIGet\fR,
-\fIHostInfo\fR, \fIGUnzip\fR, \fIGZip\fR, \fIImport\fR, \fIInclude\fR,
-\fIInput\fR, \fIJar\fR, \fIJava\fR, \fIJavac\fR, \fIJavadoc\fR, \fILength\fR,
-\fILoadFile\fR, \fILoadProperties\fR, \fILoadResource\fR, \fILocal\fR,
-\fIMakeURL\fR, \fIMail\fR, \fIMacroDef\fR, \fIManifest\fR, \fIManifestClassPath\fR,
-\fIMkdir\fR, \fIMove\fR, \fINice\fR, \fIParallel\fR, \fIPatch\fR,
-\fIPathConvert\fR, \fIPreSetDef\fR, \fIProperty\fR, \fIPropertyHelper\fR,
-\fIRecord\fR, \fIReplace\fR, \fIResourceCount\fR, \fIRetry\fR, \fIRmic\fR,
-\fISequential\fR, \fISignJar\fR, \fISleep\fR, \fISql\fR, \fISubAnt\fR,
-\fISync\fR, \fITar\fR, \fITaskdef\fR, \fITempfile\fR, \fITouch\fR,
-\fITruncate\fR, \fITStamp\fR, \fITypedef\fR, \fIUnjar\fR, \fIUntar\fR,
-\fIUnwar\fR, \fIUnzip\fR, \fIUptodate\fR, \fIWaitfor\fR, \fIWhichResource\fR,
-\fIWar\fR, \fIXmlProperty\fR, \fIXSLT\fR, \fIZip\fR
-
-.TP
-\fBJava\fR
-Executes a Java class within the running (Ant) VM or forks another VM if 
-specified. Below are some of the attibutes to the <\fIjava\fR> element:
-
-.B classname
-(required) the Java class to execute
-
-.B fork
-if enabled triggers the class execution in another VM (disabled by default)
-
-.B jvm
-the command used to invoke the Java Virtual Machine, default is
-\fIjava\fR. The command is resolved by java.lang.Runtime.exec().
-Ignored if fork is disabled.
-
-Other arguments are \fIclasspath\fR, \fIclasspathref\fR, \fImaxmemory\fR,
-\fIfailonerror\fR, \fIdir\fR and \fIoutput\fR.
-
-.TP
-\fBJavac\fR
-Compiles a source tree within the running (Ant) VM.
-
-.B srcdir
-(required) location of the java files
-
-.B destdir
-location to store the class files
-
-.B debug
-indicates whether source should be compiled
-with debug information; defaults to off
-
-.B optimize
-indicates whether source should be compiled
-with optimization; defaults to off
-
-.B target
-generate class files for specific VM version
-(e.g., 1.1 or 1.2).
-
-.B includes
-comma-separated list of patterns of files that
-must be included; all files are included when omitted
-
-.B excludes
-comma-separated list of patterns of files that
-must be excluded; no files (except default
-excludes) are excluded when omitted.
-
-.B defaultexcludes
-indicates whether default excludes should be
-used (yes | no); default excludes are used
-when omitted.
-
-Other arguments are \fIincludesfile\fR, \fIexcludesfile\fR, 
-\fIclasspath\fR, \fIbootclasspath\fR, \fIclasspathref\fR,
-\fIbootclasspathref\fR, \fIextdirs\fR, \fIencoding\fR,
-\fIdeprecation\fR, \fIverbose\fR, \fIincludeAntRuntime\fR,
-\fIincludeJavaRuntime\fR and \fIfailonerror\fR.
-
-.SH Properties
-
-A project can have a set of properties, which consist of a name value
-combination. Within tasks they can be used by placing them between
-"${" and "}", as in "${builddir}/classes".
-
-.B Built-in Properties
-
-Ant provides access to all system properties as if they had been defined 
-using a <\fIproperty\fR> task. For example, ${os.name} expands to the name of 
-the operating system.
-
-.TP
-\fBbasedir\fR
-the absolute path of the project's basedir (as set
-with the basedir attribute of <project>).
-.TP
-\fBant.file\fR
-the absolute path of the buildfile.
-.TP
-\fBant.version\fR
-the version of Ant.
-.TP
-\fBant.project.name\fR
-the name of the project that is currently executing;
-it is set in the name attribute of <project>.
-.TP
-\fBant.java.version\fR
-the JVM version Ant detected; currently it can hold
-the values "1.1", "1.2" and "1.3".
-
-.SH Classpath
-
-The classpath can be set by using the <\fIclasspath\fR>
-element:
-
-<classpath>
-  <pathelement path="${classpath}"/>
-  <pathelement location="lib/helper.jar"/>
-  <fileset dir="lib">
-    <include name="**/*.jar"/>
-  </fileset> 
-</classpath>
-
-.SH SEE ALSO
-.BR ant (1)
-
-.SH AUTHOR
-This manpage is made by Egon Willighagen <egonw at sci.kun.nl>
-and based on the Ant Manual <\fIhttp://jakarta.apache.org/ant/manual/\fR>.

Copied: tags/ant/1.9.4-3/debian/build.xml.5 (from rev 18531, trunk/ant/debian/build.xml.5)
===================================================================
--- tags/ant/1.9.4-3/debian/build.xml.5	                        (rev 0)
+++ tags/ant/1.9.4-3/debian/build.xml.5	2014-10-08 09:15:08 UTC (rev 18534)
@@ -0,0 +1,173 @@
+.TH build.xml 5 "February 2010" "Debian Linux"
+.SH NAME
+build.xml \- configuration file used by Apache Ant to build projects
+
+.SH DESCRIPTION
+
+The file
+.B build.xml
+is the default configuration file used by
+.B ant
+to determine target to build for a specific project. It can be
+considered the ant equivalent of Makefile.
+
+The format of
+.B ant
+is XML and for each project a separate file is constructed.
+The buildfile consists of one or more tasks. An example is
+given below.
+
+<project default="compile">
+  
+  <target name="compile">
+    <javac srcdir="src"/>
+  </target>
+
+</project>
+
+This example has one target and it is defaulted. The target itself
+consists of one task
+.B javac
+which compiles the files in the \fIsrc\fR directory.
+
+.SH TARGETS
+
+Targets can depend on other targets. These dependencies are given by 
+the \fIdepends\fR attribute of the <\fItarget\fR> element.
+
+.SH TASKS
+
+A task is a piece of code that is executed. 
+.B Ant
+recognizes built-in task, optional tasks, but one can also write new 
+tasks.
+
+.B Built-in tasks
+
+The built-in tasks are: \fIAnt\fR, \fIAntCall\fR, \fIAntStructure\fR,
+\fIAntVersion\fR, \fIApply\fR, \fIApt\fR, \fIAvailable\fR, \fIBasename\fR,
+\fIBuildNumber\fR, \fIBUnzip2\fR, \fIBZip2\fR, \fIChecksum\fR, \fIChmod\fR,
+\fIConcat\fR, \fICondition\fR, \fICopy\fR, \fIComponentdef\fR, \fICvs\fR,
+\fICvsChangeLog\fR, \fICvsVersion\fR, \fICVSPass\fR, \fICvsTagDiff\fR,
+\fIDefaultexcludes\fR, \fIDelete\fR, \fIDeltree\fR, \fIDependset\fR, 
+\fIDiagnostics\fR, \fIDirname\fR, \fIEar\fR, \fIEcho\fR, \fIEchoXML\fR,
+\fIExec\fR, \fIFail\fR, \fIFilter\fR, \fIFixCRLF\fR, \fIGenKey\fR, \fIGet\fR,
+\fIHostInfo\fR, \fIGUnzip\fR, \fIGZip\fR, \fIImport\fR, \fIInclude\fR,
+\fIInput\fR, \fIJar\fR, \fIJava\fR, \fIJavac\fR, \fIJavadoc\fR, \fILength\fR,
+\fILoadFile\fR, \fILoadProperties\fR, \fILoadResource\fR, \fILocal\fR,
+\fIMakeURL\fR, \fIMail\fR, \fIMacroDef\fR, \fIManifest\fR, \fIManifestClassPath\fR,
+\fIMkdir\fR, \fIMove\fR, \fINice\fR, \fIParallel\fR, \fIPatch\fR,
+\fIPathConvert\fR, \fIPreSetDef\fR, \fIProperty\fR, \fIPropertyHelper\fR,
+\fIRecord\fR, \fIReplace\fR, \fIResourceCount\fR, \fIRetry\fR, \fIRmic\fR,
+\fISequential\fR, \fISignJar\fR, \fISleep\fR, \fISql\fR, \fISubAnt\fR,
+\fISync\fR, \fITar\fR, \fITaskdef\fR, \fITempfile\fR, \fITouch\fR,
+\fITruncate\fR, \fITStamp\fR, \fITypedef\fR, \fIUnjar\fR, \fIUntar\fR,
+\fIUnwar\fR, \fIUnzip\fR, \fIUptodate\fR, \fIWaitfor\fR, \fIWhichResource\fR,
+\fIWar\fR, \fIXmlProperty\fR, \fIXSLT\fR, \fIZip\fR
+
+.TP
+\fBJava\fR
+Executes a Java class within the running (Ant) VM or forks another VM if 
+specified. Below are some of the attibutes to the <\fIjava\fR> element:
+
+.B classname
+(required) the Java class to execute
+
+.B fork
+if enabled triggers the class execution in another VM (disabled by default)
+
+.B jvm
+the command used to invoke the Java Virtual Machine, default is
+\fIjava\fR. The command is resolved by java.lang.Runtime.exec().
+Ignored if fork is disabled.
+
+Other arguments are \fIclasspath\fR, \fIclasspathref\fR, \fImaxmemory\fR,
+\fIfailonerror\fR, \fIdir\fR and \fIoutput\fR.
+
+.TP
+\fBJavac\fR
+Compiles a source tree within the running (Ant) VM.
+
+.B srcdir
+(required) location of the java files
+
+.B destdir
+location to store the class files
+
+.B debug
+indicates whether source should be compiled
+with debug information; defaults to off
+
+.B target
+generate class files for specific VM version
+(e.g., 1.4, 1.5, etc).
+
+.B includes
+comma-separated list of patterns of files that
+must be included; all files are included when omitted
+
+.B excludes
+comma-separated list of patterns of files that
+must be excluded; no files (except default
+excludes) are excluded when omitted.
+
+.B defaultexcludes
+indicates whether default excludes should be
+used (yes | no); default excludes are used
+when omitted.
+
+Other arguments are \fIincludesfile\fR, \fIexcludesfile\fR, 
+\fIclasspath\fR, \fIbootclasspath\fR, \fIclasspathref\fR,
+\fIbootclasspathref\fR, \fIextdirs\fR, \fIencoding\fR,
+\fIdeprecation\fR, \fIverbose\fR, \fIincludeAntRuntime\fR,
+\fIincludeJavaRuntime\fR and \fIfailonerror\fR.
+
+.SH Properties
+
+A project can have a set of properties, which consist of a name value
+combination. Within tasks they can be used by placing them between
+"${" and "}", as in "${builddir}/classes".
+
+.B Built-in Properties
+
+Ant provides access to all system properties as if they had been defined 
+using a <\fIproperty\fR> task. For example, ${os.name} expands to the name of 
+the operating system.
+
+.TP
+\fBbasedir\fR
+the absolute path of the project's basedir (as set
+with the basedir attribute of <project>).
+.TP
+\fBant.file\fR
+the absolute path of the buildfile.
+.TP
+\fBant.version\fR
+the version of Ant.
+.TP
+\fBant.project.name\fR
+the name of the project that is currently executing;
+it is set in the name attribute of <project>.
+.TP
+\fBant.java.version\fR
+the JVM version Ant detected.
+
+.SH Classpath
+
+The classpath can be set by using the <\fIclasspath\fR>
+element:
+
+<classpath>
+  <pathelement path="${classpath}"/>
+  <pathelement location="lib/helper.jar"/>
+  <fileset dir="lib">
+    <include name="**/*.jar"/>
+  </fileset> 
+</classpath>
+
+.SH SEE ALSO
+.BR ant (1)
+
+.SH AUTHOR
+This manpage is made by Egon Willighagen <egonw at sci.kun.nl>
+and based on the Ant Manual <\fIhttp://ant.apache.org/manual/\fR>.

Deleted: tags/ant/1.9.4-3/debian/changelog
===================================================================
--- trunk/ant/debian/changelog	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/changelog	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,736 +0,0 @@
-ant (1.9.4-1) unstable; urgency=medium
-
-  * New upstream release
-    - Refreshed the patches
-    - Removed the patch for #735786 (Fixed upstream)
-
- -- Emmanuel Bourg <ebourg at apache.org>  Fri, 09 May 2014 11:46:04 +0200
-
-ant (1.9.3-2) unstable; urgency=medium
-
-  * Team upload
-  * debian/patches
-    - add 0009-fix-NullPointerException-when-no-destdir-was-set.patch:
-      pick up upstream fix for FTBFS <Closes: #735786>
-
- -- Hideki Yamane <henrich at debian.org>  Sun, 16 Feb 2014 21:59:46 +0900
-
-ant (1.9.3-1) unstable; urgency=medium
-
-  * New upstream release
-  * Standards-Version updated to 3.9.5 (no changes)
-  * Switch to debhelper level 9
-  * Updated the description of 0008-junit4-replace-assumeFalse.patch
-  * debian/rules:
-    - Improved the clean target to allow rebuilds
-    - Remove the version's -SNAPSHOT suffix by setting the version explicitly
-      when calling mh_installjar instead of altering the original pom files
-  * Use XZ compression for the upstream tarball
-  * Documented the -silent flag in the man page (new in Ant 1.9.0)
-  * debian/copyright: Updated to the Copyright Format 1.0
-
- -- Emmanuel Bourg <ebourg at apache.org>  Mon, 06 Jan 2014 23:33:38 +0100
-
-ant (1.9.2-1) unstable; urgency=low
-
-  * New upstream release
-  * Use canonical URLs for the Vcs-* fields
-
- -- Emmanuel Bourg <ebourg at apache.org>  Sun, 14 Jul 2013 14:24:45 +0200
-
-ant (1.9.1-2) unstable; urgency=low
-
-  * Team upload.
-  * d/maven.rules: Ensure that junit4 dependencies are mapped to 4.x
-    junit artefact (Closes: #713381).
-
- -- James Page <james.page at ubuntu.com>  Tue, 02 Jul 2013 12:03:48 +0100
-
-ant (1.9.1-1) unstable; urgency=low
-
-  * New upstream release
-    - Refreshed the patches
-    - Removed patch 0001-detect-classpath-based-JVM (merged upstream)
-  * Enabled hardening for the -gcj packages
-  * Upload to unstable
-
- -- Emmanuel Bourg <ebourg at apache.org>  Wed, 15 May 2013 16:19:56 +0200
-
-ant (1.9.0-1) experimental; urgency=low
-
-  * Team upload.
-
-  [ Ludovic Claude ]
-  * Add version constraint on libxml-commons-resolver1.1-java to
-    secure backport of Ant on Squeeze.
-
-  [ Tony Mancill ]
-  * Remove Michael Koch Uploaders (Closes: #653982)
-  * Bump Standards-Version to 3.9.4.
-
-  [ Emmanuel Bourg ]
-  * New upstream release.
-    - Refreshed the patches
-    - Upgrade source and target version to 1.5
-    - Adapted the build to the new documentation path in the upstream source
-    - Added a patch to build the package with junit4 4.10
-  * Removed the dependency on java2-runtime-headless
-  * Add java7-runtime-headless to list of satisfying JRE dependencies
-
- -- tony mancill <tmancill at debian.org>  Wed, 27 Mar 2013 20:29:34 -0700
-
-ant (1.8.2-4) unstable; urgency=low
-
-  * Team upload.
-  * Provide ant-junit4.jar.
-
- -- Miguel Landaeta <miguel at miguel.cc>  Tue, 13 Sep 2011 19:59:30 -0430
-
-ant (1.8.2-3) unstable; urgency=low
-
-  * Team upload.
-  * Fix FTBFS due to changes in libxml-commons-resolver1.1-java 1.2.
-    (Closes: #637592).
-  * Provide ant-testutil.jar. (Closes: #637593).
-
- -- Miguel Landaeta <miguel at miguel.cc>  Fri, 12 Aug 2011 16:33:49 -0430
-
-ant (1.8.2-2) unstable; urgency=low
-
-  * Team upload.
-  * Skip javadoc building if we are not building architecture all
-    packages.  (Closes: #627110)
-
- -- Niels Thykier <niels at thykier.net>  Thu, 19 May 2011 13:28:47 +0200
-
-ant (1.8.2-1) unstable; urgency=low
-
-  [ James Page ]
-  * New upstream release (Closes: #613914).
-    - Fix FTBFS for jug with ant 1.8.1 (Closes: #610320).
-  * Bumped Standards-Version to 3.9.2, no changes.
-  * Removed ant-nodeps.jar from install as now part of ant core. 
-  * Added myself to Uploaders.
-
-  [ Niels Thykier ]
-  * Added missing mh_clean, thanks to Miguel Landaeta for spotting
-    this.
-  * Fixed a typo in the ant manpage.
-  * Made short descriptions unique.
-  * Bumped debhelper compat to 7.
-  * Removed empty linda-override dir from ant-doc.
-  * Removed redundant Priority fields in d/control.
-
- -- James Page <james.page at canonical.com>  Wed, 04 May 2011 15:16:42 +0100
-
-ant (1.8.1-1) experimental; urgency=low
-
-  [ Niels Thykier ]
-  * Replaced B-D on default-jdk-builddep with gcj-native-helper
-    and default-jdk.
-  * Bumped Standards-Versions to 3.9.0.
-    - Reduced a Conflicts to a Breaks.
-
-  [ Torsten Werner ]
-  * New upstream release
-  * Update or remove our patches.
-  * Do no longer install ant-stylebook.jar and ant-trax.jar because they are no
-    longer built.
-  * Remove Stefan from Uploaders list. Thanks to your contributions!
-
- -- Torsten Werner <twerner at debian.org>  Thu, 05 Aug 2010 22:23:25 +0200
-
-ant (1.8.0-4) unstable; urgency=low
-
-  * Convert patches to dep3 format.
-  * Add patch from Petr Salinger to fix the nasty bus error in gij. (Closes:
-    #570886)
-  * Build *-gcj packages again.
-  * Add myself to Uploaders.
-  * Switch to source format 3.0.
-
- -- Torsten Werner <twerner at debian.org>  Thu, 11 Mar 2010 22:22:39 +0100
-
-ant (1.8.0-3) unstable; urgency=low
-
-  [ Torsten Werner ]
-  * Use default-java in $(JAVA_HOME).
-  * Do no longer build the -gcj packages because of bus error in gij. Such
-    packages are provided by the ant1.7 source package. (Closes: #570889)
-  * Remove Arnaud from the Uploaders list.
-
-  [ Ludovic Claude ]
-  * Demote ant-optional-gcj from Recommends to Suggests for package ant-optional
-    (Closes: #559058)
-
-  [ Niels Thykier ]
-  * Removed obsolete linda override.
-
- -- Torsten Werner <twerner at debian.org>  Sat, 27 Feb 2010 18:26:35 +0100
-
-ant (1.8.0-2) unstable; urgency=low
-
-  [Torsten Werner]
-  * Improve Description of ant-gcj thanks to Matthias Klose.
-
-  [Ludovic Claude]
-  * Fix a NPE on Diagnostics.getClassLocation(), add patch
-    ant_diagnostics.patch for it (Closes: #570588)
-
- -- Ludovic Claude <ludovic.claude at laposte.net>  Sat, 20 Feb 2010 23:32:07 +0100
-
-ant (1.8.0-1) unstable; urgency=low
-
-  * New upstream version 
-    (Closes: #567229, #330292, #514140, #569936, #570075)
-  * Add myself to Uploaders
-  * Bump up Standards-Version to 3.8.4, no changes
-  * debian/control: update ant Depends and remove old
-    java1-runtime-headless, add new java5-runtime-headless and
-    java6-runtime-headless
-  * Demote ant-gcj from Recommends to Suggests for package ant
-    (Closes: #559058)
-  * Fix documentation for ant-optional-gcj (Closes: #563760)
-  * Update man page ant.1 and build.xml.5: fix Lintian warnings
-    and update the documentation
-  * Move the patch system to quilt, delete old patches
-    (11_ant_underscore_dash_fix.patch, 03_SplashTaskPatch_a.patch),
-    refresh all patches
-  * Add tasks for stylebook and xalan2
-  * Add debian/orig_tar.sh and use it to repack the archive without
-    compiled jars and pdf files
-
- -- Ludovic Claude <ludovic.claude at laposte.net>  Sun, 14 Feb 2010 00:03:38 +0100
-
-ant (1.7.1-4) unstable; urgency=low
-
-  * Fix link to /usr/share/doc/ant-doc/manual/api. You may
-    have to uninstall ant-doc then install it again for this
-    change to take effect (Closes: #541416)
-
- -- Ludovic Claude <ludovic.claude at laposte.net>  Tue, 01 Sep 2009 18:16:28 +0100
-
-ant (1.7.1-3) unstable; urgency=low
-
-  * Upload to unstable.
-
- -- Torsten Werner <twerner at debian.org>  Sun, 09 Aug 2009 10:07:55 +0200
-
-ant (1.7.1-2) experimental; urgency=low
-
-  * Bump up Standards-Version to 3.8.2
-  * Move Ant Javadoc to /usr/share/doc/ant/api/
-  * Deploy missing POM files for ant-optional package 
-  * Fix version for antlr, bcel, commons-net, log4j dependencies in the
-    Maven POMs.
-  * Fix groupId and artifactId for commons-logging and regexp
-    dependencies in the Maven POMs.
-  * Fix Ant version in the Maven repository
-
- -- Ludovic Claude <ludovic.claude at laposte.net>  Wed, 22 Jul 2009 19:08:53 +0100
-
-ant (1.7.1-1) experimental; urgency=low
-
-  [Ludovic Claude]
-  * Change section to java, bump up Standards-Version to 3.8.1
-  * Update debhelper and compat to 6
-  * Add Matthias Klose to Uploaders
-  * Move ant-gcj from Recommends to Suggests for ant binary package
-    (closes: #506220)
-  * Add Build-Depends on libjaxp-1.3-java as xml-apis.jar has moved to this
-    package. Add a Suggests on the same package for ant-optional
-  * Add the Maven POMs to the package,
-  * Add a Build-Depends-Indep dependency on maven-repo-helper
-  * Use mh_installpom and mh_installjar to install the POM and the jar to the
-    Maven repository
-  * Remove the full text of the Apache 2.0 license
-
-  [Colin Watson]
-  * Drop JDK recommendation to a Suggests to make it feasible to fit ant on
-    the server CD (thanks, Thierry Carrez; LP: #389470).
-
-  [Richard A. Johnson]
-  * Added 11_ant_underscore_dash_fix.patch fixes - to _ conversion LP: #296409
-
-  [Matthias Klose]
-  * New upstream version (bug fix release).
-    - mainly a bugfix release.
-    - has extended support for Java6 features.
-    - <script> now has support for JavaFX.
-    - release notes: http://apache.linux-mirror.org/ant/README.html
-  * Remove debian/patches/05_ant-bug433444.patch. Obsoleted.
-  * Merge from Ubuntu:
-    - ant: Depend on default-jre-headless, drop dependency on jvm.
-    - Set java source and target version to 1.4.
-    - ant: Recommend default-jdk | java-compiler | java-sdk.
-  * Fix dangling symlink to ant-bootstrap.jar.
-
- -- Ludovic Claude <ludovic.claude at laposte.net>  Fri, 03 Jul 2009 00:42:36 +0100
-
-ant (1.7.0-6) unstable; urgency=low
-
-  * Moved ant-bootstrap.jar to /usr/share/ant/etc/. Closes: #353586
-  * Build-Depends on default-jdk-builddep. Closes: #477844
-
- -- Michael Koch <konqueror at gmx.de>  Tue, 29 Apr 2008 17:43:04 -0100
-
-ant (1.7.0-5) unstable; urgency=low
-
-  * Fix handling of native2ascii for classpath based VMs.
-    Closes: 470584.
-  * Fixed Section in ant-doc.doc-base.2 to 'Programming'.
-
- -- Michael Koch <konqueror at gmx.de>  Mon, 31 Mar 2008 20:14:27 +0200
-
-ant (1.7.0-4) unstable; urgency=low
-
-  * Fixed debian/changelog to differenciate between license and copyright.
-  * Removed -1 in versioned dependencies from Build-Depends.
-  * Added Homepage, Vcs-Svn and Vcs-Browser fields.
-  * Updated Standards-Version to 3.7.3.
-
- -- Michael Koch <konqueror at gmx.de>  Tue, 26 Feb 2008 10:37:26 +0100
-
-ant (1.7.0-3) unstable; urgency=low
-
-  * Upgrade source and target version from 1.2 to 1.3.
-
- -- Michael Koch <mkoch at quadriga.konqueror.de>  Fri, 24 Aug 2007 19:39:32 +0200
-
-ant (1.7.0-2) unstable; urgency=low
-
-  * Added debian/patches/05_ant-bug433444.patch. Closes: #433444.
-
- -- Michael Koch <konqueror at gmx.de>  Tue, 17 Jul 2007 13:25:02 -0100
-
-ant (1.7.0-1) unstable; urgency=low
-
-  * New upstream version. Closes: #412716.
-  * Updated debian/patches/01_gjdoc_task.patch.
-  * Removed debian/patches/03_SplashTaskPatch_b.patch. Obsoleted.
-  * Removed debian/patches/03_SplashTaskPatch_c.patch. Obsoleted.
-  * Removed debian/patches/04_UUMailerReflection.patch. Obsoleted.
-  * Removed debian/patches/05_TaskAvailabilityFix_ANT_PR38260.patch.
-    Obsoleted.
-
- -- Michael Koch <konqueror at gmx.de>  Sat, 07 Jul 2007 09:13:08 -0100
-
-ant (1.6.5-9) unstable; urgency=low
-
-  * Fixed generation of binary-arch only packages. Closes: #430662.
-
- -- Michael Koch <konqueror at gmx.de>  Sun, 01 Jul 2007 21:06:38 -0100
-
-ant (1.6.5-8) unstable; urgency=low
-
-  * Only compile to native on certain archs. Closes: #430662.
-  * Use ${source:Version} instead of ${Source-Version}.
-  * Removed Wolfgang from Uploaders.
-
- -- Michael Koch <konqueror at gmx.de>  Tue, 26 Jun 2007 14:30:53 -0100
-
-ant (1.6.5-7) unstable; urgency=low
-
-  [ Arnaud Vandyck ]
-  * debian/build.xml.5: correction of an exemple, thanks to LI Daobing
-    (closes: #426345)
-  * debian/control: depends on java-gcj-compat-dev as it needs the
-    tools.jar file (closes: #397045). So it does not recommends jikes |
-    java-compiler no more.
-  * debian/control: ant-optional does not depend on a virtual machine
-    because it depends on ant.
-
-  [ Michael Koch ]
-  * Build -gcj Packages for ant and ant-optional.
-  * Fix Homepage: tag in long descriptions.
-
- -- Michael Koch <konqueror at gmx.de>  Sun, 03 Jun 2007 18:35:58 +0200
-
-ant (1.6.5-6) unstable; urgency=low
-
-  * debian/patches/03_SplashTaskPatch_a.patch: Fixed to apply the new file
-    into the correct directory (Closes: #375540).
-  * debian/rules: Build with java-gcj-compat.
-  * debian/control: (Build-)Depends on java-gcj-compat(-dev).
-  * debian/control: Moved cdbs and debhelper to Build-Depends.
-  * debian/control: Updated Standards-Version to 3.7.2.
-  * debian/control: Added myself to Uploaders.
-
- -- Michael Koch <konqueror at gmx.de>  Sat,  1 Jul 2006 10:51:26 +0000
-
-ant (1.6.5-5) unstable; urgency=low
-
-  * Added versioned build dependency on kaffe to fix the bootstrap process 
-    (/usr/bin/ecj is only available sind 1.16.91-) (closes: #348647)
-
- -- Wolfgang Baer <WBaer at gmx.de>  Wed, 18 Jan 2006 14:42:45 +0100
-
-ant (1.6.5-4) unstable; urgency=low
-
-  * kaffe compiler transition 
-  * Applied patch for upstream PR 38260 to fix build failure
-    of some package on free runtimes (Thanks, Stephan Michels)
-
- -- Wolfgang Baer <WBaer at gmx.de>  Mon, 16 Jan 2006 12:17:10 +0100
-
-ant (1.6.5-3) unstable; urgency=low
-
-  * Fixed FTBS by adding bootstrap ANT_HOME (closes: #331081)
-  * Add javacc to Suggests as needed by javacc task (closes: #330513)
-
- -- Wolfgang Baer <WBaer at gmx.de>  Sat,  1 Oct 2005 17:15:35 +0200
-
-ant (1.6.5-2) unstable; urgency=low
-
-  * Converted package to no longer depend on libant1.6-java 
-    + Dropped libant1.6-java from build-dep and deps
-    + ant.links - removed links into libant1.6-java
-  * Reorganized binaries build from ant source package
-    + ant - includes the scripts and the core tasks
-    + ant-doc - includes the manual and javadocs
-    + ant-optional - includes the optional tasks  
-  * As part of this reorganization the following was done
-    + Moved core tasks previously in libant1.6-java to ant
-    + Moved optional tasks previously in ant to ant-optional
-    + Moved manual from ant to ant-doc
-    + Added conflicts,replaces with libant1.6-java to ant, ant-optional as
-      it contained core and optional task jars
-    + Added conflicts/replaces with ant-doc (<= 1.6.5-1) to ant
-    + Link all auxiliary jars from ant, ant-optional into /usr/share/java
-      as required by debian java policy
-  * Completely revised README.Debian
-    + Removed paragraph about setting JAVA_HOME which is not needed 
-      (closes: #291157)
-    + Revised differences to upstream - we do not have any regressions 
-      to building with non-free JDKs
-    + Added a paragraph about optional tasks and suggested libraries
-  * changelog.html in the ant manual is the description of an ant task
-    + Added linda override to suppress error html-only-changelog
-    + Added ant-doc.compress to suppress a gzip of this file
-  * Registered javadoc and manual with doc-base
-    Added ant-doc.doc-base.1 and ant-doc.doc-base.2
-  * Added the gjdoc task from libant1.6-java (closes: #324884)
-
-  * Upload sponsored by Arnaud Vandyck <avdyk at debian.org>
-
- -- Wolfgang Baer <WBaer at gmx.de>  Mon, 15 Aug 2005 15:17:36 +0200
-
-ant (1.6.5-1) unstable; urgency=low
-
-  * New upstream release
-    + Build with kaffe/gjdoc/jikes
-    + Move to main (closes: #290228)
-    + Refractored SplashTask to remove sun internal classes
-      patches 03_SplashTaskPatch_a/b/c.patch (submitted upstream)
-    + Patched UUMailer.java to use sun internal classes via reflection
-    + Updated src/script/ant patches
-    + Patched build.xml to include maxmemory option to build javadoc
-  * Splashscreen now works with kaffe/gij-4.0/jamvm packages 
-    (closes: #169755, #164401)
-  * Removed extraneous files left by failed builds (closes: #310266)
-  * Added libjsch-java to path and include ant-jsch (closes: #305674)
-  * Added ant-jmf to ant.install
-  * Added java1-runtime | java2-runtime as alternatives to kaffe to Depends
-  * Moved ant-doc to section doc (closes: #253448)
-  * According to upstream changelog ant junitreport for JDK 1.5 
-    was fixed already in 1.6.2 (closes: #273560)
-  * Taskdef attributes are the same as for Typedef and therefore
-    described through the provided link to Typedef manual (closes: #254683)
-  * Updated README.Debian
-  * Updated build.xml.5 and ant.1 manpages
-  * Changed Build-Depends to Build-Depends-Indep to fix lintian warning
-  * Moved java-virtual-machine to suggests
-  * Used versioned dependency for libant1.6-java (same upstream version needed)
-  * Call dh_installdocs directly to exclude redundant LICENSE files
-  * Bumped Standards-Version to 3.6.2 - no changes
-  * Added myself to uploaders
-  * Upload sponsored by Arnaud Vandyck
-
- -- Wolfgang Baer <WBaer at gmx.de>  Thu, 23 Jun 2005 16:11:44 +0200
-
-ant (1.6.2-2) unstable; urgency=low
-
-  * added commons-net to the path when building (closes: #272556).
-
- -- Arnaud Vandyck <avdyk at debian.org>  Tue, 28 Sep 2004 11:44:52 +0200
-
-ant (1.6.2-1) unstable; urgency=low
-
-  * New upstream release
-  * debian/watch: added file to monitor new upstream
-  * debian/ant.install: changed name of some libs (they changed it
-    upstream): ant-apache-bcel.jar, ant-apache-log4j, ant-apache-oro.jar,
-    ant-apache-regexp.jar
-  * debian/ant.install: added ant-apache-resolver.jar, ant-bootstrap.jar
-    and ant-commons-net.jar (/usr/share/ant/lib)
-  * debian/ant.install: removed ant-xalan2.jar (does not exist anymore
-    upstream!)
-
- -- Arnaud Vandyck <arnaud at ressource-toi.org>  Sun, 15 Aug 2004 00:50:34 +0200
-
-ant (1.6.1-2) unstable; urgency=low
-
-  * Add the Xerces2 XML parser to the local classpath
-    (closes: #240245, #249136)
-  * Don't make /usr/share/ant/lib/ant-launcher.jar a symlink since Ant's
-    startup code would follow it and wrongly add JARs from
-    /usr/share/ant1.6/lib instead of /usr/share/ant/lib to the classpath
-    (closes: #238674, #239797, #251527, #238187, #245042)
-  * Correctly set ANT_HOME in /usr/bin/ant
-
- -- Stefan Gybas <sgybas at debian.org>  Sun,  6 Jun 2004 18:55:09 +0200
-
-ant (1.6.1-1) unstable; urgency=low
-
-  * New upstream release (closes: #230061)
-    + Uses the new interface to BSF (closes: #217752)
-    + Fixes bug in finding javacc.jar (closes: #232592)
-  * Only suggest the libraries for optional tasks instead of depending on
-    them (closes: #211560, #228142)
-  * Build with the packaged version of ORO (closes: #200909)
-  * Fixed typo in ant.1 man page (closes: #215291). Thanks to Nicolas Francois
-    for the patch!
-  * Updated copyright to include the new Apache License version 2.0
-  * Use upstream's version of the Ant wrapper /usr/bin/ant which uses the
-    new ant-launcher.jar
-  * Updated README.Debian
-
- -- Stefan Gybas <sgybas at debian.org>  Wed, 10 Mar 2004 01:47:53 +0100
-
-ant (1.5.4-3) unstable; urgency=low
-
-  * The ant package now conflicts with and replaces ant-doc (<< 1.5.4-2)
-    (closes: #211234)
-  * Use CDBS to build the package
-  * Set Maintainer to Debian Java Maintainers
-
- -- Stefan Gybas <sgybas at debian.org>  Wed, 17 Sep 2003 15:00:17 +0200
-
-ant (1.5.4-2) unstable; urgency=low
-
-  * Remove ant.jar and depend on libant1.5-java instead
-  * Move all documentation expect the Javadoc API documentation from ant-doc
-    to ant (closes: #174876)
-  * Install the XSL files in /usr/share/ant/etc/ (closes: #205484)
-  * Standards-Version: 3.6.1 (no changes required)
-
- -- Stefan Gybas <sgybas at debian.org>  Sun,  7 Sep 2003 17:26:14 +0200
-
-ant (1.5.4-1) unstable; urgency=low
-
-  * New upstream release
-  * Modify the build process so that no changes to build.xml and bootstrap.sh
-    are required
-  * Build JDepend task (closes: #203149)
-  * Added a list of missing classes in ant-optional.jar compared to upstream's
-    optional.jar to README.Debian
-  * Standards-Version: 3.6.0
-    + Moved debhelper from Build-Depends-Indep: to Build-Depends:
-
- -- Stefan Gybas <sgybas at debian.org>  Thu, 14 Aug 2003 11:57:48 +0200
-
-ant (1.5.3-2) unstable; urgency=low
-
-  * Add xmlParserAPIs.jar from Xalan2 to the class path instead of xml-apis.jar
-    from Xerces2 (closes: #195702)
-  * Don't compress manual/CoreTasks/changelog.html and other files in ant-doc
-    (closes: #159963)
-  * Depend on the previously suggested packages jython and antlr to avoid
-    dangling symlinks in /usr/share/ant/lib
-  * Honor $ANT_ARGS in startup script (closes: #174313)
-  * Added dependency on java*-runtime as required by the Java Policy
-  * Enable support for BCEL and Commons Logging (closes: #179177)
-  * Compile using Blackdown's JDK 1.4 runtime classes to make sure that the
-    Javah task gets built (closes: #182918)
-  * Depend on liblog4j1.2-java instead of liblog4j (closes: #191177)
-  * Fixed handling of target names with spaces (closes: #198481)
-  * Updated upstream URL in copyright and package description
-  * Fixed Lintian errors and warnings:
-    + Removed extra license in ant-doc
-    + Fixed bad whatis entry in manual pages
-  * Updated README.Debian
-  * Standards-Version: 3.5.10 (no changes required)
-
- -- Stefan Gybas <sgybas at debian.org>  Tue, 24 Jun 2003 16:21:44 +0200
-
-ant (1.5.3-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Takashi Okamoto <tora at debian.org>  Wed,  9 Apr 2003 21:32:28 +0900
-
-ant (1.5.1-1) unstable; urgency=low
-
-  * New upstream release
-  * Build with debhelper >= 4.1.0 to get rid of /usr/doc compatibility
-    symlinks
-  * Standards-Version: 3.5.7 (no changes required)
-  * Added Takashi Okamoto and Ola Lundqvist as uploaders
-  * Build with jikes as a first step in a movement from contrib to main
-
- -- Stefan Gybas <sgybas at debian.org>  Wed, 23 Oct 2002 16:07:15 +0200
-
-ant (1.5-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Stefan Gybas <sgybas at debian.org>  Thu, 11 Jul 2002 23:02:20 +0200
-
-ant (1.4.99b3-1) unstable; urgency=low
-
-  * New upstream release: Ant 1.5beta3
-    + calles com.sun.tools.javac.Main when using the modern Java compiler
-      (closes: #147466)
-  * Build using Xerces-J 2.0 like upstream does
-  * Build depend on recent Xalan-J 2.0 version so that the style task works
-    with TrAX (closes: #148997)
-  * Depend on some of the previously suggested packages (Xalan-J, JUnit)
-
- -- Stefan Gybas <sgybas at debian.org>  Wed,  3 Jul 2002 17:24:11 +0200
-
-ant (1.4.99b1-1) unstable; urgency=low
-
-  * New upstream release: Ant 1.5beta1
-    + supports Java 1.4 taglets in javadoc task (closes: #138648)
-  * Fixed spelling error in doc-base title (closes: #144274)
-  * Add a note to README.Debian about additional dependencies for some
-    optional tasks (closes: #139188)
-  * Add a note to README.Debian about dangling symlinks in
-    /usr/share/ant/lib (closes: #138638)
-  * Build using Xerces 1 and Xalan 1 until the problems with Xalan 2 are
-    resolved
-  * Use DH_COMPAT=4 in debian/rules and update build dependencies accordingly
-
- -- Stefan Gybas <sgybas at debian.org>  Sun, 26 May 2002 18:31:38 +0200
-
-ant (1.4.1-4) unstable; urgency=low
-
-  * Applied patch from Adam Heath to not follow symlinks during deletion
-    (closes: #133291)
-  * Copy the Ant startup script to /usr/share/ant/bin/ant (closes: #133641)
-  * Provide the upstream chaneglog (WHATSNEW)
-  * The package can now be compiled with j2sdk1.3 1.3.1-1.1 (which has
-    JAVA_HOME set to /usr/lib/j2se/1.3) and 1.3.1-1 (which has JAVA_HOME set
-    to /usr/lib/j2sdk1.3).
-
- -- Stefan Gybas <sgybas at debian.org>  Thu, 14 Feb 2002 14:28:48 +0100
-
-ant (1.4.1-3) unstable; urgency=low
-
-  * Correctly set classpath (closes: #132027)
-  * Install API doc into manual/api so that links work (closes: #132012)
-  * Fixed typos in previous changelog entry
-
- -- Stefan Gybas <sgybas at debian.org>  Sun,  3 Feb 2002 11:28:35 +0100
-
-ant (1.4.1-2) unstable; urgency=low
-
-  * Removed empty line from src/main/org/apache/tools/ant/defaultManifest.mf.
-    Thanks to Ken Harris and Marko Kreen for investigation! (closes: #112261)
-  * Use $JAVA_HOME/bin/java instead of /usr/bin/java if the former
-    exists, Thanks to Taso Lyristis for the patch!
-  * Respect $JAVACMD and $ANT_OPTS in /usr/bin/ant as the documentation
-    says. Thanks to Marko Kreen for the patch! (closes: #119611)
-  * Only append JAR files in /usr/share/ant/lib/ to the CLASSPATH if
-    the file actually exists to avoid problems with dangling symlinks
-  * Include symlinks to optional JARs from other packages into the package
-    instead of creating them in the postinst. However, ant still only
-    suggests these packages. (closes: #124378)
-  * Also include symlink to js.jar from rhino. (closes: #130624)
-  * Check the length of osname in src/main/org/apache/tools/tar/TarEntry.java
-    to avoid StringIndexOutOfBoundsException on Linux. (closes: #126479)
-  * Added getMode() to src/main/org/apache/tools/tar/TarEntry.java, taken
-    from upstream CVS. (closes: #126472)
-  * Build API docs and put them together with the HTML manual in the new
-    ant-doc package (closes: #125144)
-  * Install the JARs as /usr/share/java/ant-$version-*.jar and create 
-    /usr/share/java/ant-*.jar symlinks as recommended by the Java policy
-  * Use dh_installman instead of dh_installmanpages so ant.1 and build.5
-    are only included in the main package
-  * Make ant-doc conflict with previous versions of ant because of
-    overlapping files
-
- -- Stefan Gybas <sgybas at debian.org>  Wed, 30 Jan 2002 09:45:06 +0100
-
-ant (1.4.1-1) unstable; urgency=low
-
-  * New upstream release with fixed JAR generation (closes: #112261)
-  * Use /usr/lib/j2se/1.3 for JAVA_HOME (for j2sdk1.3 from Incoming)
-  * Removed emacs settings from changelog (Lintian)
-  * Changed Build-Depends to Build-Depends-Indep (Lintian)
-
- -- Stefan Gybas <sgybas at debian.org>  Tue, 23 Oct 2001 22:31:57 +0200
-
-ant (1.4-1) unstable; urgency=low
-
-  * New upstream release
-  * Use libxalan2-java instad of libxalan-java
-  * Build support for liblog4j and libregexp-java
-  * Suggest jython and include its JAR in Ant's class path so Python
-    can be used in the <script> task
-
- -- Stefan Gybas <sgybas at debian.org>  Thu, 13 Sep 2001 12:09:10 +0200
-
-ant (1.3-4) unstable; urgency=low
-
-  * Built using Sun's javac instead of jikes (closes: #107326)
-
- -- Stefan Gybas <sgybas at debian.org>  Fri, 24 Aug 2001 16:46:53 +0200
-
-ant (1.3-3) unstable; urgency=low
-
-  * Built Ant using JMF, JUnit, Xalan and ANTLR so some extra tags are
-    supported in build.xml
-  * Add optional packages to CLASSPATH at installation time if they are
-    installed
-
- -- Stefan Gybas <sgybas at debian.org>  Mon, 30 Jul 2001 23:33:15 +0200
-
-ant (1.3-2) unstable; urgency=low
-
-  * Also move binary package to contrib
-
- -- Stefan Gybas <sgybas at debian.org>  Fri, 27 Jul 2001 00:45:46 +0200
-
-ant (1.3-1) unstable; urgency=low
-
-  * New upstream release (closes: #95866)
-  * Build using j2dsk1.3 instead of kaffe because kaffe lacks too many
-    JDK 1.2 features and is too buggy to even run Ant. Unfortunately, this
-    requires moving ant from main to contrib but it fixes many Ant
-    problems. (closes: #105737)
-  * Use debhelper V3
-  * Standards-Version: 3.5.6 (no changes required)
-  * Call bootstraop.sh to build ant, this fixes the problem with missing
-    files in the resulting ant.jar (closes: #85802, #90023, #90024, #93400,
-    #98207, #106468)
-  * Include man pages ant.1 and build.xml.5, thanks to Egon Willighagen
-    (closes: #92975)
-  * Add tools.jar to Ant's classpath if $JAVA_HOME is defined
-  * Updated README.Debian
-  * Build using libbsf-java and liboro-java so advanced features can be used.
-    Added suggestions for these packages.
-
- -- Stefan Gybas <sgybas at debian.org>  Wed, 25 Jul 2001 22:48:52 +0200
-
-ant (1.2-1) unstable; urgency=low
-
-  * New upstream release
-  * Build classpath from all JARs in /usr/share/ant/lib/
-
- -- Stefan Gybas <sgybas at debian.org>  Tue, 21 Nov 2000 21:36:34 +0100
-
-ant (1.1-2) unstable; urgency=low
-
-  * Build using new Xerces-J 1.2.0 version
-  * Add symlink to ant.jar in /usr/share/ant/lib
-  * Updated debian/rules to use debhelper V2
-  * Updated to Standards-Version: 3.2.1 (no changes required)
-
- -- Stefan Gybas <sgybas at debian.org>  Mon, 25 Sep 2000 20:58:06 +0200
-
-ant (1.1-1) unstable; urgency=low
-
-  * Initial Release
-
- -- Stefan Gybas <sgybas at debian.org>  Wed, 19 Jul 2000 12:50:39 +0200

Copied: tags/ant/1.9.4-3/debian/changelog (from rev 18533, trunk/ant/debian/changelog)
===================================================================
--- tags/ant/1.9.4-3/debian/changelog	                        (rev 0)
+++ tags/ant/1.9.4-3/debian/changelog	2014-10-08 09:15:08 UTC (rev 18534)
@@ -0,0 +1,754 @@
+ant (1.9.4-3) unstable; urgency=medium
+
+  * Removed the patch adding Xerces to the Ant classpath
+    (Closes: #552032, #764376, LP: #324899, LP: #490831, LP: #876091)
+  * Removed the dependency on libxerces2-java and libjaxp1.3-java
+  * debian/rules: Removed the unused compile.debug and compile.optimize
+    properties
+  * Refreshed the man page for build.xml
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Wed, 08 Oct 2014 00:06:55 +0200
+
+ant (1.9.4-2) unstable; urgency=medium
+
+  * Depend on libmail-java instead of libgnumail-java
+  * Standards-Version updated to 3.9.6 (no changes)
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Tue, 30 Sep 2014 09:15:39 +0200
+
+ant (1.9.4-1) unstable; urgency=medium
+
+  * New upstream release
+    - Refreshed the patches
+    - Removed the patch for #735786 (Fixed upstream)
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Fri, 09 May 2014 11:46:04 +0200
+
+ant (1.9.3-2) unstable; urgency=medium
+
+  * Team upload
+  * debian/patches
+    - add 0009-fix-NullPointerException-when-no-destdir-was-set.patch:
+      pick up upstream fix for FTBFS <Closes: #735786>
+
+ -- Hideki Yamane <henrich at debian.org>  Sun, 16 Feb 2014 21:59:46 +0900
+
+ant (1.9.3-1) unstable; urgency=medium
+
+  * New upstream release
+  * Standards-Version updated to 3.9.5 (no changes)
+  * Switch to debhelper level 9
+  * Updated the description of 0008-junit4-replace-assumeFalse.patch
+  * debian/rules:
+    - Improved the clean target to allow rebuilds
+    - Remove the version's -SNAPSHOT suffix by setting the version explicitly
+      when calling mh_installjar instead of altering the original pom files
+  * Use XZ compression for the upstream tarball
+  * Documented the -silent flag in the man page (new in Ant 1.9.0)
+  * debian/copyright: Updated to the Copyright Format 1.0
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 06 Jan 2014 23:33:38 +0100
+
+ant (1.9.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Use canonical URLs for the Vcs-* fields
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Sun, 14 Jul 2013 14:24:45 +0200
+
+ant (1.9.1-2) unstable; urgency=low
+
+  * Team upload.
+  * d/maven.rules: Ensure that junit4 dependencies are mapped to 4.x
+    junit artefact (Closes: #713381).
+
+ -- James Page <james.page at ubuntu.com>  Tue, 02 Jul 2013 12:03:48 +0100
+
+ant (1.9.1-1) unstable; urgency=low
+
+  * New upstream release
+    - Refreshed the patches
+    - Removed patch 0001-detect-classpath-based-JVM (merged upstream)
+  * Enabled hardening for the -gcj packages
+  * Upload to unstable
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Wed, 15 May 2013 16:19:56 +0200
+
+ant (1.9.0-1) experimental; urgency=low
+
+  * Team upload.
+
+  [ Ludovic Claude ]
+  * Add version constraint on libxml-commons-resolver1.1-java to
+    secure backport of Ant on Squeeze.
+
+  [ Tony Mancill ]
+  * Remove Michael Koch Uploaders (Closes: #653982)
+  * Bump Standards-Version to 3.9.4.
+
+  [ Emmanuel Bourg ]
+  * New upstream release.
+    - Refreshed the patches
+    - Upgrade source and target version to 1.5
+    - Adapted the build to the new documentation path in the upstream source
+    - Added a patch to build the package with junit4 4.10
+  * Removed the dependency on java2-runtime-headless
+  * Add java7-runtime-headless to list of satisfying JRE dependencies
+
+ -- tony mancill <tmancill at debian.org>  Wed, 27 Mar 2013 20:29:34 -0700
+
+ant (1.8.2-4) unstable; urgency=low
+
+  * Team upload.
+  * Provide ant-junit4.jar.
+
+ -- Miguel Landaeta <miguel at miguel.cc>  Tue, 13 Sep 2011 19:59:30 -0430
+
+ant (1.8.2-3) unstable; urgency=low
+
+  * Team upload.
+  * Fix FTBFS due to changes in libxml-commons-resolver1.1-java 1.2.
+    (Closes: #637592).
+  * Provide ant-testutil.jar. (Closes: #637593).
+
+ -- Miguel Landaeta <miguel at miguel.cc>  Fri, 12 Aug 2011 16:33:49 -0430
+
+ant (1.8.2-2) unstable; urgency=low
+
+  * Team upload.
+  * Skip javadoc building if we are not building architecture all
+    packages.  (Closes: #627110)
+
+ -- Niels Thykier <niels at thykier.net>  Thu, 19 May 2011 13:28:47 +0200
+
+ant (1.8.2-1) unstable; urgency=low
+
+  [ James Page ]
+  * New upstream release (Closes: #613914).
+    - Fix FTBFS for jug with ant 1.8.1 (Closes: #610320).
+  * Bumped Standards-Version to 3.9.2, no changes.
+  * Removed ant-nodeps.jar from install as now part of ant core. 
+  * Added myself to Uploaders.
+
+  [ Niels Thykier ]
+  * Added missing mh_clean, thanks to Miguel Landaeta for spotting
+    this.
+  * Fixed a typo in the ant manpage.
+  * Made short descriptions unique.
+  * Bumped debhelper compat to 7.
+  * Removed empty linda-override dir from ant-doc.
+  * Removed redundant Priority fields in d/control.
+
+ -- James Page <james.page at canonical.com>  Wed, 04 May 2011 15:16:42 +0100
+
+ant (1.8.1-1) experimental; urgency=low
+
+  [ Niels Thykier ]
+  * Replaced B-D on default-jdk-builddep with gcj-native-helper
+    and default-jdk.
+  * Bumped Standards-Versions to 3.9.0.
+    - Reduced a Conflicts to a Breaks.
+
+  [ Torsten Werner ]
+  * New upstream release
+  * Update or remove our patches.
+  * Do no longer install ant-stylebook.jar and ant-trax.jar because they are no
+    longer built.
+  * Remove Stefan from Uploaders list. Thanks to your contributions!
+
+ -- Torsten Werner <twerner at debian.org>  Thu, 05 Aug 2010 22:23:25 +0200
+
+ant (1.8.0-4) unstable; urgency=low
+
+  * Convert patches to dep3 format.
+  * Add patch from Petr Salinger to fix the nasty bus error in gij. (Closes:
+    #570886)
+  * Build *-gcj packages again.
+  * Add myself to Uploaders.
+  * Switch to source format 3.0.
+
+ -- Torsten Werner <twerner at debian.org>  Thu, 11 Mar 2010 22:22:39 +0100
+
+ant (1.8.0-3) unstable; urgency=low
+
+  [ Torsten Werner ]
+  * Use default-java in $(JAVA_HOME).
+  * Do no longer build the -gcj packages because of bus error in gij. Such
+    packages are provided by the ant1.7 source package. (Closes: #570889)
+  * Remove Arnaud from the Uploaders list.
+
+  [ Ludovic Claude ]
+  * Demote ant-optional-gcj from Recommends to Suggests for package ant-optional
+    (Closes: #559058)
+
+  [ Niels Thykier ]
+  * Removed obsolete linda override.
+
+ -- Torsten Werner <twerner at debian.org>  Sat, 27 Feb 2010 18:26:35 +0100
+
+ant (1.8.0-2) unstable; urgency=low
+
+  [Torsten Werner]
+  * Improve Description of ant-gcj thanks to Matthias Klose.
+
+  [Ludovic Claude]
+  * Fix a NPE on Diagnostics.getClassLocation(), add patch
+    ant_diagnostics.patch for it (Closes: #570588)
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Sat, 20 Feb 2010 23:32:07 +0100
+
+ant (1.8.0-1) unstable; urgency=low
+
+  * New upstream version 
+    (Closes: #567229, #330292, #514140, #569936, #570075)
+  * Add myself to Uploaders
+  * Bump up Standards-Version to 3.8.4, no changes
+  * debian/control: update ant Depends and remove old
+    java1-runtime-headless, add new java5-runtime-headless and
+    java6-runtime-headless
+  * Demote ant-gcj from Recommends to Suggests for package ant
+    (Closes: #559058)
+  * Fix documentation for ant-optional-gcj (Closes: #563760)
+  * Update man page ant.1 and build.xml.5: fix Lintian warnings
+    and update the documentation
+  * Move the patch system to quilt, delete old patches
+    (11_ant_underscore_dash_fix.patch, 03_SplashTaskPatch_a.patch),
+    refresh all patches
+  * Add tasks for stylebook and xalan2
+  * Add debian/orig_tar.sh and use it to repack the archive without
+    compiled jars and pdf files
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Sun, 14 Feb 2010 00:03:38 +0100
+
+ant (1.7.1-4) unstable; urgency=low
+
+  * Fix link to /usr/share/doc/ant-doc/manual/api. You may
+    have to uninstall ant-doc then install it again for this
+    change to take effect (Closes: #541416)
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Tue, 01 Sep 2009 18:16:28 +0100
+
+ant (1.7.1-3) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Torsten Werner <twerner at debian.org>  Sun, 09 Aug 2009 10:07:55 +0200
+
+ant (1.7.1-2) experimental; urgency=low
+
+  * Bump up Standards-Version to 3.8.2
+  * Move Ant Javadoc to /usr/share/doc/ant/api/
+  * Deploy missing POM files for ant-optional package 
+  * Fix version for antlr, bcel, commons-net, log4j dependencies in the
+    Maven POMs.
+  * Fix groupId and artifactId for commons-logging and regexp
+    dependencies in the Maven POMs.
+  * Fix Ant version in the Maven repository
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Wed, 22 Jul 2009 19:08:53 +0100
+
+ant (1.7.1-1) experimental; urgency=low
+
+  [Ludovic Claude]
+  * Change section to java, bump up Standards-Version to 3.8.1
+  * Update debhelper and compat to 6
+  * Add Matthias Klose to Uploaders
+  * Move ant-gcj from Recommends to Suggests for ant binary package
+    (closes: #506220)
+  * Add Build-Depends on libjaxp-1.3-java as xml-apis.jar has moved to this
+    package. Add a Suggests on the same package for ant-optional
+  * Add the Maven POMs to the package,
+  * Add a Build-Depends-Indep dependency on maven-repo-helper
+  * Use mh_installpom and mh_installjar to install the POM and the jar to the
+    Maven repository
+  * Remove the full text of the Apache 2.0 license
+
+  [Colin Watson]
+  * Drop JDK recommendation to a Suggests to make it feasible to fit ant on
+    the server CD (thanks, Thierry Carrez; LP: #389470).
+
+  [Richard A. Johnson]
+  * Added 11_ant_underscore_dash_fix.patch fixes - to _ conversion LP: #296409
+
+  [Matthias Klose]
+  * New upstream version (bug fix release).
+    - mainly a bugfix release.
+    - has extended support for Java6 features.
+    - <script> now has support for JavaFX.
+    - release notes: http://apache.linux-mirror.org/ant/README.html
+  * Remove debian/patches/05_ant-bug433444.patch. Obsoleted.
+  * Merge from Ubuntu:
+    - ant: Depend on default-jre-headless, drop dependency on jvm.
+    - Set java source and target version to 1.4.
+    - ant: Recommend default-jdk | java-compiler | java-sdk.
+  * Fix dangling symlink to ant-bootstrap.jar.
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Fri, 03 Jul 2009 00:42:36 +0100
+
+ant (1.7.0-6) unstable; urgency=low
+
+  * Moved ant-bootstrap.jar to /usr/share/ant/etc/. Closes: #353586
+  * Build-Depends on default-jdk-builddep. Closes: #477844
+
+ -- Michael Koch <konqueror at gmx.de>  Tue, 29 Apr 2008 17:43:04 -0100
+
+ant (1.7.0-5) unstable; urgency=low
+
+  * Fix handling of native2ascii for classpath based VMs.
+    Closes: 470584.
+  * Fixed Section in ant-doc.doc-base.2 to 'Programming'.
+
+ -- Michael Koch <konqueror at gmx.de>  Mon, 31 Mar 2008 20:14:27 +0200
+
+ant (1.7.0-4) unstable; urgency=low
+
+  * Fixed debian/changelog to differenciate between license and copyright.
+  * Removed -1 in versioned dependencies from Build-Depends.
+  * Added Homepage, Vcs-Svn and Vcs-Browser fields.
+  * Updated Standards-Version to 3.7.3.
+
+ -- Michael Koch <konqueror at gmx.de>  Tue, 26 Feb 2008 10:37:26 +0100
+
+ant (1.7.0-3) unstable; urgency=low
+
+  * Upgrade source and target version from 1.2 to 1.3.
+
+ -- Michael Koch <mkoch at quadriga.konqueror.de>  Fri, 24 Aug 2007 19:39:32 +0200
+
+ant (1.7.0-2) unstable; urgency=low
+
+  * Added debian/patches/05_ant-bug433444.patch. Closes: #433444.
+
+ -- Michael Koch <konqueror at gmx.de>  Tue, 17 Jul 2007 13:25:02 -0100
+
+ant (1.7.0-1) unstable; urgency=low
+
+  * New upstream version. Closes: #412716.
+  * Updated debian/patches/01_gjdoc_task.patch.
+  * Removed debian/patches/03_SplashTaskPatch_b.patch. Obsoleted.
+  * Removed debian/patches/03_SplashTaskPatch_c.patch. Obsoleted.
+  * Removed debian/patches/04_UUMailerReflection.patch. Obsoleted.
+  * Removed debian/patches/05_TaskAvailabilityFix_ANT_PR38260.patch.
+    Obsoleted.
+
+ -- Michael Koch <konqueror at gmx.de>  Sat, 07 Jul 2007 09:13:08 -0100
+
+ant (1.6.5-9) unstable; urgency=low
+
+  * Fixed generation of binary-arch only packages. Closes: #430662.
+
+ -- Michael Koch <konqueror at gmx.de>  Sun, 01 Jul 2007 21:06:38 -0100
+
+ant (1.6.5-8) unstable; urgency=low
+
+  * Only compile to native on certain archs. Closes: #430662.
+  * Use ${source:Version} instead of ${Source-Version}.
+  * Removed Wolfgang from Uploaders.
+
+ -- Michael Koch <konqueror at gmx.de>  Tue, 26 Jun 2007 14:30:53 -0100
+
+ant (1.6.5-7) unstable; urgency=low
+
+  [ Arnaud Vandyck ]
+  * debian/build.xml.5: correction of an exemple, thanks to LI Daobing
+    (closes: #426345)
+  * debian/control: depends on java-gcj-compat-dev as it needs the
+    tools.jar file (closes: #397045). So it does not recommends jikes |
+    java-compiler no more.
+  * debian/control: ant-optional does not depend on a virtual machine
+    because it depends on ant.
+
+  [ Michael Koch ]
+  * Build -gcj Packages for ant and ant-optional.
+  * Fix Homepage: tag in long descriptions.
+
+ -- Michael Koch <konqueror at gmx.de>  Sun, 03 Jun 2007 18:35:58 +0200
+
+ant (1.6.5-6) unstable; urgency=low
+
+  * debian/patches/03_SplashTaskPatch_a.patch: Fixed to apply the new file
+    into the correct directory (Closes: #375540).
+  * debian/rules: Build with java-gcj-compat.
+  * debian/control: (Build-)Depends on java-gcj-compat(-dev).
+  * debian/control: Moved cdbs and debhelper to Build-Depends.
+  * debian/control: Updated Standards-Version to 3.7.2.
+  * debian/control: Added myself to Uploaders.
+
+ -- Michael Koch <konqueror at gmx.de>  Sat,  1 Jul 2006 10:51:26 +0000
+
+ant (1.6.5-5) unstable; urgency=low
+
+  * Added versioned build dependency on kaffe to fix the bootstrap process 
+    (/usr/bin/ecj is only available sind 1.16.91-) (closes: #348647)
+
+ -- Wolfgang Baer <WBaer at gmx.de>  Wed, 18 Jan 2006 14:42:45 +0100
+
+ant (1.6.5-4) unstable; urgency=low
+
+  * kaffe compiler transition 
+  * Applied patch for upstream PR 38260 to fix build failure
+    of some package on free runtimes (Thanks, Stephan Michels)
+
+ -- Wolfgang Baer <WBaer at gmx.de>  Mon, 16 Jan 2006 12:17:10 +0100
+
+ant (1.6.5-3) unstable; urgency=low
+
+  * Fixed FTBS by adding bootstrap ANT_HOME (closes: #331081)
+  * Add javacc to Suggests as needed by javacc task (closes: #330513)
+
+ -- Wolfgang Baer <WBaer at gmx.de>  Sat,  1 Oct 2005 17:15:35 +0200
+
+ant (1.6.5-2) unstable; urgency=low
+
+  * Converted package to no longer depend on libant1.6-java 
+    + Dropped libant1.6-java from build-dep and deps
+    + ant.links - removed links into libant1.6-java
+  * Reorganized binaries build from ant source package
+    + ant - includes the scripts and the core tasks
+    + ant-doc - includes the manual and javadocs
+    + ant-optional - includes the optional tasks  
+  * As part of this reorganization the following was done
+    + Moved core tasks previously in libant1.6-java to ant
+    + Moved optional tasks previously in ant to ant-optional
+    + Moved manual from ant to ant-doc
+    + Added conflicts,replaces with libant1.6-java to ant, ant-optional as
+      it contained core and optional task jars
+    + Added conflicts/replaces with ant-doc (<= 1.6.5-1) to ant
+    + Link all auxiliary jars from ant, ant-optional into /usr/share/java
+      as required by debian java policy
+  * Completely revised README.Debian
+    + Removed paragraph about setting JAVA_HOME which is not needed 
+      (closes: #291157)
+    + Revised differences to upstream - we do not have any regressions 
+      to building with non-free JDKs
+    + Added a paragraph about optional tasks and suggested libraries
+  * changelog.html in the ant manual is the description of an ant task
+    + Added linda override to suppress error html-only-changelog
+    + Added ant-doc.compress to suppress a gzip of this file
+  * Registered javadoc and manual with doc-base
+    Added ant-doc.doc-base.1 and ant-doc.doc-base.2
+  * Added the gjdoc task from libant1.6-java (closes: #324884)
+
+  * Upload sponsored by Arnaud Vandyck <avdyk at debian.org>
+
+ -- Wolfgang Baer <WBaer at gmx.de>  Mon, 15 Aug 2005 15:17:36 +0200
+
+ant (1.6.5-1) unstable; urgency=low
+
+  * New upstream release
+    + Build with kaffe/gjdoc/jikes
+    + Move to main (closes: #290228)
+    + Refractored SplashTask to remove sun internal classes
+      patches 03_SplashTaskPatch_a/b/c.patch (submitted upstream)
+    + Patched UUMailer.java to use sun internal classes via reflection
+    + Updated src/script/ant patches
+    + Patched build.xml to include maxmemory option to build javadoc
+  * Splashscreen now works with kaffe/gij-4.0/jamvm packages 
+    (closes: #169755, #164401)
+  * Removed extraneous files left by failed builds (closes: #310266)
+  * Added libjsch-java to path and include ant-jsch (closes: #305674)
+  * Added ant-jmf to ant.install
+  * Added java1-runtime | java2-runtime as alternatives to kaffe to Depends
+  * Moved ant-doc to section doc (closes: #253448)
+  * According to upstream changelog ant junitreport for JDK 1.5 
+    was fixed already in 1.6.2 (closes: #273560)
+  * Taskdef attributes are the same as for Typedef and therefore
+    described through the provided link to Typedef manual (closes: #254683)
+  * Updated README.Debian
+  * Updated build.xml.5 and ant.1 manpages
+  * Changed Build-Depends to Build-Depends-Indep to fix lintian warning
+  * Moved java-virtual-machine to suggests
+  * Used versioned dependency for libant1.6-java (same upstream version needed)
+  * Call dh_installdocs directly to exclude redundant LICENSE files
+  * Bumped Standards-Version to 3.6.2 - no changes
+  * Added myself to uploaders
+  * Upload sponsored by Arnaud Vandyck
+
+ -- Wolfgang Baer <WBaer at gmx.de>  Thu, 23 Jun 2005 16:11:44 +0200
+
+ant (1.6.2-2) unstable; urgency=low
+
+  * added commons-net to the path when building (closes: #272556).
+
+ -- Arnaud Vandyck <avdyk at debian.org>  Tue, 28 Sep 2004 11:44:52 +0200
+
+ant (1.6.2-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/watch: added file to monitor new upstream
+  * debian/ant.install: changed name of some libs (they changed it
+    upstream): ant-apache-bcel.jar, ant-apache-log4j, ant-apache-oro.jar,
+    ant-apache-regexp.jar
+  * debian/ant.install: added ant-apache-resolver.jar, ant-bootstrap.jar
+    and ant-commons-net.jar (/usr/share/ant/lib)
+  * debian/ant.install: removed ant-xalan2.jar (does not exist anymore
+    upstream!)
+
+ -- Arnaud Vandyck <arnaud at ressource-toi.org>  Sun, 15 Aug 2004 00:50:34 +0200
+
+ant (1.6.1-2) unstable; urgency=low
+
+  * Add the Xerces2 XML parser to the local classpath
+    (closes: #240245, #249136)
+  * Don't make /usr/share/ant/lib/ant-launcher.jar a symlink since Ant's
+    startup code would follow it and wrongly add JARs from
+    /usr/share/ant1.6/lib instead of /usr/share/ant/lib to the classpath
+    (closes: #238674, #239797, #251527, #238187, #245042)
+  * Correctly set ANT_HOME in /usr/bin/ant
+
+ -- Stefan Gybas <sgybas at debian.org>  Sun,  6 Jun 2004 18:55:09 +0200
+
+ant (1.6.1-1) unstable; urgency=low
+
+  * New upstream release (closes: #230061)
+    + Uses the new interface to BSF (closes: #217752)
+    + Fixes bug in finding javacc.jar (closes: #232592)
+  * Only suggest the libraries for optional tasks instead of depending on
+    them (closes: #211560, #228142)
+  * Build with the packaged version of ORO (closes: #200909)
+  * Fixed typo in ant.1 man page (closes: #215291). Thanks to Nicolas Francois
+    for the patch!
+  * Updated copyright to include the new Apache License version 2.0
+  * Use upstream's version of the Ant wrapper /usr/bin/ant which uses the
+    new ant-launcher.jar
+  * Updated README.Debian
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed, 10 Mar 2004 01:47:53 +0100
+
+ant (1.5.4-3) unstable; urgency=low
+
+  * The ant package now conflicts with and replaces ant-doc (<< 1.5.4-2)
+    (closes: #211234)
+  * Use CDBS to build the package
+  * Set Maintainer to Debian Java Maintainers
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed, 17 Sep 2003 15:00:17 +0200
+
+ant (1.5.4-2) unstable; urgency=low
+
+  * Remove ant.jar and depend on libant1.5-java instead
+  * Move all documentation expect the Javadoc API documentation from ant-doc
+    to ant (closes: #174876)
+  * Install the XSL files in /usr/share/ant/etc/ (closes: #205484)
+  * Standards-Version: 3.6.1 (no changes required)
+
+ -- Stefan Gybas <sgybas at debian.org>  Sun,  7 Sep 2003 17:26:14 +0200
+
+ant (1.5.4-1) unstable; urgency=low
+
+  * New upstream release
+  * Modify the build process so that no changes to build.xml and bootstrap.sh
+    are required
+  * Build JDepend task (closes: #203149)
+  * Added a list of missing classes in ant-optional.jar compared to upstream's
+    optional.jar to README.Debian
+  * Standards-Version: 3.6.0
+    + Moved debhelper from Build-Depends-Indep: to Build-Depends:
+
+ -- Stefan Gybas <sgybas at debian.org>  Thu, 14 Aug 2003 11:57:48 +0200
+
+ant (1.5.3-2) unstable; urgency=low
+
+  * Add xmlParserAPIs.jar from Xalan2 to the class path instead of xml-apis.jar
+    from Xerces2 (closes: #195702)
+  * Don't compress manual/CoreTasks/changelog.html and other files in ant-doc
+    (closes: #159963)
+  * Depend on the previously suggested packages jython and antlr to avoid
+    dangling symlinks in /usr/share/ant/lib
+  * Honor $ANT_ARGS in startup script (closes: #174313)
+  * Added dependency on java*-runtime as required by the Java Policy
+  * Enable support for BCEL and Commons Logging (closes: #179177)
+  * Compile using Blackdown's JDK 1.4 runtime classes to make sure that the
+    Javah task gets built (closes: #182918)
+  * Depend on liblog4j1.2-java instead of liblog4j (closes: #191177)
+  * Fixed handling of target names with spaces (closes: #198481)
+  * Updated upstream URL in copyright and package description
+  * Fixed Lintian errors and warnings:
+    + Removed extra license in ant-doc
+    + Fixed bad whatis entry in manual pages
+  * Updated README.Debian
+  * Standards-Version: 3.5.10 (no changes required)
+
+ -- Stefan Gybas <sgybas at debian.org>  Tue, 24 Jun 2003 16:21:44 +0200
+
+ant (1.5.3-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Takashi Okamoto <tora at debian.org>  Wed,  9 Apr 2003 21:32:28 +0900
+
+ant (1.5.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Build with debhelper >= 4.1.0 to get rid of /usr/doc compatibility
+    symlinks
+  * Standards-Version: 3.5.7 (no changes required)
+  * Added Takashi Okamoto and Ola Lundqvist as uploaders
+  * Build with jikes as a first step in a movement from contrib to main
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed, 23 Oct 2002 16:07:15 +0200
+
+ant (1.5-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stefan Gybas <sgybas at debian.org>  Thu, 11 Jul 2002 23:02:20 +0200
+
+ant (1.4.99b3-1) unstable; urgency=low
+
+  * New upstream release: Ant 1.5beta3
+    + calles com.sun.tools.javac.Main when using the modern Java compiler
+      (closes: #147466)
+  * Build using Xerces-J 2.0 like upstream does
+  * Build depend on recent Xalan-J 2.0 version so that the style task works
+    with TrAX (closes: #148997)
+  * Depend on some of the previously suggested packages (Xalan-J, JUnit)
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed,  3 Jul 2002 17:24:11 +0200
+
+ant (1.4.99b1-1) unstable; urgency=low
+
+  * New upstream release: Ant 1.5beta1
+    + supports Java 1.4 taglets in javadoc task (closes: #138648)
+  * Fixed spelling error in doc-base title (closes: #144274)
+  * Add a note to README.Debian about additional dependencies for some
+    optional tasks (closes: #139188)
+  * Add a note to README.Debian about dangling symlinks in
+    /usr/share/ant/lib (closes: #138638)
+  * Build using Xerces 1 and Xalan 1 until the problems with Xalan 2 are
+    resolved
+  * Use DH_COMPAT=4 in debian/rules and update build dependencies accordingly
+
+ -- Stefan Gybas <sgybas at debian.org>  Sun, 26 May 2002 18:31:38 +0200
+
+ant (1.4.1-4) unstable; urgency=low
+
+  * Applied patch from Adam Heath to not follow symlinks during deletion
+    (closes: #133291)
+  * Copy the Ant startup script to /usr/share/ant/bin/ant (closes: #133641)
+  * Provide the upstream chaneglog (WHATSNEW)
+  * The package can now be compiled with j2sdk1.3 1.3.1-1.1 (which has
+    JAVA_HOME set to /usr/lib/j2se/1.3) and 1.3.1-1 (which has JAVA_HOME set
+    to /usr/lib/j2sdk1.3).
+
+ -- Stefan Gybas <sgybas at debian.org>  Thu, 14 Feb 2002 14:28:48 +0100
+
+ant (1.4.1-3) unstable; urgency=low
+
+  * Correctly set classpath (closes: #132027)
+  * Install API doc into manual/api so that links work (closes: #132012)
+  * Fixed typos in previous changelog entry
+
+ -- Stefan Gybas <sgybas at debian.org>  Sun,  3 Feb 2002 11:28:35 +0100
+
+ant (1.4.1-2) unstable; urgency=low
+
+  * Removed empty line from src/main/org/apache/tools/ant/defaultManifest.mf.
+    Thanks to Ken Harris and Marko Kreen for investigation! (closes: #112261)
+  * Use $JAVA_HOME/bin/java instead of /usr/bin/java if the former
+    exists, Thanks to Taso Lyristis for the patch!
+  * Respect $JAVACMD and $ANT_OPTS in /usr/bin/ant as the documentation
+    says. Thanks to Marko Kreen for the patch! (closes: #119611)
+  * Only append JAR files in /usr/share/ant/lib/ to the CLASSPATH if
+    the file actually exists to avoid problems with dangling symlinks
+  * Include symlinks to optional JARs from other packages into the package
+    instead of creating them in the postinst. However, ant still only
+    suggests these packages. (closes: #124378)
+  * Also include symlink to js.jar from rhino. (closes: #130624)
+  * Check the length of osname in src/main/org/apache/tools/tar/TarEntry.java
+    to avoid StringIndexOutOfBoundsException on Linux. (closes: #126479)
+  * Added getMode() to src/main/org/apache/tools/tar/TarEntry.java, taken
+    from upstream CVS. (closes: #126472)
+  * Build API docs and put them together with the HTML manual in the new
+    ant-doc package (closes: #125144)
+  * Install the JARs as /usr/share/java/ant-$version-*.jar and create 
+    /usr/share/java/ant-*.jar symlinks as recommended by the Java policy
+  * Use dh_installman instead of dh_installmanpages so ant.1 and build.5
+    are only included in the main package
+  * Make ant-doc conflict with previous versions of ant because of
+    overlapping files
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed, 30 Jan 2002 09:45:06 +0100
+
+ant (1.4.1-1) unstable; urgency=low
+
+  * New upstream release with fixed JAR generation (closes: #112261)
+  * Use /usr/lib/j2se/1.3 for JAVA_HOME (for j2sdk1.3 from Incoming)
+  * Removed emacs settings from changelog (Lintian)
+  * Changed Build-Depends to Build-Depends-Indep (Lintian)
+
+ -- Stefan Gybas <sgybas at debian.org>  Tue, 23 Oct 2001 22:31:57 +0200
+
+ant (1.4-1) unstable; urgency=low
+
+  * New upstream release
+  * Use libxalan2-java instad of libxalan-java
+  * Build support for liblog4j and libregexp-java
+  * Suggest jython and include its JAR in Ant's class path so Python
+    can be used in the <script> task
+
+ -- Stefan Gybas <sgybas at debian.org>  Thu, 13 Sep 2001 12:09:10 +0200
+
+ant (1.3-4) unstable; urgency=low
+
+  * Built using Sun's javac instead of jikes (closes: #107326)
+
+ -- Stefan Gybas <sgybas at debian.org>  Fri, 24 Aug 2001 16:46:53 +0200
+
+ant (1.3-3) unstable; urgency=low
+
+  * Built Ant using JMF, JUnit, Xalan and ANTLR so some extra tags are
+    supported in build.xml
+  * Add optional packages to CLASSPATH at installation time if they are
+    installed
+
+ -- Stefan Gybas <sgybas at debian.org>  Mon, 30 Jul 2001 23:33:15 +0200
+
+ant (1.3-2) unstable; urgency=low
+
+  * Also move binary package to contrib
+
+ -- Stefan Gybas <sgybas at debian.org>  Fri, 27 Jul 2001 00:45:46 +0200
+
+ant (1.3-1) unstable; urgency=low
+
+  * New upstream release (closes: #95866)
+  * Build using j2dsk1.3 instead of kaffe because kaffe lacks too many
+    JDK 1.2 features and is too buggy to even run Ant. Unfortunately, this
+    requires moving ant from main to contrib but it fixes many Ant
+    problems. (closes: #105737)
+  * Use debhelper V3
+  * Standards-Version: 3.5.6 (no changes required)
+  * Call bootstraop.sh to build ant, this fixes the problem with missing
+    files in the resulting ant.jar (closes: #85802, #90023, #90024, #93400,
+    #98207, #106468)
+  * Include man pages ant.1 and build.xml.5, thanks to Egon Willighagen
+    (closes: #92975)
+  * Add tools.jar to Ant's classpath if $JAVA_HOME is defined
+  * Updated README.Debian
+  * Build using libbsf-java and liboro-java so advanced features can be used.
+    Added suggestions for these packages.
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed, 25 Jul 2001 22:48:52 +0200
+
+ant (1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Build classpath from all JARs in /usr/share/ant/lib/
+
+ -- Stefan Gybas <sgybas at debian.org>  Tue, 21 Nov 2000 21:36:34 +0100
+
+ant (1.1-2) unstable; urgency=low
+
+  * Build using new Xerces-J 1.2.0 version
+  * Add symlink to ant.jar in /usr/share/ant/lib
+  * Updated debian/rules to use debhelper V2
+  * Updated to Standards-Version: 3.2.1 (no changes required)
+
+ -- Stefan Gybas <sgybas at debian.org>  Mon, 25 Sep 2000 20:58:06 +0200
+
+ant (1.1-1) unstable; urgency=low
+
+  * Initial Release
+
+ -- Stefan Gybas <sgybas at debian.org>  Wed, 19 Jul 2000 12:50:39 +0200

Deleted: tags/ant/1.9.4-3/debian/control
===================================================================
--- trunk/ant/debian/control	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/control	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,104 +0,0 @@
-Source: ant
-Section: java
-Priority: optional
-Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Matthias Klose <doko at debian.org>,
-           Ludovic Claude <ludovic.claude at laposte.net>,
-           Torsten Werner <twerner at debian.org>,
-           James Page <james.page at canonical.com>,
-           Emmanuel Bourg <ebourg at apache.org>
-Build-Depends: antlr,
-               cdbs (>= 0.4.8),
-               debhelper (>= 9),
-               default-jdk,
-               gcj-native-helper,
-               junit,
-               junit4,
-               libbcel-java (>= 5.0),
-               libbsf-java (>= 2.3.0rc1),
-               libcommons-logging-java,
-               libcommons-net-java,
-               libgnumail-java,
-               libjaxp1.3-java,
-               libjdepend-java,
-               libjsch-java,
-               liblog4j1.2-java,
-               liboro-java,
-               libregexp-java,
-               libxalan2-java (>= 2.4.0),
-               libxerces2-java,
-               libxml-commons-resolver1.1-java (>= 1.2-7~),
-               maven-repo-helper (>> 1.0)
-Standards-Version: 3.9.5
-Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/ant
-Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/ant/
-Homepage: http://ant.apache.org
-
-Package: ant
-Architecture: all
-Depends: default-jre-headless | java5-runtime-headless | java6-runtime-headless | java7-runtime-headless,
-         libxerces2-java,
-         ${misc:Depends}
-Recommends: ant-optional
-Suggests: ant-doc, ant-gcj, default-jdk | java-compiler | java-sdk
-Conflicts: libant1.6-java
-Replaces: ant-doc (<= 1.6.5-1), libant1.6-java
-Breaks: ant-doc (<= 1.6.5-1)
-Description: Java based build tool like make
- A system independent (i.e. not shell based) build tool that uses XML
- files as "Makefiles". This package contains the scripts and the core
- tasks libraries.
-
-Package: ant-gcj
-Architecture: any
-Depends: ant, ${misc:Depends}, ${shlibs:Depends}
-Description: Java based build tool like make (GCJ)
- A system independent (i.e. not shell based) build tool that uses XML
- files as "Makefiles".
- .
- This package contains a native version of ant built using gcj.
-
-Package: ant-optional
-Architecture: all
-Depends: ant (= ${source:Version}), ${misc:Depends}
-Suggests: ant-optional-gcj,
-          antlr,
-          javacc,
-          junit,
-          jython,
-          libbcel-java (>= 5.0),
-          libbsf-java,
-          libcommons-logging-java,
-          libcommons-net-java,
-          libgnumail-java,
-          libjaxp1.3-java,
-          libjdepend-java,
-          libjsch-java,
-          liblog4j1.2-java,
-          liboro-java,
-          libregexp-java,
-          libxalan2-java (>= 2.4.0-1),
-          libxml-commons-resolver1.1-java
-Conflicts: libant1.6-java
-Replaces: libant1.6-java
-Description: Java based build tool like make - optional libraries
- A system independent (i.e. not shell based) build tool that uses XML
- files as "Makefiles". This package contains the optional tasks libraries.
-
-Package: ant-optional-gcj
-Architecture: any
-Depends: ant-optional, ${misc:Depends}, ${shlibs:Depends}
-Description: Java based build tool like make - optional libraries (GCJ)
- A system independent (i.e. not shell based) build tool that uses XML
- files as "Makefiles". This package contains the optional tasks libraries
- compiled natively.
-
-Package: ant-doc
-Architecture: all
-Section: doc
-Depends: ${misc:Depends}
-Suggests: ant
-Description: Java based build tool like make - API documentation and manual
- A system independent (i.e. not shell based) build tool that uses XML files
- as "Makefiles". This package contains the manual of ant as well as the
- Javadoc API documentation.

Copied: tags/ant/1.9.4-3/debian/control (from rev 18529, trunk/ant/debian/control)
===================================================================
--- tags/ant/1.9.4-3/debian/control	                        (rev 0)
+++ tags/ant/1.9.4-3/debian/control	2014-10-08 09:15:08 UTC (rev 18534)
@@ -0,0 +1,101 @@
+Source: ant
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Matthias Klose <doko at debian.org>,
+           Ludovic Claude <ludovic.claude at laposte.net>,
+           Torsten Werner <twerner at debian.org>,
+           James Page <james.page at canonical.com>,
+           Emmanuel Bourg <ebourg at apache.org>
+Build-Depends: antlr,
+               cdbs (>= 0.4.8),
+               debhelper (>= 9),
+               default-jdk,
+               gcj-native-helper,
+               junit,
+               junit4,
+               libbcel-java (>= 5.0),
+               libbsf-java (>= 2.3.0rc1),
+               libcommons-logging-java,
+               libcommons-net-java,
+               libmail-java,
+               libjdepend-java,
+               libjsch-java,
+               liblog4j1.2-java,
+               liboro-java,
+               libregexp-java,
+               libxalan2-java (>= 2.4.0),
+               libxml-commons-resolver1.1-java (>= 1.2-7~),
+               maven-repo-helper (>> 1.0)
+Standards-Version: 3.9.6
+Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/ant
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/ant/
+Homepage: http://ant.apache.org
+
+Package: ant
+Architecture: all
+Depends: default-jre-headless | java5-runtime-headless | java6-runtime-headless | java7-runtime-headless,
+         ${misc:Depends}
+Recommends: ant-optional
+Suggests: ant-doc, ant-gcj, default-jdk | java-compiler | java-sdk
+Conflicts: libant1.6-java
+Replaces: ant-doc (<= 1.6.5-1), libant1.6-java
+Breaks: ant-doc (<= 1.6.5-1)
+Description: Java based build tool like make
+ A system independent (i.e. not shell based) build tool that uses XML
+ files as "Makefiles". This package contains the scripts and the core
+ tasks libraries.
+
+Package: ant-gcj
+Architecture: any
+Depends: ant, ${misc:Depends}, ${shlibs:Depends}
+Description: Java based build tool like make (GCJ)
+ A system independent (i.e. not shell based) build tool that uses XML
+ files as "Makefiles".
+ .
+ This package contains a native version of ant built using gcj.
+
+Package: ant-optional
+Architecture: all
+Depends: ant (= ${source:Version}), ${misc:Depends}
+Suggests: ant-optional-gcj,
+          antlr,
+          javacc,
+          junit,
+          jython,
+          libbcel-java (>= 5.0),
+          libbsf-java,
+          libcommons-logging-java,
+          libcommons-net-java,
+          libmail-java,
+          libjaxp1.3-java,
+          libjdepend-java,
+          libjsch-java,
+          liblog4j1.2-java,
+          liboro-java,
+          libregexp-java,
+          libxalan2-java (>= 2.4.0-1),
+          libxml-commons-resolver1.1-java
+Conflicts: libant1.6-java
+Replaces: libant1.6-java
+Description: Java based build tool like make - optional libraries
+ A system independent (i.e. not shell based) build tool that uses XML
+ files as "Makefiles". This package contains the optional tasks libraries.
+
+Package: ant-optional-gcj
+Architecture: any
+Depends: ant-optional, ${misc:Depends}, ${shlibs:Depends}
+Description: Java based build tool like make - optional libraries (GCJ)
+ A system independent (i.e. not shell based) build tool that uses XML
+ files as "Makefiles". This package contains the optional tasks libraries
+ compiled natively.
+
+Package: ant-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Suggests: ant
+Description: Java based build tool like make - API documentation and manual
+ A system independent (i.e. not shell based) build tool that uses XML files
+ as "Makefiles". This package contains the manual of ant as well as the
+ Javadoc API documentation.

Deleted: tags/ant/1.9.4-3/debian/maven.rules
===================================================================
--- trunk/ant/debian/maven.rules	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/maven.rules	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,10 +0,0 @@
-junit junit jar s/3\..*/3.x/
-junit junit jar s/4\..*/4.x/
-antlr antlr jar s/2\..*/2.x/
-s/bcel/org.apache.bcel/ bcel jar s/5\..*/5.x/
-commons-logging s/commons-logging-api/commons-logging/ * s/.*/debian/
-commons-net commons-net jar s/1\..+/1.x/
-commons-net commons-net jar s/2\..+/2.x/
-log4j log4j jar s/1\.2\..*/1.2.x/
-s/regexp/jakarta-regexp/ s/regexp/jakarta-regexp/ * s/.*/debian/
-

Copied: tags/ant/1.9.4-3/debian/maven.rules (from rev 18496, trunk/ant/debian/maven.rules)
===================================================================
--- tags/ant/1.9.4-3/debian/maven.rules	                        (rev 0)
+++ tags/ant/1.9.4-3/debian/maven.rules	2014-10-08 09:15:08 UTC (rev 18534)
@@ -0,0 +1,10 @@
+junit junit jar s/3\..*/3.x/
+junit junit jar s/4\..*/4.x/
+antlr antlr jar s/2\..*/2.x/
+s/bcel/org.apache.bcel/ bcel jar s/5\..*/5.x/
+commons-logging s/commons-logging-api/commons-logging/ * s/.*/debian/
+commons-net commons-net jar s/1\..+/1.x/
+commons-net commons-net jar s/2\..+/2.x/
+log4j log4j jar s/1\.2\..*/1.2.x/
+s/regexp/jakarta-regexp/ s/regexp/jakarta-regexp/ * s/.*/debian/
+s/javax.mail/com.sun.mail/ s/mail/javax.mail/ * s/.*/debian/

Deleted: tags/ant/1.9.4-3/debian/patches/0003-add-Xerces-from-Debian-s-path.patch
===================================================================
--- trunk/ant/debian/patches/0003-add-Xerces-from-Debian-s-path.patch	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/patches/0003-add-Xerces-from-Debian-s-path.patch	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,24 +0,0 @@
-From: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Date: Thu, 11 Mar 2010 21:50:06 +0100
-Subject: [PATCH] add Xerces from Debian's path
-
----
- src/script/ant |    7 +++++++
- 1 files changed, 7 insertions(+), 0 deletions(-)
-
---- a/src/script/ant
-+++ b/src/script/ant
-@@ -159,6 +159,13 @@
-   exit 1
- fi
- 
-+# Add the Xerces 2 XML parser in the Debian version
-+if [ -z "$LOCALCLASSPATH" ] ; then
-+  LOCALCLASSPATH="/usr/share/java/xmlParserAPIs.jar:/usr/share/java/xercesImpl.jar"
-+else
-+  LOCALCLASSPATH="/usr/share/java/xmlParserAPIs.jar:/usr/share/java/xercesImpl.jar:$LOCALCLASSPATH"
-+fi
-+
- # Build local classpath using just the launcher in non-rpm mode or
- # use the Jpackage helper in rpm mode with basic and default jars
- # specified in the ant.conf configuration. Because the launcher is

Deleted: tags/ant/1.9.4-3/debian/patches/series
===================================================================
--- trunk/ant/debian/patches/series	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/patches/series	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,6 +0,0 @@
-0002-do-not-build-test-jars.patch
-0003-add-Xerces-from-Debian-s-path.patch
-0005-add-gjdoc-task.patch
-0006-fix-ANT_HOME-path.patch
-0007-use-build.classpath.patch
-0008-junit4-replace-assumeFalse.patch

Copied: tags/ant/1.9.4-3/debian/patches/series (from rev 18529, trunk/ant/debian/patches/series)
===================================================================
--- tags/ant/1.9.4-3/debian/patches/series	                        (rev 0)
+++ tags/ant/1.9.4-3/debian/patches/series	2014-10-08 09:15:08 UTC (rev 18534)
@@ -0,0 +1,5 @@
+0002-do-not-build-test-jars.patch
+0005-add-gjdoc-task.patch
+0006-fix-ANT_HOME-path.patch
+0007-use-build.classpath.patch
+0008-junit4-replace-assumeFalse.patch

Deleted: tags/ant/1.9.4-3/debian/rules
===================================================================
--- trunk/ant/debian/rules	2014-05-09 09:47:00 UTC (rev 18125)
+++ tags/ant/1.9.4-3/debian/rules	2014-10-08 09:15:08 UTC (rev 18534)
@@ -1,124 +0,0 @@
-#!/usr/bin/make -f
-# debian/rules file for ant (uses cdbs)
-
-#export DH_VERBOSE=1
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-
-# hardening
-CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
-LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
-export AOT_GCJFLAGS=$(CFLAGS)
-export AOT_LDFLAGS=$(LDFLAGS)
-
-
-include /usr/share/gcj/debian_defaults
-ifneq (,$(filter $(DEB_HOST_ARCH), $(gcj_native_archs)))
-  with_gcj_native := yes
-endif
-
-# needs to be exported for direct ant call
-export JAVA_HOME := /usr/lib/jvm/default-java
-# needed for bootstrap.sh
-export JAVAC=$(JAVA_HOME)/bin/javac
-# needed for bootstrap
-export BOOTJAVAC_OPTS=-source 1.5 -target 1.5 -nowarn
-# needed for building with bootstrap ant
-export ANT_HOME := bootstrap
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-    export ANT_OPTS=-Dcompile.debug=true -Dcompile.optimize=false
-else
-    export ANT_OPTS=-Dcompile.debug=true -Dcompile.optimize=true
-endif
-
-PACKAGE              := $(DEB_SOURCE_PACKAGE)
-VERSION              := $(DEB_UPSTREAM_VERSION)
-JAR_PATH := /usr/share/java
-CLASSPATH := ${JAR_PATH}/activation.jar:${JAR_PATH}/antlr.jar:${JAR_PATH}/bcel.jar:${JAR_PATH}/bsf.jar:${JAR_PATH}/commons-logging.jar:${JAR_PATH}/gnumail.jar:${JAR_PATH}/inetlib.jar:${JAR_PATH}/jdepend.jar:${JAR_PATH}/junit.jar:${JAR_PATH}/log4j-1.2.jar:${JAR_PATH}/oro.jar:${JAR_PATH}/regexp.jar:${JAR_PATH}/xalan2.jar:${JAR_PATH}/xml-resolver-1.2.jar:${JAR_PATH}/commons-net.jar:${JAR_PATH}/jsch.jar:${JAR_PATH}/junit4.jar
-
-build-ant: stamp-build-ant
-stamp-build-ant:
-	# doing bootstrapping
-	install -d bootstrap/lib
-	ln -sf /usr/share/java/xml-apis.jar $(DEB_BUILDDIR)/bootstrap/lib/xml-apis.jar
-	ln -sf /usr/share/java/xercesImpl.jar $(DEB_BUILDDIR)/bootstrap/lib/xercesImpl.jar
-	/bin/sh bootstrap.sh
-	# the rest
-	/bin/sh bootstrap/bin/ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 -Dbuild.classpath=${CLASSPATH} -propertyfile debian/ant.properties jars test-jar
-	ln -sf /usr/share/java/xml-apis.jar $(DEB_BUILDDIR)/lib/xml-apis.jar
-	ln -sf /usr/share/java/xercesImpl.jar $(DEB_BUILDDIR)/lib/xercesImpl.jar
-	touch stamp-build-ant
-
-build-ant-doc: stamp-build-ant-doc
-stamp-build-ant-doc:
-	/bin/sh bootstrap/bin/ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 -Dbuild.classpath=${CLASSPATH} -propertyfile debian/ant.properties javadocs
-	touch $@
-
-install/ant-doc:: build-ant-doc
-	-rm -f manual/LICENSE
-
-install/ant:: build-ant
-	dh_install -pant
-	mh_installpoms -pant -e$(VERSION)
-	mh_installjar -pant -l -e$(VERSION) src/etc/poms/ant/pom.xml build/lib/ant.jar /usr/share/ant/lib/ant.jar
-	mh_installjar -pant -l -e$(VERSION) src/etc/poms/ant-launcher/pom.xml build/lib/ant-launcher.jar /usr/share/ant/lib/ant-launcher.jar
-	dh_install -pant build/lib/ant-bootstrap.jar /usr/share/ant/etc/
-	# Installing these files does not work with dh_install because of
-	# the file permissions
-	mkdir -p debian/ant/usr/share/ant/bin
-	install -m 755 src/script/ant     debian/ant/usr/share/ant/bin
-	install -m 755 src/script/antRun  debian/ant/usr/share/ant/bin
-	install -m 755 src/script/*.pl    debian/ant/usr/share/ant/bin
-
-install/ant-optional:: build-ant
-	dh_install -pant-optional src/etc/ant-update.xsl /usr/share/ant/etc/
-	dh_install -pant-optional src/etc/checkstyle     /usr/share/ant/etc/
-	mh_installpoms -pant-optional -e$(VERSION)
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-antlr/pom.xml build/lib/ant-antlr.jar /usr/share/ant/lib/ant-antlr.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-bcel/pom.xml build/lib/ant-apache-bcel.jar /usr/share/ant/lib/ant-apache-bcel.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-bsf/pom.xml build/lib/ant-apache-bsf.jar /usr/share/ant/lib/ant-apache-bsf.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-log4j/pom.xml build/lib/ant-apache-log4j.jar /usr/share/ant/lib/ant-apache-log4j.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-oro/pom.xml build/lib/ant-apache-oro.jar /usr/share/ant/lib/ant-apache-oro.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-regexp/pom.xml build/lib/ant-apache-regexp.jar /usr/share/ant/lib/ant-apache-regexp.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-resolver/pom.xml build/lib/ant-apache-resolver.jar /usr/share/ant/lib/ant-apache-resolver.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-xalan2/pom.xml build/lib/ant-apache-xalan2.jar /usr/share/ant/lib/ant-apache-xalan2.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-commons-logging/pom.xml build/lib/ant-commons-logging.jar /usr/share/ant/lib/ant-commons-logging.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-commons-net/pom.xml build/lib/ant-commons-net.jar /usr/share/ant/lib/ant-commons-net.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-javamail/pom.xml build/lib/ant-javamail.jar /usr/share/ant/lib/ant-javamail.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jdepend/pom.xml build/lib/ant-jdepend.jar /usr/share/ant/lib/ant-jdepend.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jmf/pom.xml build/lib/ant-jmf.jar /usr/share/ant/lib/ant-jmf.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jsch/pom.xml build/lib/ant-jsch.jar /usr/share/ant/lib/ant-jsch.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-junit/pom.xml build/lib/ant-junit.jar /usr/share/ant/lib/ant-junit.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-swing/pom.xml build/lib/ant-swing.jar /usr/share/ant/lib/ant-swing.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-testutil/pom.xml build/lib/ant-testutil.jar /usr/share/ant/lib/ant-testutil.jar
-	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-junit4/pom.xml build/lib/ant-junit4.jar /usr/share/ant/lib/ant-junit4.jar
-	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jai/pom.xml ant-jai/build/ant-jai-$(VERSION).jar
-	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-netrexx/pom.xml ant-netrexx/build/ant-netrexx-$(VERSION).jar
-	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-starteam/pom.xml ant-starteam/build/ant-starteam-$(VERSION).jar
-	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-weblogic/pom.xml ant-weblogic/build/ant-weblogic-$(VERSION).jar
-
-ifeq ($(with_gcj_native),yes)
-install/ant-gcj:: install/ant
-	dh_install -pant
-	dh_nativejava -pant-gcj
-endif
-
-ifeq ($(with_gcj_native),yes)
-install/ant-optional-gcj:: install/ant-optional
-	dh_install -pant-optional
-	dh_nativejava -pant-optional-gcj
-endif
-
-clean::
-	-rm -f gjdoc_rawcomment.cache
-	-rm -rf bin bootstrap build lib/*.jar
-	-rm -f stamp-build-ant
-	-rm -f stamp-build-ant-doc
-	-rm -rf debian/tmp
-	mh_clean
-
-get-orig-source: 
-	-uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename --repack
-
-

Copied: tags/ant/1.9.4-3/debian/rules (from rev 18530, trunk/ant/debian/rules)
===================================================================
--- tags/ant/1.9.4-3/debian/rules	                        (rev 0)
+++ tags/ant/1.9.4-3/debian/rules	2014-10-08 09:15:08 UTC (rev 18534)
@@ -0,0 +1,114 @@
+#!/usr/bin/make -f
+# debian/rules file for ant (uses cdbs)
+
+#export DH_VERBOSE=1
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+# hardening
+CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
+LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
+export AOT_GCJFLAGS=$(CFLAGS)
+export AOT_LDFLAGS=$(LDFLAGS)
+
+
+include /usr/share/gcj/debian_defaults
+ifneq (,$(filter $(DEB_HOST_ARCH), $(gcj_native_archs)))
+  with_gcj_native := yes
+endif
+
+# needs to be exported for direct ant call
+export JAVA_HOME := /usr/lib/jvm/default-java
+# needed for bootstrap.sh
+export JAVAC=$(JAVA_HOME)/bin/javac
+# needed for bootstrap
+export BOOTJAVAC_OPTS=-source 1.5 -target 1.5 -nowarn
+# needed for building with bootstrap ant
+export ANT_HOME := bootstrap
+
+PACKAGE              := $(DEB_SOURCE_PACKAGE)
+VERSION              := $(DEB_UPSTREAM_VERSION)
+JAR_PATH := /usr/share/java
+CLASSPATH := ${JAR_PATH}/activation.jar:${JAR_PATH}/antlr.jar:${JAR_PATH}/bcel.jar:${JAR_PATH}/bsf.jar:${JAR_PATH}/commons-logging.jar:${JAR_PATH}/javax.mail.jar:${JAR_PATH}/inetlib.jar:${JAR_PATH}/jdepend.jar:${JAR_PATH}/junit.jar:${JAR_PATH}/log4j-1.2.jar:${JAR_PATH}/oro.jar:${JAR_PATH}/regexp.jar:${JAR_PATH}/xalan2.jar:${JAR_PATH}/xml-resolver-1.2.jar:${JAR_PATH}/commons-net.jar:${JAR_PATH}/jsch.jar:${JAR_PATH}/junit4.jar
+
+build-ant: stamp-build-ant
+stamp-build-ant:
+	# doing bootstrapping
+	install -d bootstrap/lib
+	/bin/sh bootstrap.sh
+	# the rest
+	/bin/sh bootstrap/bin/ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 -Dbuild.classpath=${CLASSPATH} -propertyfile debian/ant.properties jars test-jar
+	touch stamp-build-ant
+
+build-ant-doc: stamp-build-ant-doc
+stamp-build-ant-doc:
+	/bin/sh bootstrap/bin/ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 -Dbuild.classpath=${CLASSPATH} -propertyfile debian/ant.properties javadocs
+	touch $@
+
+install/ant-doc:: build-ant-doc
+	-rm -f manual/LICENSE
+
+install/ant:: build-ant
+	dh_install -pant
+	mh_installpoms -pant -e$(VERSION)
+	mh_installjar -pant -l -e$(VERSION) src/etc/poms/ant/pom.xml build/lib/ant.jar /usr/share/ant/lib/ant.jar
+	mh_installjar -pant -l -e$(VERSION) src/etc/poms/ant-launcher/pom.xml build/lib/ant-launcher.jar /usr/share/ant/lib/ant-launcher.jar
+	dh_install -pant build/lib/ant-bootstrap.jar /usr/share/ant/etc/
+	# Installing these files does not work with dh_install because of
+	# the file permissions
+	mkdir -p debian/ant/usr/share/ant/bin
+	install -m 755 src/script/ant     debian/ant/usr/share/ant/bin
+	install -m 755 src/script/antRun  debian/ant/usr/share/ant/bin
+	install -m 755 src/script/*.pl    debian/ant/usr/share/ant/bin
+
+install/ant-optional:: build-ant
+	dh_install -pant-optional src/etc/ant-update.xsl /usr/share/ant/etc/
+	dh_install -pant-optional src/etc/checkstyle     /usr/share/ant/etc/
+	mh_installpoms -pant-optional -e$(VERSION)
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-antlr/pom.xml build/lib/ant-antlr.jar /usr/share/ant/lib/ant-antlr.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-bcel/pom.xml build/lib/ant-apache-bcel.jar /usr/share/ant/lib/ant-apache-bcel.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-bsf/pom.xml build/lib/ant-apache-bsf.jar /usr/share/ant/lib/ant-apache-bsf.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-log4j/pom.xml build/lib/ant-apache-log4j.jar /usr/share/ant/lib/ant-apache-log4j.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-oro/pom.xml build/lib/ant-apache-oro.jar /usr/share/ant/lib/ant-apache-oro.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-regexp/pom.xml build/lib/ant-apache-regexp.jar /usr/share/ant/lib/ant-apache-regexp.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-resolver/pom.xml build/lib/ant-apache-resolver.jar /usr/share/ant/lib/ant-apache-resolver.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-apache-xalan2/pom.xml build/lib/ant-apache-xalan2.jar /usr/share/ant/lib/ant-apache-xalan2.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-commons-logging/pom.xml build/lib/ant-commons-logging.jar /usr/share/ant/lib/ant-commons-logging.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-commons-net/pom.xml build/lib/ant-commons-net.jar /usr/share/ant/lib/ant-commons-net.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-javamail/pom.xml build/lib/ant-javamail.jar /usr/share/ant/lib/ant-javamail.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jdepend/pom.xml build/lib/ant-jdepend.jar /usr/share/ant/lib/ant-jdepend.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jmf/pom.xml build/lib/ant-jmf.jar /usr/share/ant/lib/ant-jmf.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jsch/pom.xml build/lib/ant-jsch.jar /usr/share/ant/lib/ant-jsch.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-junit/pom.xml build/lib/ant-junit.jar /usr/share/ant/lib/ant-junit.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-swing/pom.xml build/lib/ant-swing.jar /usr/share/ant/lib/ant-swing.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-testutil/pom.xml build/lib/ant-testutil.jar /usr/share/ant/lib/ant-testutil.jar
+	mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-junit4/pom.xml build/lib/ant-junit4.jar /usr/share/ant/lib/ant-junit4.jar
+	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-jai/pom.xml ant-jai/build/ant-jai-$(VERSION).jar
+	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-netrexx/pom.xml ant-netrexx/build/ant-netrexx-$(VERSION).jar
+	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-starteam/pom.xml ant-starteam/build/ant-starteam-$(VERSION).jar
+	#mh_installjar -pant-optional -l -e$(VERSION) src/etc/poms/ant-weblogic/pom.xml ant-weblogic/build/ant-weblogic-$(VERSION).jar
+
+ifeq ($(with_gcj_native),yes)
+install/ant-gcj:: install/ant
+	dh_install -pant
+	dh_nativejava -pant-gcj
+endif
+
+ifeq ($(with_gcj_native),yes)
+install/ant-optional-gcj:: install/ant-optional
+	dh_install -pant-optional
+	dh_nativejava -pant-optional-gcj
+endif
+
+clean::
+	-rm -f gjdoc_rawcomment.cache
+	-rm -rf bin bootstrap build lib/*.jar
+	-rm -f stamp-build-ant
+	-rm -f stamp-build-ant-doc
+	-rm -rf debian/tmp
+	mh_clean
+
+get-orig-source: 
+	-uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename --repack
+
+




More information about the pkg-java-commits mailing list