Your message dated Mon, 28 Dec 2015 19:43:52 +0000
with message-id <[email protected]>
and subject line Bug#746741: Removed package(s) from unstable
has caused the Debian Bug report #775786,
regarding python-support: unsorted file lists
/usr/share/python-support/$package.private
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
775786: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775786
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: python-support
Version: 1.0.15
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: toolchain fileordering
Hi!
While working on the “reproducible builds” effort [1], we have
noticed that dh_pysupport does not sort the files listed in
/usr/share/python-support/$package.private.
Packages including these files are slightly different on each
build.
The attached patch is sorting the file list before it is written.
Regards,
Reiner
[1]: https://wiki.debian.org/ReproducibleBuilds
diff --git a/debhelper/dh_pysupport b/debhelper/dh_pysupport
index 606510c..56f7b59 100644
--- a/debhelper/dh_pysupport
+++ b/debhelper/dh_pysupport
@@ -303,7 +303,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if ( $useversion ) {
print FILELIST "pyversion=$useversion\n\n";
}
- print FILELIST map "$_\n", @filelist;
+ print FILELIST map "$_\n", sort @filelist;
close(FILELIST);
$do_scripts = "$do_scripts $package.private";
}
diff --git a/debian/changelog b/debian/changelog
index b55737b..d48009e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-support (1.0.15+reproducible1) UNRELEASED; urgency=low
+
+ * dh_pysupport: sort list of files written into package.private.
+
+ -- Reiner Herrmann <[email protected]> Mon, 19 Jan 2015 20:08:11 +0100
+
python-support (1.0.15) unstable; urgency=low
[ Jakub Wilk ]
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Version: 1.0.15+rm
Dear submitter,
as the package python-support has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/746741
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Chris Lamb (the ftpmaster behind the curtain)
--- End Message ---