[Apt-listbugs-commits] [SCM] apt-listbugs development tree branch, master, updated. debian/0.1.4-2-g140d194

Francesco Poli (wintermute) invernomuto at paranoici.org
Sat May 14 18:19:59 UTC 2011


The following commit has been merged in the master branch:
commit f6f07d94cdd541327e535eb87f4723e783c1c5b9
Author: Francesco Poli (wintermute) <invernomuto at paranoici.org>
Date:   Sat May 7 18:44:09 2011 +0200

    improve git-tag.sh to get less ambiguous tags
    
    See http://www.debian-administration.org/users/dkg/weblog/81
    for an explanation of why tags should be made less ambiguous.

diff --git a/debian/changelog b/debian/changelog
index 97f1dbd..0c605e5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+apt-listbugs (0.1.5) unstable; urgency=low
+
+  * modified the git-tag.sh internal script
+
+ -- Francesco Poli (wintermute) <invernomuto at paranoici.org>  Sat, 07 May 2011 18:27:07 +0200
+
 apt-listbugs (0.1.4) unstable; urgency=low
 
   [ Francesco Poli (wintermute) ]
diff --git a/git-tag.sh b/git-tag.sh
index 9c212fe..349321a 100755
--- a/git-tag.sh
+++ b/git-tag.sh
@@ -1,5 +1,6 @@
 #!/bin/sh
 
-VERSION=$(dpkg-parsechangelog | sed -n 's/^Version: //p')
-git tag -s -u "$DEBEMAIL" -m "apt-listbugs release $VERSION" debian/$VERSION
+SRCPACK=$(env LC_ALL=C dpkg-parsechangelog | sed -n 's/^Source: //p')
+VERSION=$(env LC_ALL=C dpkg-parsechangelog | sed -n 's/^Version: //p')
+git tag -s -u "$DEBEMAIL" -m "$SRCPACK release $VERSION" "$SRCPACK/$VERSION"
 

-- 
apt-listbugs development tree



More information about the Apt-listbugs-commits mailing list