Author: ebourg-guest Date: 2013-11-09 22:27:53 +0000 (Sat, 09 Nov 2013) New Revision: 17461
Modified: trunk/maven-war-plugin/debian/changelog trunk/maven-war-plugin/debian/compat trunk/maven-war-plugin/debian/control trunk/maven-war-plugin/debian/libmaven-war-plugin-java.poms trunk/maven-war-plugin/debian/orig-tar.sh Log: Updated Standards-Version to 3.9.5 (no changes) Use canonical URLs for the Vcs-* fields Switch to debhelper level 9 debian/orig-tar.sh: Do not remove the jars used as test elements Use XZ compression for the upstream tarball Modified: trunk/maven-war-plugin/debian/changelog =================================================================== --- trunk/maven-war-plugin/debian/changelog 2013-11-09 17:06:15 UTC (rev 17460) +++ trunk/maven-war-plugin/debian/changelog 2013-11-09 22:27:53 UTC (rev 17461) @@ -1,3 +1,16 @@ +maven-war-plugin (2.1.1-3) UNRELEASED; urgency=low + + * Team upload. + * debian/control: + - Updated Standards-Version to 3.9.5 (no changes) + - Use canonical URLs for the Vcs-* fields + * Switch to debhelper level 9 + * debian/orig-tar.sh: + - Do not remove the jars used as test elements + - Use XZ compression for the upstream tarball + + -- Emmanuel Bourg <[email protected]> Sat, 09 Nov 2013 23:15:11 +0100 + maven-war-plugin (2.1.1-2) UNRELEASED; urgency=low * Team upload. Modified: trunk/maven-war-plugin/debian/compat =================================================================== --- trunk/maven-war-plugin/debian/compat 2013-11-09 17:06:15 UTC (rev 17460) +++ trunk/maven-war-plugin/debian/compat 2013-11-09 22:27:53 UTC (rev 17461) @@ -1 +1 @@ -7 +9 Modified: trunk/maven-war-plugin/debian/control =================================================================== --- trunk/maven-war-plugin/debian/control 2013-11-09 17:06:15 UTC (rev 17460) +++ trunk/maven-war-plugin/debian/control 2013-11-09 22:27:53 UTC (rev 17461) @@ -3,13 +3,13 @@ Priority: optional Maintainer: Debian Java Maintainers <[email protected]> Uploaders: Ludovic Claude <[email protected]> -Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.4) +Build-Depends: debhelper (>= 9), cdbs, default-jdk, maven-debian-helper (>= 1.4) Build-Depends-Indep: libmaven-archiver-java, libmaven-filtering-java, libmaven2-core-java, libplexus-archiver-java, libplexus-io-java, libplexus-utils-java, libxstream-java, junit, libmaven-plugin-testing-java, default-jdk-doc, libmaven2-core-java-doc, libplexus-utils-java-doc, libmaven-javadoc-plugin-java, libmaven-plugin-tools-java -Standards-Version: 3.9.2 -Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-war-plugin -Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-war-plugin/ +Standards-Version: 3.9.5 +Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/maven-war-plugin +Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/maven-war-plugin/ Homepage: http://maven.apache.org/plugins/maven-war-plugin/ Package: libmaven-war-plugin-java Modified: trunk/maven-war-plugin/debian/libmaven-war-plugin-java.poms =================================================================== --- trunk/maven-war-plugin/debian/libmaven-war-plugin-java.poms 2013-11-09 17:06:15 UTC (rev 17460) +++ trunk/maven-war-plugin/debian/libmaven-war-plugin-java.poms 2013-11-09 22:27:53 UTC (rev 17461) @@ -2,7 +2,9 @@ # Format of this file is: # <path to pom file> [option]* # where option can be: -# --ignore: ignore this POM or +# --ignore: ignore this POM and its artifact if any +# --ignore-pom: don't install the POM. To use on POM files that are created +# temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms] # --no-parent: remove the <parent> tag from the POM # --package=<package>: an alternative package to use when installing this POM # and its artifact @@ -11,16 +13,16 @@ # --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 +# it will be installed when using the command mh_install. [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. +# --dest-jar=<path>: the destination for the real jar. +# It will be installed with mh_install. [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. +# --site-xml=<location>: Optional, the location for site.xml if it needs to be installed. +# Empty by default. [mh_install] # pom.xml --no-parent --has-package-version Modified: trunk/maven-war-plugin/debian/orig-tar.sh =================================================================== --- trunk/maven-war-plugin/debian/orig-tar.sh 2013-11-09 17:06:15 UTC (rev 17460) +++ trunk/maven-war-plugin/debian/orig-tar.sh 2013-11-09 22:27:53 UTC (rev 17461) @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../maven-war-plugin_$VERSION.orig.tar.gz +TAR=../maven-war-plugin_$VERSION.orig.tar.xz DIR=maven-war-plugin-$VERSION TAG=$(echo "maven-war-plugin-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export http://svn.apache.org/repos/asf/maven/plugins/tags/${TAG}/ $DIR -GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR +XZ_OPT=--best tar -c -J -f $TAR $DIR rm -rf $DIR ../$TAG # move to directory 'tarballs' _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

