[maven-antrun-plugin] 05/19: * Team upload. * New upstream release. * Bump Standards-Version to 3.9.2. No changes were required. * Migrate to source package format 3.0 (quilt). * Allow package to build twice in a row.

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Tue Jun 20 11:04:16 UTC 2017


This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven-antrun-plugin.

commit eb4d4194592b43539257afe6700ca9f943af0900
Author: Miguel Landaeta <nomadium at debian.org>
Date:   Wed Jul 20 14:25:15 2011 +0000

    * Team upload.
    * New upstream release.
    * Bump Standards-Version to 3.9.2. No changes were required.
    * Migrate to source package format 3.0 (quilt).
    * Allow package to build twice in a row.
---
 debian/changelog                        | 10 ++++++++++
 debian/clean                            |  1 +
 debian/control                          |  4 ++--
 debian/libmaven-antrun-plugin-java.poms | 25 +++++++++++++++++++++++++
 debian/maven.rules                      | 21 ++++++++++++++++++++-
 debian/source/format                    |  1 +
 6 files changed, 59 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7645b96..50d404a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+maven-antrun-plugin (1.6-1) UNRELEASED; urgency=low
+
+  * Team upload.
+  * New upstream release.
+  * Bump Standards-Version to 3.9.2. No changes were required.
+  * Migrate to source package format 3.0 (quilt).
+  * Allow package to build twice in a row.
+
+ -- Miguel Landaeta <miguel at miguel.cc>  Tue, 19 Jul 2011 19:38:53 -0430
+
 maven-antrun-plugin (1.3-1) unstable; urgency=low
 
   * Initial release (Closes: #540052)
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..9406c07
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+mvn-build
diff --git a/debian/control b/debian/control
index 11534c5..1db4cbd 100644
--- a/debian/control
+++ b/debian/control
@@ -4,8 +4,8 @@ Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
 Uploaders: Ludovic Claude <ludovic.claude at laposte.net>
 Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper
-Build-Depends-Indep: libmaven-invoker-plugin-java (>= 1.3), ant, libmaven2-core-java, libplexus-utils-java 
-Standards-Version: 3.8.2
+Build-Depends-Indep: libmaven-invoker-plugin-java (>= 1.3), ant (>= 1.8.2), libmaven2-core-java, libplexus-utils-java 
+Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-antrun-plugin
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-antrun-plugin/
 Homepage: http://maven.apache.org/plugins/maven-antrun-plugin/
diff --git a/debian/libmaven-antrun-plugin-java.poms b/debian/libmaven-antrun-plugin-java.poms
index 43e746b..3687374 100644
--- a/debian/libmaven-antrun-plugin-java.poms
+++ b/debian/libmaven-antrun-plugin-java.poms
@@ -1 +1,26 @@
+# List of POM files for the package
+# Format of this file is:
+# <path to pom file> [option]*
+# where option can be:
+#   --ignore: ignore this POM or
+#   --no-parent: remove the <parent> tag from the POM
+#   --package=<package>: an alternative package to use when installing this POM
+#      and its artifact
+#   --has-package-version: to indicate that the original version of the POM is the same as the upstream part
+#      of the version for the package.
+#   --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
+#      during a clean operation with mh_cleanpom or mh_installpom
+#   --artifact=<path>: path to the build artifact associated with this POM,
+#      it will be installed when using the command mh_install
+#   --java-lib: install the jar into /usr/share/java to comply with Debian
+#      packaging guidelines
+#   --usj-name=<name>: name to use when installing the library in /usr/share/java
+#   --usj-version=<version>: version to use when installing the library in /usr/share/java
+#   --no-usj-versionless: don't install the versionless link in /usr/share/java
+#   --dest-jar=<path>: the destination for the real jar
+#   it will be installed with mh_install.
+#   --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
+#   --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created
+#     temporarily for certain artifacts such as Javadoc jars.
+#
 pom.xml --no-parent
diff --git a/debian/maven.rules b/debian/maven.rules
index 4c42bb5..d769b26 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1 +1,20 @@
-s/ant/org.apache.ant/ * * s/.*/debian/ *
+# 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/
+
+org.apache.ant s/ant-nodeps/ant/ * s/.*/debian/ * *
+s/ant/org.apache.ant/ * * s/.*/debian/ * *
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-antrun-plugin.git



More information about the pkg-java-commits mailing list