This e-mail has been sent due to an upload to Ubuntu that contains Ubuntu
changes.  It contains the difference between the new version and the
previous version of the same source package in Ubuntu.
Format: 1.7
Date: Tue,  6 Mar 2007 10:18:39 +0100
Source: dpkg
Binary: dpkg dselect dpkg-dev
Architecture: source
Version: 1.13.24ubuntu6
Distribution: feisty
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Martin Pitt <[EMAIL PROTECTED]>
Description: 
 dpkg       - package maintenance system for Debian
 dpkg-dev   - package building tools for Debian
 dselect    - user tool to manage Debian packages
Changes: 
 dpkg (1.13.24ubuntu6) feisty; urgency=low
 .
   * scripts/dpkg-source.pl: Only fail to build the source package if $DEBEMAIL
     contains 'ubuntu'. If not, only print a warning.
Files: 
 032a28c43f771a5d5dfd04f3f6b606c8 918 admin required dpkg_1.13.24ubuntu6.dsc
 feae74fb7419f5da6eb37a06c5f0f136 4996827 admin required 
dpkg_1.13.24ubuntu6.tar.gz
Original-Maintainer: Dpkg Developers <[EMAIL PROTECTED]>
diff -pruN 1.13.24ubuntu5/debian/changelog 1.13.24ubuntu6/debian/changelog
--- 1.13.24ubuntu5/debian/changelog     2007-02-20 12:31:02.000000000 +0000
+++ 1.13.24ubuntu6/debian/changelog     2007-03-06 09:21:05.000000000 +0000
@@ -1,3 +1,10 @@
+dpkg (1.13.24ubuntu6) feisty; urgency=low
+
+  * scripts/dpkg-source.pl: Only fail to build the source package if $DEBEMAIL
+    contains 'ubuntu'. If not, only print a warning.
+
+ -- Martin Pitt <[EMAIL PROTECTED]>  Tue,  6 Mar 2007 10:18:39 +0100
+
 dpkg (1.13.24ubuntu5) feisty; urgency=low
 
   * scripts/update-alternatives.pl: in the case where the slave is
diff -pruN 1.13.24ubuntu5/scripts/dpkg-source.pl 
1.13.24ubuntu6/scripts/dpkg-source.pl
--- 1.13.24ubuntu5/scripts/dpkg-source.pl       2007-02-13 11:30:04.000000000 
+0000
+++ 1.13.24ubuntu6/scripts/dpkg-source.pl       2007-03-06 09:18:19.000000000 
+0000
@@ -290,7 +290,11 @@ if ($opmode eq 'build') {
     # https://wiki.ubuntu.com/DebianMaintainerField
     if ($version =~ /ubuntu/) {
             if ($fi{'C Maintainer'} !~ /ubuntu/) {
-                    &error(_g('Version number suggests Ubuntu changes, but 
Maintainer: does not have Ubuntu address'));
+                    if ($ENV{'DEBEMAIL'} =~ /ubuntu/) {
+                            &error(_g('Version number suggests Ubuntu changes, 
but Maintainer: does not have Ubuntu address'));
+                    } else {
+                            &warn(_g('Version number suggests Ubuntu changes, 
but Maintainer: does not have Ubuntu address'));
+                    }
             }
             unless ($fi{'C Xsbc-Original-Maintainer'}) {
                     &warn(_g('Version number suggests Ubuntu changes, but 
there is no XSBC-Original-Maintainer field'))

Reply via email to