[pkg-java] r17447 - trunk/surefire/debian
Emmanuel Bourg
ebourg-guest at alioth.debian.org
Thu Nov 7 09:52:58 UTC 2013
Author: ebourg-guest
Date: 2013-11-07 09:52:57 +0000 (Thu, 07 Nov 2013)
New Revision: 17447
Modified:
trunk/surefire/debian/changelog
trunk/surefire/debian/compat
trunk/surefire/debian/control
trunk/surefire/debian/orig-tar.sh
trunk/surefire/debian/watch
Log:
Use XZ compression for the upstream tarball
Reworked debian/orig-tar.sh to pull the sources from the Apache Git repository
debian/watch: Updated to watch the tags on the Github mirror
debian/control: Updated Standards-Version to 3.9.5 (no changes)
Switch to debhelper level 9
Modified: trunk/surefire/debian/changelog
===================================================================
--- trunk/surefire/debian/changelog 2013-11-07 09:10:07 UTC (rev 17446)
+++ trunk/surefire/debian/changelog 2013-11-07 09:52:57 UTC (rev 17447)
@@ -1,3 +1,15 @@
+surefire (2.10-6) UNRELEASED; urgency=low
+
+ * Team upload.
+ * debian/orig-tar.sh:
+ - Use XZ compression for the upstream tarball
+ - Reworked to pull the sources from the Apache Git repository
+ * debian/watch: Updated to watch the tags on the Github mirror
+ * debian/control: Updated Standards-Version to 3.9.5 (no changes)
+ * Switch to debhelper level 9
+
+ -- Emmanuel Bourg <ebourg at apache.org> Wed, 30 Oct 2013 12:47:54 +0100
+
surefire (2.10-5) unstable; urgency=low
* Team upload.
Modified: trunk/surefire/debian/compat
===================================================================
--- trunk/surefire/debian/compat 2013-11-07 09:10:07 UTC (rev 17446)
+++ trunk/surefire/debian/compat 2013-11-07 09:52:57 UTC (rev 17447)
@@ -1 +1 @@
-7
+9
Modified: trunk/surefire/debian/control
===================================================================
--- trunk/surefire/debian/control 2013-11-07 09:10:07 UTC (rev 17446)
+++ trunk/surefire/debian/control 2013-11-07 09:52:57 UTC (rev 17447)
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Torsten Werner <twerner at debian.org>
-Build-Depends: cdbs, debhelper (>= 7), default-jdk
+Build-Depends: cdbs, debhelper (>= 9), default-jdk
Build-Depends-Indep: ant,
ant-optional,
junit,
@@ -22,7 +22,7 @@
maven-repo-helper,
testng,
velocity
-Standards-Version: 3.9.4
+Standards-Version: 3.9.5
Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/surefire
Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/surefire
Homepage: http://maven.apache.org/surefire/
Modified: trunk/surefire/debian/orig-tar.sh
===================================================================
--- trunk/surefire/debian/orig-tar.sh 2013-11-07 09:10:07 UTC (rev 17446)
+++ trunk/surefire/debian/orig-tar.sh 2013-11-07 09:52:57 UTC (rev 17447)
@@ -1,18 +1,17 @@
-#!/bin/sh
+#!/bin/sh -e
-set -e
+VERSION=$2
+TAR=../surefire_$VERSION.orig.tar.xz
+DIR=surefire-$VERSION
+TAG=$(echo surefire-$VERSION | sed s/~RC/-RC/ )
-TAR=../surefire_$2.orig.tar.gz
-DIR=surefire-$2
-TAG=surefire-$2
+rm $3
-svn export http://svn.apache.org/repos/asf/maven/surefire/tags/$TAG $DIR
-tar -c -z -f $TAR $DIR
-rm -rf $DIR ../$TAG
+git clone http://git.apache.org/maven-surefire.git $DIR
+cd $DIR
+git checkout tags/$TAG
+cd ..
+rm -Rf $DIR/.git
-# move to directory 'tarballs'
-if [ -r .svn/deb-layout ]; then
- . .svn/deb-layout
- mv $TAR $origDir
- echo "moved $TAR to $origDir"
-fi
+XZ_OPT=--best tar -c -J -f $TAR $DIR
+rm -rf $DIR ../$TAG
Modified: trunk/surefire/debian/watch
===================================================================
--- trunk/surefire/debian/watch 2013-11-07 09:10:07 UTC (rev 17446)
+++ trunk/surefire/debian/watch 2013-11-07 09:52:57 UTC (rev 17447)
@@ -1,3 +1,2 @@
version=3
-http://svn.apache.org/repos/asf/maven/surefire/tags/ \
- surefire-(\d.*)/ debian debian/orig-tar.sh
+https://github.com/apache/maven-surefire/releases .*/surefire-([\d\.]+).tar.gz debian debian/orig-tar.sh
More information about the pkg-java-commits
mailing list