This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository modello1.4.
commit 733078023cf1dc2c5122d9dc9b1b76ea9c2b1d23 Author: Emmanuel Bourg <[email protected]> Date: Wed Nov 6 16:31:58 2013 +0100 debian/orig-tar.sh: Use the tarball from Github instead of the SVN tag --- debian/changelog | 1 + debian/orig-tar.sh | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5c12fa0..582ab54 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,7 @@ modello1.4 (1.4.1-2) unstable; urgency=low * debian/rules: Improved the clean target * Switch to debhelper level 9 * debian/watch: Updated to watch the new release tags on Github + * debian/orig-tar.sh: Use the tarball from Github instead of the SVN tag -- Emmanuel Bourg <[email protected]> Wed, 06 Nov 2013 15:34:06 +0100 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index dbe25e6..c1062bc 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -5,7 +5,9 @@ TAR=../modello1.4_$VERSION.orig.tar.gz DIR=modello-$VERSION TAG=modello-$2 -svn export https://svn.codehaus.org/modello/tags/$TAG $DIR +mkdir -p $DIR +tar --strip=1 -xvf $3 -C $DIR +rm $3 rm -rf $DIR/modello-maven-plugin rm -rf $DIR/modello-test tar -c -z -f $TAR $DIR -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/modello1.4.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

