Source: ebook-speaker Version: 4.1.0-1 Severity: minor Tags: patch upstream User: [email protected] Usertags: buildpath
Dear Maintainer, Whilst working on the Reproducible Builds effort [0], we noticed that ebook-speaker could not be built reproducibly, due to `txt2man -p` parsing the last component of the build directory. Patch attached. [0] https://reproducible-builds.org/ Cheers, Daniel P.S. The patch as written is upstreamable. For Debian it might make sense to use «$$(cd .. && dpkg-parsechangelog -SVersion)» so as to have a more detailed version number. [[[ diff --git a/debian/patches/build-path-agnostic.diff b/debian/patches/build-path-agnostic.diff new file mode 100644 index 0000000..5d547f3 --- /dev/null +++ b/debian/patches/build-path-agnostic.diff @@ -0,0 +1,19 @@ +Description: Make the build reproducible + Avoid 'txt2man -p' because it parses the build path. +Bug-Debian: https://bugs.debian.org/-1 +Last-Update: 2016-11-13 + +--- a/man/Makefile.am ++++ b/man/Makefile.am +@@ -3,7 +3,10 @@ + all: eBook-speaker + + eBook-speaker: +- @which txt2man > /dev/null && txt2man -p ${srcdir}/../doc/[email protected] > \ ++ @which txt2man > /dev/null && txt2man \ ++ -t 'eBook-speaker' -s 1 -v "Linux Reference Manual" \ ++ -r "ebook-speaker-$(VERSION)" \ ++ ${srcdir}/../doc/[email protected] > \ + ${srcdir}/[email protected] + @file ${srcdir}/[email protected] && \ + man2html ${srcdir}/[email protected] | tail -n +3 > ${srcdir}/../doc/[email protected] diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..222072b --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +build-path-agnostic.diff ]]]

