Author: adam-guest
Date: 2008-03-06 19:34:23 +0000 (Thu, 06 Mar 2008)
New Revision: 1106
Modified:
trunk/debian/changelog
trunk/scripts/debchange.pl
Log:
debchange:
+ Don't complain about the package version changing from native to
non-native if --nmu or --security was used
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-03-06 19:25:15 UTC (rev 1105)
+++ trunk/debian/changelog 2008-03-06 19:34:23 UTC (rev 1106)
@@ -2,8 +2,11 @@
* debsign: Correctly handle signing an automatically located .changes
file if none was passed on the command line (Closes: #468761)
- * debchange: Apply a more elegant fix for the bugfix in 2.10.18.
- Thanks to gregor herrmann for pointing the obvious solution out.
+ * debchange:
+ + Apply a more elegant fix for the bugfix in 2.10.18.
+ Thanks to gregor herrmann for pointing the obvious solution out.
+ + Don't complain about the package version changing from native to
+ non-native if --nmu or --security was used
* checkbashisms:
+ Use Getopt::Long for option parsing
+ Add an option to force checking of scripts that would normally be
Modified: trunk/scripts/debchange.pl
===================================================================
--- trunk/scripts/debchange.pl 2008-03-06 19:25:15 UTC (rev 1105)
+++ trunk/scripts/debchange.pl 2008-03-06 19:34:23 UTC (rev 1106)
@@ -919,7 +919,8 @@
if ($NEW_VERSION eq $NEW_UVERSION and $VERSION ne $UVERSION) {
warn "$progname warning: New package version is Debian native whilst
previous version was not\n";
} elsif ($NEW_VERSION ne $NEW_UVERSION and $VERSION eq $UVERSION) {
- warn "$progname warning: Previous package version was Debian native
whilst new version is not\n";
+ warn "$progname warning: Previous package version was Debian native
whilst new version is not\n"
+ unless $opt_n or $opt_s;
}
if ($opt_bpo) {
--
To unsubscribe, send mail to [EMAIL PROTECTED]