Author: nomadium-guest Date: 2011-10-15 15:18:27 +0000 (Sat, 15 Oct 2011) New Revision: 15199
Added: trunk/maven-ear-plugin/debian/maven.cleanIgnoreRules trunk/maven-ear-plugin/debian/maven.ignoreRules trunk/maven-ear-plugin/debian/maven.publishedRules Removed: trunk/maven-ear-plugin/debian/maven.rules Modified: trunk/maven-ear-plugin/debian/changelog trunk/maven-ear-plugin/debian/control trunk/maven-ear-plugin/debian/copyright trunk/maven-ear-plugin/debian/libmaven-ear-plugin-java.poms trunk/maven-ear-plugin/debian/rules Log: * 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. Modified: trunk/maven-ear-plugin/debian/changelog =================================================================== --- trunk/maven-ear-plugin/debian/changelog 2011-10-14 02:30:49 UTC (rev 15198) +++ trunk/maven-ear-plugin/debian/changelog 2011-10-15 15:18:27 UTC (rev 15199) @@ -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. Modified: trunk/maven-ear-plugin/debian/control =================================================================== --- trunk/maven-ear-plugin/debian/control 2011-10-14 02:30:49 UTC (rev 15198) +++ trunk/maven-ear-plugin/debian/control 2011-10-15 15:18:27 UTC (rev 15199) @@ -8,7 +8,7 @@ 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/ Modified: trunk/maven-ear-plugin/debian/copyright =================================================================== --- trunk/maven-ear-plugin/debian/copyright 2011-10-14 02:30:49 UTC (rev 15198) +++ trunk/maven-ear-plugin/debian/copyright 2011-10-15 15:18:27 UTC (rev 15199) @@ -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 @@ 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' Modified: trunk/maven-ear-plugin/debian/libmaven-ear-plugin-java.poms =================================================================== --- trunk/maven-ear-plugin/debian/libmaven-ear-plugin-java.poms 2011-10-14 02:30:49 UTC (rev 15198) +++ trunk/maven-ear-plugin/debian/libmaven-ear-plugin-java.poms 2011-10-15 15:18:27 UTC (rev 15199) @@ -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 Added: trunk/maven-ear-plugin/debian/maven.cleanIgnoreRules =================================================================== --- trunk/maven-ear-plugin/debian/maven.cleanIgnoreRules (rev 0) +++ trunk/maven-ear-plugin/debian/maven.cleanIgnoreRules 2011-10-15 15:18:27 UTC (rev 15199) @@ -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/ + Added: trunk/maven-ear-plugin/debian/maven.ignoreRules =================================================================== --- trunk/maven-ear-plugin/debian/maven.ignoreRules (rev 0) +++ trunk/maven-ear-plugin/debian/maven.ignoreRules 2011-10-15 15:18:27 UTC (rev 15199) @@ -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/ + Added: trunk/maven-ear-plugin/debian/maven.publishedRules =================================================================== --- trunk/maven-ear-plugin/debian/maven.publishedRules (rev 0) +++ trunk/maven-ear-plugin/debian/maven.publishedRules 2011-10-15 15:18:27 UTC (rev 15199) @@ -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/ + Deleted: trunk/maven-ear-plugin/debian/maven.rules =================================================================== --- trunk/maven-ear-plugin/debian/maven.rules 2011-10-14 02:30:49 UTC (rev 15198) +++ trunk/maven-ear-plugin/debian/maven.rules 2011-10-15 15:18:27 UTC (rev 15199) @@ -1 +0,0 @@ -org.apache.maven.plugins maven-surefire-plugin maven-plugin s/.*/2.4.3/ Modified: trunk/maven-ear-plugin/debian/rules =================================================================== --- trunk/maven-ear-plugin/debian/rules 2011-10-14 02:30:49 UTC (rev 15198) +++ trunk/maven-ear-plugin/debian/rules 2011-10-15 15:18:27 UTC (rev 15199) @@ -5,5 +5,8 @@ JAVA_HOME := /usr/lib/jvm/default-java +clean:: + rm -f mvn-build + get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

