r3023 - in zope-debhelper/trunk (3 files)
arnau at users.alioth.debian.org
arnau at users.alioth.debian.org
Mon Aug 22 06:56:54 UTC 2016
Date: Monday, August 22, 2016 @ 06:56:52
Author: arnau
Revision: 3023
Make builds reproducible for packages using dh_installzope*. Thanks to Chris Lamb. Closes: #776619.
Modified:
zope-debhelper/trunk/debian/changelog
zope-debhelper/trunk/dh_installzope
zope-debhelper/trunk/dh_installzopeinstance
Modified: zope-debhelper/trunk/debian/changelog
===================================================================
--- zope-debhelper/trunk/debian/changelog 2016-08-03 15:40:51 UTC (rev 3022)
+++ zope-debhelper/trunk/debian/changelog 2016-08-22 06:56:52 UTC (rev 3023)
@@ -2,8 +2,10 @@
* ignore .pc directory (3.0 (quilt) source format) when specifying the
current directory with dh_installzope.
+ * Make builds reproducible for packages using dh_installzope*. Thanks to
+ Chris Lamb. Closes: #776619.
- -- Arnaud Fontaine <arnau at debian.org> Mon, 31 Oct 2011 23:17:34 +0900
+ -- Arnaud Fontaine <arnau at debian.org> Mon, 22 Aug 2016 15:54:08 +0900
zope-debhelper (0.3.15) unstable; urgency=low
Modified: zope-debhelper/trunk/dh_installzope
===================================================================
--- zope-debhelper/trunk/dh_installzope 2016-08-03 15:40:51 UTC (rev 3022)
+++ zope-debhelper/trunk/dh_installzope 2016-08-22 06:56:52 UTC (rev 3023)
@@ -117,7 +117,7 @@
my ($fn, %fields) = @_;
my ($out) = "";
open (DZ, ">$fn") || error("cannot write $fn: $!\n");
- foreach (keys %fields) {
+ foreach (sort keys %fields) {
$out = "$_: $fields{$_}\n" . $out;
}
print DZ $out;
Modified: zope-debhelper/trunk/dh_installzopeinstance
===================================================================
--- zope-debhelper/trunk/dh_installzopeinstance 2016-08-03 15:40:51 UTC (rev 3022)
+++ zope-debhelper/trunk/dh_installzopeinstance 2016-08-22 06:56:52 UTC (rev 3023)
@@ -94,7 +94,7 @@
my ($fn, %fields) = @_;
my ($out) = "";
open (DZ, ">$fn") || error("cannot write $fn: $!\n");
- foreach (keys %fields) {
+ foreach (sort keys %fields) {
$out = "$_: $fields{$_}\n" . $out;
}
print DZ $out;
More information about the pkg-zope-developers
mailing list