diff -Nru mdbtools-0.7.1/debian/changelog mdbtools-0.7.1/debian/changelog --- mdbtools-0.7.1/debian/changelog 2014-11-26 14:48:29.000000000 +0000 +++ mdbtools-0.7.1/debian/changelog 2015-04-27 10:16:17.000000000 +0000 @@ -1,3 +1,14 @@ +mdbtools (0.7.1-4) unstable; urgency=medium + + * Make builds reproducible: + - d/rules: New env var with changelog date. + - patch "reproducible_builds" to use that date in man pages. + * d/control: Update Vcs-Browser to match alioth changes. + * debian/patches/bin_output_fix: Fix typo in description. Thanks Adam + D. Barratt. + + -- Jean-Michel Nirgal Vourgère Mon, 27 Apr 2015 12:16:11 +0200 + mdbtools (0.7.1-3) unstable; urgency=low * d/control: Update homepage address. (Closes: #770933) diff -Nru mdbtools-0.7.1/debian/control mdbtools-0.7.1/debian/control --- mdbtools-0.7.1/debian/control 2014-11-26 14:42:23.000000000 +0000 +++ mdbtools-0.7.1/debian/control 2015-03-15 22:21:50.000000000 +0000 @@ -28,7 +28,7 @@ Standards-Version: 3.9.6 Homepage: https://github.com/brianb/mdbtools Vcs-Git: git://anonscm.debian.org/collab-maint/mdbtools.git -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/mdbtools.git +Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/mdbtools.git Package: mdbtools Architecture: any diff -Nru mdbtools-0.7.1/debian/patches/bin_output_fix mdbtools-0.7.1/debian/patches/bin_output_fix --- mdbtools-0.7.1/debian/patches/bin_output_fix 2014-10-20 08:57:01.000000000 +0000 +++ mdbtools-0.7.1/debian/patches/bin_output_fix 2015-03-15 22:22:20.000000000 +0000 @@ -1,4 +1,4 @@ -Description: Fix binary outout +Description: Fix binary outpout Author: tyzhaoqi Last-Update: 2014-07-24 Reviewed-by: Jean-Michel Vourgère diff -Nru mdbtools-0.7.1/debian/patches/reproducible_builds mdbtools-0.7.1/debian/patches/reproducible_builds --- mdbtools-0.7.1/debian/patches/reproducible_builds 1970-01-01 00:00:00.000000000 +0000 +++ mdbtools-0.7.1/debian/patches/reproducible_builds 2015-03-15 22:21:50.000000000 +0000 @@ -0,0 +1,18 @@ +Description: Patch to make builds reproducibles +Author: Jean-Michel Nirgal Vourgère +Forwarded: no +Last-Update: 2015-03-06 + +Index: mdbtools/doc/Makefile.am +=================================================================== +--- mdbtools.orig/doc/Makefile.am ++++ mdbtools/doc/Makefile.am +@@ -17,7 +17,7 @@ EXTRA_DIST = mdb-tables.txt mdb-ver.txt + faq.html install.sgml + + .txt.1: +- $(TXT2MAN) -t $* -r "$(PRODUCT) $(VERSION)" -s 1 -v "Executable programs or shell commands" $(srcdir)/$< > $@ ++ $(TXT2MAN) -d "`date -d '$(CHANGELOG_DATE)' -u "+%d %B %Y"`" -t $* -r "$(PRODUCT) $(VERSION)" -s 1 -v "Executable programs or shell commands" $(srcdir)/$< > $@ + + # Converting DocBook to HTML (several small files) + # http://www.freebsd.org/tutorials/docproj-primer/x3132.html#AEN3140 diff -Nru mdbtools-0.7.1/debian/patches/series mdbtools-0.7.1/debian/patches/series --- mdbtools-0.7.1/debian/patches/series 2014-10-20 10:13:38.000000000 +0000 +++ mdbtools-0.7.1/debian/patches/series 2015-03-15 22:21:50.000000000 +0000 @@ -1,4 +1,5 @@ 01_use_lib_odbc_dir +reproducible_builds use_common_license gnome-doc memo_zero_len_multipage diff -Nru mdbtools-0.7.1/debian/rules mdbtools-0.7.1/debian/rules --- mdbtools-0.7.1/debian/rules 2014-10-20 10:03:29.000000000 +0000 +++ mdbtools-0.7.1/debian/rules 2015-03-15 22:21:50.000000000 +0000 @@ -1,6 +1,7 @@ #!/usr/bin/make -f DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) export DOCBOOK_DSL=/usr/share/sgml/docbook/stylesheet/dsssl/modular/html/docbook.dsl +export CHANGELOG_DATE=$(shell dpkg-parsechangelog -S date) %: dh $@ --with autoreconf --with bash-completion