[Reproducible-builds] Bug#793695: libtnt: please make the mtimes reproducible

Maria Valentina Marin marivalenm at gmail.com
Sun Jul 26 17:35:29 UTC 2015


Source: libtnt
Version: 1.2.6-1
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 libtnt 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/777428

Cheers,
akira

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

-------------- next part --------------
diff -u libtnt-1.2.6/debian/changelog libtnt-1.2.6/debian/changelog
--- libtnt-1.2.6/debian/changelog
+++ libtnt-1.2.6/debian/changelog
@@ -1,3 +1,10 @@
+libtnt (1.2.6-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix mtimes before building binary packages to produce reproducible output
+
+ -- akira <marivalenm at gmail.com>  Fri, 24 Jul 2015 11:15:13 +0200
+
 libtnt (1.2.6-1) unstable; urgency=low
 
   * New upstream release.
diff -u libtnt-1.2.6/debian/rules libtnt-1.2.6/debian/rules
--- libtnt-1.2.6/debian/rules
+++ libtnt-1.2.6/debian/rules
@@ -4,6 +4,8 @@
 
 binary: binary-arch binary-indep
 
+export SOURCE_DATE_EPOCH = $(shell date -d "$$(dpkg-parsechangelog --count 1 -SDate)" +%s)
+
 binary-indep: build
 	$(checkdir)
 	-rm -rf debian/tmp
@@ -23,6 +25,8 @@
 	chmod 644 debian/tmp/usr/share/doc/libtnt-dev/html-tnt.tar.gz
 
 	dpkg-gencontrol -isp
+	find debian/tmp -newermt "@$$SOURCE_DATE_EPOCH" -print0 | \
+		xargs -0r touch --no-dereference --date="@$$SOURCE_DATE_EPOCH"
 	dpkg --build debian/tmp ..
 
 build:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <http://lists.alioth.debian.org/pipermail/reproducible-builds/attachments/20150726/499f4cfe/attachment.sig>


More information about the Reproducible-builds mailing list