Source: stx-btree Version: 0.9-1.1 Severity: wishlist Tags: patch User: [email protected] Usertags: timestamps
Hi, While working on the “reproducible builds” effort [1], we have noticed that stx-btree could not be built reproducibly. The attached patch overwrites the HTML_TIMESTAMP setting in Doxyfile from YES to NO. Once applied stx-btree can be built reproducibly in our current experimental framework. Cheers! akira [1]: https://wiki.debian.org/ReproducibleBuilds
diff -Nru stx-btree-0.9/debian/changelog stx-btree-0.9/debian/changelog --- stx-btree-0.9/debian/changelog 2014-03-17 22:31:53.000000000 +0100 +++ stx-btree-0.9/debian/changelog 2015-06-26 11:56:29.000000000 +0200 @@ -1,3 +1,10 @@ +stx-btree (0.9-1.2) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Modified debian/rules to set HTML_TIMESTAMP=NO for doxygen to make the package reproducible + + -- akira <[email protected]> Fri, 26 Jun 2015 11:55:07 +0200 + stx-btree (0.9-1.1) unstable; urgency=low * Non-maintainer upload. diff -Nru stx-btree-0.9/debian/rules stx-btree-0.9/debian/rules --- stx-btree-0.9/debian/rules 2014-01-25 06:46:10.000000000 +0100 +++ stx-btree-0.9/debian/rules 2015-06-26 11:55:00.000000000 +0200 @@ -11,7 +11,7 @@ override_dh_auto_build: dh_auto_build - doxygen + { cat Doxyfile && echo "HTML_TIMESTAMP=NO"; } | doxygen - %: dh $@ --with autoreconf

