[Reproducible-builds] Bug#792967: fgetty: please make the build reproducible

Maria Valentina Marin marivalenm at gmail.com
Mon Jul 20 11:24:22 UTC 2015


Source: fgetty
Version: 0.6-5
Severity: wishlist
Tags: patch
User: reproducible-builds at lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-builds at lists.alioth.debian.org

Hi!

While working on the “reproducible builds” effort [1], we have noticed
that fgetty 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.

Cheers,
akira

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


-------------- next part --------------
diff -u fgetty-0.6/debian/changelog fgetty-0.6/debian/changelog
--- fgetty-0.6/debian/changelog
+++ fgetty-0.6/debian/changelog
@@ -1,3 +1,10 @@
+fgetty (0.6-5.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix mtimes before building binary packages to produce reproducible output
+
+ -- akira <marivalenm at gmail.com>  Fri, 17 Jul 2015 22:13:05 +0200
+
 fgetty (0.6-5) unstable; urgency=low
 
   * debian/implicit: add proper dependencies to support 'parallel build'
diff -u fgetty-0.6/debian/rules fgetty-0.6/debian/rules
--- fgetty-0.6/debian/rules
+++ fgetty-0.6/debian/rules
@@ -8,6 +8,8 @@
 
 DIR =$(shell pwd)/debian/fgetty
 
+BUILD_DATE := $(shell dpkg-parsechangelog --show-field Date)
+
 patch: deb-checkdir patch-stamp
 patch-stamp:
 	for i in `ls -1 debian/diff/*.diff || :`; do \
@@ -55,6 +57,8 @@
 
 binary-arch: install fgetty.deb
 	dpkg-gencontrol -isp -pfgetty -P'$(DIR)'
+	find '$(DIR)' -newermt '$(BUILD_DATE)' -print0 | \
+		xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
 	dpkg -b '$(DIR)' ..
 
 binary: binary-indep binary-arch


More information about the Reproducible-builds mailing list