summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-20 09:54:48 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-20 09:54:48 +0100
commit4350f80dae29e372014b3ef4b76511f6e2128e64 (patch)
treec81615806f582b987dc5e6ff2dbe3ff1f6f0cca8
parentc05f0a392f44d21c93f45bc92c5861d99e76549f (diff)
downloadliw-automation-4350f80dae29e372014b3ef4b76511f6e2128e64.tar.gz
unreleased-projects now supports Debian version tag scheme I just
cooked up.
-rw-r--r--debian/changelog7
-rwxr-xr-xscripts/unreleased-projects2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index ec9258c..4d9410d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+liw-automation (8.18) squeeze; urgency=low
+
+ * unreleased-projects now supports Debian version tag scheme I just
+ cooked up.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 20 Aug 2011 09:54:45 +0100
+
liw-automation (8.17) squeeze; urgency=low
* Fix unreleased-projects tag check.
diff --git a/scripts/unreleased-projects b/scripts/unreleased-projects
index c702c0d..7639780 100755
--- a/scripts/unreleased-projects
+++ b/scripts/unreleased-projects
@@ -52,7 +52,7 @@ class UnreleasedProjects(cliapp.Application):
tags = self.bzr_tags(project_dir)
logging.debug('found tags: %s' % repr(tags))
- pat = r'^%s-\d+(\.\d+)*$' % project_name
+ pat = r'^%s-\d+(\.\d+)*(_debian-[0-9.-]+)?$' % project_name
logging.debug('tag pattern = %s' % repr(pat))
for tag_revno, tag in tags: