Source: qmail-run
Version: 2.0.2+nmu1
Severity: wishlist
Tags: patch
User: reproducible-builds@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org

Hi!

While working on the “reproducible builds” effort [1], we have noticed
that qmail-run could not be built reproducibly.

The attached patch sets the mtimes of all files which are modified
during the built to the date of the last changelog entry in order to
produce files with reproducible metadata. Please also consider this
other bug from the reproducible builds team:
https://bugs.debian.org/776952

Cheers,
akira

[1]: https://wiki.debian.org/ReproducibleBuilds

diff -Nru qmail-run-2.0.2+nmu1/debian/changelog 
qmail-run-2.0.2+nmu2/debian/changelog
--- qmail-run-2.0.2+nmu1/debian/changelog       2015-02-23 23:53:09.000000000 
+0100
+++ qmail-run-2.0.2+nmu2/debian/changelog       2015-07-25 13:56:28.000000000 
+0200
@@ -1,3 +1,10 @@
+qmail-run (2.0.2+nmu2) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix mtimes before building binary packages to produce reproducible output
+
+ -- akira <marival...@gmail.com>  Sat, 25 Jul 2015 13:56:17 +0200
+
 qmail-run (2.0.2+nmu1) unstable; urgency=medium
 
   * Non-maintainer upload with maintainer approval.
diff -Nru qmail-run-2.0.2+nmu1/debian/rules qmail-run-2.0.2+nmu2/debian/rules
--- qmail-run-2.0.2+nmu1/debian/rules   2015-02-20 09:31:37.000000000 +0100
+++ qmail-run-2.0.2+nmu2/debian/rules   2015-07-25 13:56:15.000000000 +0200
@@ -2,6 +2,8 @@
 
 DIR=$(shell pwd)/debian/qmail-run
 
+export SOURCE_DATE_EPOCH = $(shell date -d "$$(dpkg-parsechangelog --count 1 
-SDate)" +%s)
+
 build: deb-checkdir build-stamp
 build-stamp:
        touch build-stamp
@@ -36,6 +38,8 @@
 
 binary-indep: install qmail-run.deb
        dpkg-gencontrol -isp -pqmail-run -P'$(DIR)'
+       find '$(DIR)' -newermt "@$$SOURCE_DATE_EPOCH" -print0 | \
+               xargs -0r touch --no-dereference --date="@$$SOURCE_DATE_EPOCH"
        dpkg -b '$(DIR)' ..
 
 binary: binary-indep binary-arch

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Reply via email to