[Reproducible-builds] Bug#793726: taggrepper: please make the mtimes reproducible
Maria Valentina Marin
marivalenm at gmail.com
Sun Jul 26 17:54:29 UTC 2015
Source: taggrepper
Version: 0.05-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 taggrepper 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/777725
Cheers,
akira
[1]: https://wiki.debian.org/ReproducibleBuilds
-------------- next part --------------
diff -Nru taggrepper-0.05/debian/changelog taggrepper-0.05/debian/changelog
--- taggrepper-0.05/debian/changelog 2013-06-23 15:50:31.000000000 +0200
+++ taggrepper-0.05/debian/changelog 2015-07-26 10:42:29.000000000 +0200
@@ -1,3 +1,10 @@
+taggrepper (0.05-1.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix mtimes before building binary packages to produce reproducible output
+
+ -- akira <marivalenm at gmail.com> Sun, 26 Jul 2015 10:42:19 +0200
+
taggrepper (0.05-1) unstable; urgency=low
* Update autoconf files
diff -Nru taggrepper-0.05/debian/rules taggrepper-0.05/debian/rules
--- taggrepper-0.05/debian/rules 2013-06-23 15:48:35.000000000 +0200
+++ taggrepper-0.05/debian/rules 2015-07-26 10:42:16.000000000 +0200
@@ -8,6 +8,8 @@
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+export SOURCE_DATE_EPOCH = $(shell date -d "$$(dpkg-parsechangelog --count 1 -SDate)" +%s)
+
# Package name
PACKAGE_NAME = taggrepper
@@ -97,6 +99,8 @@
$(INSTALL_DIR) $(PACKAGE_DIR)/DEBIAN
cd $(PACKAGE_DIR) && find * -type f ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums
dpkg-gencontrol -p$(PACKAGE_NAME) -P$(PACKAGE_DIR)
+ find $(PACKAGE_DIR) -newermt "@$$SOURCE_DATE_EPOCH" -print0 | \
+ xargs -0r touch --no-dereference --date="@$$SOURCE_DATE_EPOCH"
dpkg-deb --build $(PACKAGE_DIR) ..
binary: binary-indep binary-arch
-------------- 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/363553ab/attachment.sig>
More information about the Reproducible-builds
mailing list