[pkg-java] r14371 - in tags/maven-archiver: . 2.4-4/debian
Torsten Werner
twerner at alioth.debian.org
Sun Aug 21 16:29:52 UTC 2011
Author: twerner
Date: 2011-08-21 16:29:51 +0000 (Sun, 21 Aug 2011)
New Revision: 14371
Added:
tags/maven-archiver/2.4-4/
tags/maven-archiver/2.4-4/debian/changelog
tags/maven-archiver/2.4-4/debian/maven.rules
Removed:
tags/maven-archiver/2.4-4/debian/changelog
tags/maven-archiver/2.4-4/debian/maven.rules
Log:
[svn-buildpackage] Tagging maven-archiver 2.4-4
Deleted: tags/maven-archiver/2.4-4/debian/changelog
===================================================================
--- trunk/maven-archiver/debian/changelog 2011-08-21 13:29:45 UTC (rev 14369)
+++ tags/maven-archiver/2.4-4/debian/changelog 2011-08-21 16:29:51 UTC (rev 14371)
@@ -1,44 +0,0 @@
-maven-archiver (2.4-3) unstable; urgency=low
-
- * Use Maven to build the package. But keep the tests disabled because they
- FTBFS.
- * Switch to source format 3.0.
- * Switch to debhelper 7.
- * Update Standards-Version: 3.9.1.
- * Add documentation package.
- * Convert debian/copyright to dep5 format.
-
- -- Torsten Werner <twerner at debian.org> Thu, 18 Aug 2011 16:52:10 +0200
-
-maven-archiver (2.4-2) unstable; urgency=low
-
- * Upload to unstable.
-
- -- Torsten Werner <twerner at debian.org> Sun, 09 Aug 2009 22:26:11 +0200
-
-maven-archiver (2.4-1) experimental; urgency=low
-
- * New upstream version, add myself to Uploaders
- * Change section to java, bump up Standards-Version to 3.8.1
- * Add the Maven POM 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 patch for the POM as it's no longer needed, as well as
- the dependency on Quilt
- * Add a dependency on libplexus-interpolation-java, change the dependency
- on maven2 to libmaven2-core-java
-
- -- Ludovic Claude <ludovic.claude at laposte.net> Thu, 14 May 2009 20:54:44 +0100
-
-maven-archiver (2.3-2) unstable; urgency=low
-
- * Make short description more verbose.
-
- -- Torsten Werner <twerner at debian.org> Thu, 11 Dec 2008 14:34:39 +0100
-
-maven-archiver (2.3-1) unstable; urgency=low
-
- * Initial release. (Closes: #508311)
-
- -- Torsten Werner <twerner at debian.org> Thu, 04 Dec 2008 19:29:26 +0100
Copied: tags/maven-archiver/2.4-4/debian/changelog (from rev 14370, trunk/maven-archiver/debian/changelog)
===================================================================
--- tags/maven-archiver/2.4-4/debian/changelog (rev 0)
+++ tags/maven-archiver/2.4-4/debian/changelog 2011-08-21 16:29:51 UTC (rev 14371)
@@ -0,0 +1,50 @@
+maven-archiver (2.4-4) unstable; urgency=low
+
+ * Add 'debian' version for Maven artifact.
+
+ -- Torsten Werner <twerner at debian.org> Sun, 21 Aug 2011 18:15:52 +0200
+
+maven-archiver (2.4-3) unstable; urgency=low
+
+ * Use Maven to build the package. But keep the tests disabled because they
+ FTBFS.
+ * Switch to source format 3.0.
+ * Switch to debhelper 7.
+ * Update Standards-Version: 3.9.1.
+ * Add documentation package.
+ * Convert debian/copyright to dep5 format.
+
+ -- Torsten Werner <twerner at debian.org> Thu, 18 Aug 2011 16:52:10 +0200
+
+maven-archiver (2.4-2) unstable; urgency=low
+
+ * Upload to unstable.
+
+ -- Torsten Werner <twerner at debian.org> Sun, 09 Aug 2009 22:26:11 +0200
+
+maven-archiver (2.4-1) experimental; urgency=low
+
+ * New upstream version, add myself to Uploaders
+ * Change section to java, bump up Standards-Version to 3.8.1
+ * Add the Maven POM 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 patch for the POM as it's no longer needed, as well as
+ the dependency on Quilt
+ * Add a dependency on libplexus-interpolation-java, change the dependency
+ on maven2 to libmaven2-core-java
+
+ -- Ludovic Claude <ludovic.claude at laposte.net> Thu, 14 May 2009 20:54:44 +0100
+
+maven-archiver (2.3-2) unstable; urgency=low
+
+ * Make short description more verbose.
+
+ -- Torsten Werner <twerner at debian.org> Thu, 11 Dec 2008 14:34:39 +0100
+
+maven-archiver (2.3-1) unstable; urgency=low
+
+ * Initial release. (Closes: #508311)
+
+ -- Torsten Werner <twerner at debian.org> Thu, 04 Dec 2008 19:29:26 +0100
Deleted: tags/maven-archiver/2.4-4/debian/maven.rules
===================================================================
--- trunk/maven-archiver/debian/maven.rules 2011-08-21 13:29:45 UTC (rev 14369)
+++ tags/maven-archiver/2.4-4/debian/maven.rules 2011-08-21 16:29:51 UTC (rev 14371)
@@ -1,20 +0,0 @@
-# Maven rules - transform Maven dependencies and plugins
-# Format of this file is:
-# [group] [artifact] [type] [version] [classifier] [scope]
-# where each element can be either
-# - the exact string, for example org.apache for the group, or 3.1
-# for the version. In this case, the element is simply matched
-# and left as it is
-# - * (the star character, alone). In this case, anything will
-# match and be left as it is. For example, using * on the
-# position of the artifact field will match any artifact id
-# - a regular expression of the form s/match/replace/
-# in this case, elements that match are transformed using
-# the regex rule.
-# All elements much match before a rule can be applied
-# Example rule: match jar with groupid= junit, artifactid= junit
-# and version starting with 3., replacing the version with 3.x
-# junit junit jar s/3\\..*/3.x/
-
-junit junit jar s/3\..*/3.x/ * *
-org.apache.maven maven-archiver jar * * *
Copied: tags/maven-archiver/2.4-4/debian/maven.rules (from rev 14370, trunk/maven-archiver/debian/maven.rules)
===================================================================
--- tags/maven-archiver/2.4-4/debian/maven.rules (rev 0)
+++ tags/maven-archiver/2.4-4/debian/maven.rules 2011-08-21 16:29:51 UTC (rev 14371)
@@ -0,0 +1,19 @@
+# Maven rules - transform Maven dependencies and plugins
+# Format of this file is:
+# [group] [artifact] [type] [version] [classifier] [scope]
+# where each element can be either
+# - the exact string, for example org.apache for the group, or 3.1
+# for the version. In this case, the element is simply matched
+# and left as it is
+# - * (the star character, alone). In this case, anything will
+# match and be left as it is. For example, using * on the
+# position of the artifact field will match any artifact id
+# - a regular expression of the form s/match/replace/
+# in this case, elements that match are transformed using
+# the regex rule.
+# All elements much match before a rule can be applied
+# Example rule: match jar with groupid= junit, artifactid= junit
+# and version starting with 3., replacing the version with 3.x
+# junit junit jar s/3\\..*/3.x/
+
+junit junit jar s/3\..*/3.x/ * *
More information about the pkg-java-commits
mailing list