Your message dated Thu, 19 Jan 2017 09:11:04 +0200 with message-id <20170119071104.acergzs52f4nivkv@localhost> and subject line This is now handled automatically by dpkg >= 1.18.8 has caused the Debian Bug report #793000, regarding beav: please make the mtimes reproducible to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 793000: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793000 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Source: beav Version: 1:1.40-18 Severity: wishlist Tags: patch User: [email protected] Usertags: timestamps X-Debbugs-Cc: [email protected] Hi! While working on the “reproducible builds” effort [1], we have noticed that beav 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/ReproducibleBuildsdiff -u beav-1.40/debian/rules beav-1.40/debian/rules --- beav-1.40/debian/rules +++ beav-1.40/debian/rules @@ -7,6 +7,8 @@ ARCH = $(shell dpkg --print-installation-architecture) STRIP=strip --strip-unneeded --remove-section=.note --remove-section=.comment +BUILD_DATE := $(shell dpkg-parsechangelog --show-field Date) + build: # Builds the binary package. make CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" @@ -40,6 +42,8 @@ dpkg-gencontrol -isp chown -R root.root debian/tmp chmod -R g-ws debian/tmp + find debian/tmp -newermt '$(BUILD_DATE)' -print0 | \ + xargs -0r touch --no-dereference --date='$(BUILD_DATE)' dpkg --build debian/tmp .. binary: binary-indep binary-arch diff -u beav-1.40/debian/changelog beav-1.40/debian/changelog --- beav-1.40/debian/changelog +++ beav-1.40/debian/changelog @@ -1,3 +1,10 @@ +beav (1:1.40-18.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix mtimes before building binary packages to produce reproducible output + + -- akira <[email protected]> Thu, 16 Jul 2015 20:58:48 +0200 + beav (1:1.40-18) unstable; urgency=low * Repackaged with the original 1.40 source so that we get a proper diff.gz.
--- End Message ---
--- Begin Message ---This is now handled automatically by dpkg >= 1.18.8, see #759886 for details. cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed
--- End Message ---

