Author: luk
Date: 2008-09-20 16:40:15 +0000 (Sat, 20 Sep 2008)
New Revision: 1624
Modified:
trunk/debian/changelog
trunk/scripts/debsign.sh
Log:
Update debsign for new commands of .commands (Closes: #498649).
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-09-20 01:01:22 UTC (rev 1623)
+++ trunk/debian/changelog 2008-09-20 16:40:15 UTC (rev 1624)
@@ -1,4 +1,4 @@
-devscripts (2.10.36) UNRELEASED; urgency=low
+devscripts (2.10.36) unstable; urgency=low
[ Adam D. Barratt ]
* bts:
@@ -100,8 +100,11 @@
* mk-build-deps: Automatically find debian/control if inside of a package
source tree and no argument is given
- -- Patrick Schoenfeld <[EMAIL PROTECTED]> Wed, 17 Sep 2008 12:04:18 +0200
+ [ Luk Claes ]
+ * Update debsign for new commands of .commands (Closes: #498649).
+ -- Luk Claes <[EMAIL PROTECTED]> Sat, 20 Sep 2008 18:37:41 +0200
+
devscripts (2.10.35) unstable; urgency=low
* checkbashisms: Only flag "local x y" and "local foo=bar" when --posix is
Modified: trunk/scripts/debsign.sh
===================================================================
--- trunk/scripts/debsign.sh 2008-09-20 01:01:22 UTC (rev 1623)
+++ trunk/scripts/debsign.sh 2008-09-20 16:40:15 UTC (rev 1624)
@@ -509,8 +509,9 @@
}
sub checkcommands {
chomp($line=$_[0]);
- if ($line =~ m%^\s*mv(\s+[^\s/]+){2}\s*$%) { return 0; }
- if ($line =~ m%^\s*rm(\s+[^\s/]+)+\s*$%) { return 0; }
+ if ($line =~
m%^\s*reschedule\s+[^\s/]+\.changes\s+[0-9]+-day\s*$%) { return 0; }
+ if ($line =~ m%^\s*cancel\s+[^\s/]+\.changes\s*$%) { return
0; }
+ if ($line =~
m%^\s*rm(\s+(?:DELAYED/[0-9]+-day/)?[^\s/]+)+\s*$%) { return 0; }
if ($line eq "") { return 0; }
die ".commands file has invalid Commands line: $line\n";
}
--
To unsubscribe, send mail to [EMAIL PROTECTED]