diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2015-02-07 16:23:22 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2015-02-07 16:23:22 +0100 |
commit | 0dc9a03cbd0520a5566fbb264741d221c7972904 (patch) | |
tree | 5a98c371282c909fd70a1c3d252091f440f449a9 | |
parent | 28ae35118f02ec971a376c878cb86743180f1859 (diff) | |
download | zsh-0dc9a03cbd0520a5566fbb264741d221c7972904.tar.gz zsh-0dc9a03cbd0520a5566fbb264741d221c7972904.zip |
Use faketime to get reproducible time stamps in PDF generation
Add build-dependency on faketime and bump build-dependency on dpkg-dev
to 1.17.0 for using "dpkg-parsechangelog -S".
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 47da1f33d..b552e335f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +zsh (5.0.7-6) UNRELEASED; urgency=medium + + * Use faketime to get reproducible time stamps in PDF generation. + + Add build-dependency on faketime. + + Bump b-d on dpkg-dev to 1.17.0 for using "dpkg-parsechangelog -S" + + -- Axel Beckert <abe@debian.org> Sat, 07 Feb 2015 15:07:58 +0100 + zsh (5.0.7-5) unstable; urgency=medium * [ab70e9dc] Pre-Depend on dpkg >= 1.17.14 explicitly for using diff --git a/debian/control b/debian/control index 6d4c197e5..2c352064a 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,8 @@ Build-Depends: autotools-dev, cm-super-minimal, debhelper (>= 9~), dh-autoreconf, - dpkg-dev (>= 1.16.2~), + dpkg-dev (>= 1.17.0~), + faketime, ghostscript, groff, groff-base, diff --git a/debian/rules b/debian/rules index 8408b9c1e..73113cda9 100755 --- a/debian/rules +++ b/debian/rules @@ -58,7 +58,7 @@ build-arch: configure-stamp touch $@ build-indep: configure-stamp - dh_auto_build -B obj --parallel -- pdf + faketime "`dpkg-parsechangelog -S date`" dh_auto_build -B obj --parallel -- pdf touch $@ build-static: configure-static-stamp |