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, 11 Feb 2008 23:41:04 +0100
Source: dpkg
Binary: dpkg dselect dpkg-dev
Architecture: source
Version: 1.14.16.6ubuntu2
Distribution: hardy
Urgency: low
Maintainer: Ubuntu Core Developers <[EMAIL PROTECTED]>
Changed-By: Soren Hansen <[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.14.16.6ubuntu2) hardy; urgency=low
 .
   * Fix wrong call to open in Dpkg/Control.pm that makes using a different
     control file than debian/control fail horribly.
   * Pass NO_PKG_MANGLE environment variable to dh_strip to make this package
     not ftbfs. When this is built, published and in the buildd's, we'll
     reupload without this to regenerate dpkg-dbgsym and such.
Files: 
 f1c2e90870d4ed4adcc0bcdd52c3cd18 1157 admin required dpkg_1.14.16.6ubuntu2.dsc
 f4924e48361526d1305698f554e744a2 6373835 admin required 
dpkg_1.14.16.6ubuntu2.tar.gz
Original-Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org>
diff -pruN 1.14.16.6ubuntu1/debian/changelog 1.14.16.6ubuntu2/debian/changelog
--- 1.14.16.6ubuntu1/debian/changelog   2008-02-11 15:44:45.000000000 +0000
+++ 1.14.16.6ubuntu2/debian/changelog   2008-02-11 22:41:15.000000000 +0000
@@ -1,3 +1,13 @@
+dpkg (1.14.16.6ubuntu2) hardy; urgency=low
+
+  * Fix wrong call to open in Dpkg/Control.pm that makes using a different
+    control file than debian/control fail horribly.
+  * Pass NO_PKG_MANGLE environment variable to dh_strip to make this package
+    not ftbfs. When this is built, published and in the buildd's, we'll
+    reupload without this to regenerate dpkg-dbgsym and such.
+
+ -- Soren Hansen <[EMAIL PROTECTED]>  Mon, 11 Feb 2008 23:41:04 +0100
+
 dpkg (1.14.16.6ubuntu1) hardy; urgency=low
 
   [ Soren Hansen ]
diff -pruN 1.14.16.6ubuntu1/debian/rules 1.14.16.6ubuntu2/debian/rules
--- 1.14.16.6ubuntu1/debian/rules       2008-01-27 10:40:18.000000000 +0000
+++ 1.14.16.6ubuntu2/debian/rules       2008-02-11 22:37:29.000000000 +0000
@@ -93,7 +93,7 @@ binary-arch: install
        install -m 644 debian/dselect.lintian-overrides \
                       debian/dselect/usr/share/lintian/overrides/dselect
 
-       dh_strip -a
+       NO_PKG_MANGLE=1 dh_strip -a
        dh_compress -a
        dh_fixperms -a
        dh_installdeb -a
diff -pruN 1.14.16.6ubuntu1/scripts/Dpkg/Control.pm 
1.14.16.6ubuntu2/scripts/Dpkg/Control.pm
--- 1.14.16.6ubuntu1/scripts/Dpkg/Control.pm    2008-01-18 10:12:53.000000000 
+0000
+++ 1.14.16.6ubuntu2/scripts/Dpkg/Control.pm    2008-02-11 22:20:11.000000000 
+0000
@@ -78,7 +78,7 @@ sub parse {
     my ($self, $file) = @_;
     $self->reset();
     # Parse
-    open(CDATA, "<", $file) || syserr(_g("cannot read %s"), $file);
+    open(CDATA, "< $file") || syserr(_g("cannot read %s"), $file);
     my $cdata = parsecdata(\*CDATA, $file);
     return if not defined $cdata;
     $self->{source} = $cdata;

Reply via email to