This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-ear-plugin.
commit 30fd757b111a22233d64a705321c7940cad47b9d Author: Miguel Landaeta <[email protected]> Date: Sat Oct 15 15:18:27 2011 +0000 * Team upload. * Remove hard-coded version of dependencie on maven-surefire-plugin. (Closes: #645370). * Bump Standards-Version to 3.9.2. No changes were required. * Make copyright file DEP-5 compliant. * Fix clean target to allow "two in a row" builds. --- debian/changelog | 11 +++++++++++ debian/control | 2 +- debian/copyright | 8 ++++---- debian/libmaven-ear-plugin-java.poms | 25 +++++++++++++++++++++++++ debian/maven.cleanIgnoreRules | 17 +++++++++++++++++ debian/maven.ignoreRules | 16 ++++++++++++++++ debian/maven.publishedRules | 19 +++++++++++++++++++ debian/maven.rules | 1 - debian/rules | 3 +++ 9 files changed, 96 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index f03f109..09431de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +maven-ear-plugin (2.3.2-3) UNRELEASED; urgency=low + + * Team upload. + * Remove hard-coded version of dependencie on maven-surefire-plugin. + (Closes: #645370). + * Bump Standards-Version to 3.9.2. No changes were required. + * Make copyright file DEP-5 compliant. + * Fix clean target to allow "two in a row" builds. + + -- Miguel Landaeta <[email protected]> Sat, 15 Oct 2011 10:26:16 -0430 + maven-ear-plugin (2.3.2-2) unstable; urgency=low * Team upload. diff --git a/debian/control b/debian/control index a43a70d..3229156 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Build-Depends-Indep: libmaven-antrun-plugin-java (>= 1.3), libmaven-invoker-plug libsurefire-java (>= 2.4.3), libmaven-archiver-java, libmaven-filtering-java, libmaven2-core-java, libplexus-utils-java, libmaven-verifier-java, libxmlunit-java, libmaven-plugin-tools-java -Standards-Version: 3.9.1 +Standards-Version: 3.9.2 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-ear-plugin Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-ear-plugin/ Homepage: http://maven.apache.org/plugins/maven-ear-plugin/ diff --git a/debian/copyright b/debian/copyright index f1388d5..673b5af 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,6 +1,6 @@ -Format-Specification: http://dep.debian.net/deps/dep5/ -Name: Maven EAR Plugin -Maintainer: Apache Maven team +Format: http://dep.debian.net/deps/dep5/ +Upstream-Name: Maven EAR Plugin +Upstream-Contact: Apache Maven team Source: http://maven.apache.org/ Files: * @@ -15,6 +15,6 @@ License: Apache-2.0 On Debian GNU/Linux system you can find the complete text of the Apache 2.0 license in '/usr/share/common-licenses/Apache-2.0'. -License: GPL-3 +License: GPL-3+ On Debian GNU/Linux system you can find the complete text of the GPL-3 license in '/usr/share/common-licenses/GPL-3' diff --git a/debian/libmaven-ear-plugin-java.poms b/debian/libmaven-ear-plugin-java.poms index 43e746b..443f17a 100644 --- a/debian/libmaven-ear-plugin-java.poms +++ b/debian/libmaven-ear-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 and its artifact if any +# --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. +# --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. +# pom.xml --no-parent diff --git a/debian/maven.cleanIgnoreRules b/debian/maven.cleanIgnoreRules new file mode 100644 index 0000000..b47b61d --- /dev/null +++ b/debian/maven.cleanIgnoreRules @@ -0,0 +1,17 @@ +# Maven clean ignore rules - ignore some Maven dependencies and plugins +# during the clean phase of a Maven build +# 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 +# All elements much match before a rule can be applied +# Example rule: match jar with groupid= junit, artifactid= junit +# and version starting with 3., this dependency is then removed +# from the POM before mvn clean is called +# junit junit jar s/3\\..*/3.x/ + diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules new file mode 100644 index 0000000..0088a40 --- /dev/null +++ b/debian/maven.ignoreRules @@ -0,0 +1,16 @@ +# Maven ignore rules - ignore some 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 +# All elements much match before a rule can be applied +# Example rule: match jar with groupid= junit, artifactid= junit +# and version starting with 3., this dependency is then removed +# from the POM +# junit junit jar s/3\\..*/3.x/ + diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules new file mode 100644 index 0000000..822f087 --- /dev/null +++ b/debian/maven.publishedRules @@ -0,0 +1,19 @@ +# Maven published rules - additional rules to publish, to help +# the packaging work of Debian maintainers using mh_make +# 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/ + diff --git a/debian/maven.rules b/debian/maven.rules deleted file mode 100644 index a797720..0000000 --- a/debian/maven.rules +++ /dev/null @@ -1 +0,0 @@ -org.apache.maven.plugins maven-surefire-plugin maven-plugin s/.*/2.4.3/ diff --git a/debian/rules b/debian/rules index b76c54a..2bb7158 100755 --- a/debian/rules +++ b/debian/rules @@ -5,5 +5,8 @@ include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java +clean:: + rm -f mvn-build + get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-ear-plugin.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

