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: Mon, 09 Jun 2008 09:51:08 +0000
Source: dpkg
Binary: dpkg dselect dpkg-dev
Architecture: source
Version: 1.14.19ubuntu2
Distribution: intrepid
Urgency: low
Maintainer: Ubuntu Core Developers <[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
Launchpad-Bugs-Fixed: 133024
Changes: 
 dpkg (1.14.19ubuntu2) intrepid; urgency=low
 .
   * scripts/dpkg-source.pl: Check if $DEBEMAIL is defined before testing it
     for @ubuntu, to avoid Perl warnings. Thanks to Fabien Tassin!
     (LP: #133024)
Files: 
 81e5fb54585de227c6c439df653931a7 1319 admin required dpkg_1.14.19ubuntu2.dsc
 be597d23a81bfda1bc52a5e8323f7d0f 6637250 admin required 
dpkg_1.14.19ubuntu2.tar.gz
Original-Maintainer: Dpkg Developers <[email protected]>
diff -pruN 1.14.19ubuntu1/debian/changelog 1.14.19ubuntu2/debian/changelog
--- 1.14.19ubuntu1/debian/changelog     2008-05-27 13:15:17.000000000 +0100
+++ 1.14.19ubuntu2/debian/changelog     2008-06-09 10:52:04.000000000 +0100
@@ -1,3 +1,11 @@
+dpkg (1.14.19ubuntu2) intrepid; urgency=low
+
+  * scripts/dpkg-source.pl: Check if $DEBEMAIL is defined before testing it
+    for @ubuntu, to avoid Perl warnings. Thanks to Fabien Tassin!
+    (LP: #133024)
+
+ -- Martin Pitt <[EMAIL PROTECTED]>  Mon, 09 Jun 2008 09:51:08 +0000
+
 dpkg (1.14.19ubuntu1) intrepid; urgency=low
 
   * Resynchronise with Debian. Remaining changes:
diff -pruN 1.14.19ubuntu1/scripts/dpkg-source.pl 
1.14.19ubuntu2/scripts/dpkg-source.pl
--- 1.14.19ubuntu1/scripts/dpkg-source.pl       2008-05-27 13:07:55.000000000 
+0100
+++ 1.14.19ubuntu2/scripts/dpkg-source.pl       2008-06-09 10:50:53.000000000 
+0100
@@ -252,7 +252,7 @@ if ($options{'opmode'} eq 'build') {
     if (defined($fields->{Version}) and defined($fields->{Maintainer}) and
        $fields->{Version} =~ /ubuntu/) {
        if ($fields->{'Maintainer'} !~ /ubuntu/) {
-           if ($ENV{'DEBEMAIL'} =~ /ubuntu/) {
+           if (defined ($ENV{'DEBEMAIL'}) and $ENV{'DEBEMAIL'} =~ /ubuntu/) {
                error(_g('Version number suggests Ubuntu changes, but 
Maintainer: does not have Ubuntu address'));
            } else {
                warning(_g('Version number suggests Ubuntu changes, but 
Maintainer: does not have Ubuntu address'));

Reply via email to