diff -Nru dh-kpatches-0.99.36+nmu3/debian/changelog dh-kpatches-0.99.36+nmu4/debian/changelog --- dh-kpatches-0.99.36+nmu3/debian/changelog 2016-09-25 12:54:06.000000000 +0000 +++ dh-kpatches-0.99.36+nmu4/debian/changelog 2017-02-21 09:46:34.000000000 +0000 @@ -1,3 +1,12 @@ +dh-kpatches (0.99.36+nmu4) unstable; urgency=medium + + * Non-maintainer upload. + * Orphan package. See + + * Make make kernel builds reproducible. (Closes: #776941) + + -- Chris Lamb Tue, 21 Feb 2017 17:46:34 +0800 + dh-kpatches (0.99.36+nmu3) unstable; urgency=medium * Non-maintainer upload. diff -Nru dh-kpatches-0.99.36+nmu3/debian/control dh-kpatches-0.99.36+nmu4/debian/control --- dh-kpatches-0.99.36+nmu3/debian/control 2016-09-25 12:54:06.000000000 +0000 +++ dh-kpatches-0.99.36+nmu4/debian/control 2017-02-21 09:45:20.000000000 +0000 @@ -1,7 +1,7 @@ Source: dh-kpatches Section: devel Priority: extra -Maintainer: Yann Dirson +Maintainer: Debian QA Group Build-Depends: debhelper (>= 9) Build-Depends-Indep: docbook-utils, docbook, debiandoc-sgml, sgml2x (>= 1.0.0), openjade, gtk-doc-tools, nowebm, dh-buildinfo Standards-Version: 3.5.10 diff -Nru dh-kpatches-0.99.36+nmu3/dh-kpatches.nw dh-kpatches-0.99.36+nmu4/dh-kpatches.nw --- dh-kpatches-0.99.36+nmu3/dh-kpatches.nw 2005-06-08 22:40:11.000000000 +0000 +++ dh-kpatches-0.99.36+nmu4/dh-kpatches.nw 2017-02-21 09:46:34.000000000 +0000 @@ -963,14 +963,14 @@ $op->{'installed-diff-file'} = "$srcdir/" . basename($op->{'diff-file'}); doit ("cp", $op->{'diff-file'}, "$tmp$op->{'installed-diff-file'}"); -doit ("gzip", "-9fq", "$tmp$op->{'installed-diff-file'}"); +doit ("gzip", "-9fqn", "$tmp$op->{'installed-diff-file'}"); $op->{'installed-diff-file'} = "$op->{'installed-diff-file'}.gz" if -r "$tmp$op->{'installed-diff-file'}.gz"; if (defined $op->{'debian-diff-file'}) { $op->{'installed-debian-diff-file'} = "$srcdir/" . basename($op->{'debian-diff-file'}); doit ("cp", $op->{'debian-diff-file'}, "$tmp$op->{'installed-debian-diff-file'}"); - doit ("gzip", "-9fq", "$tmp$op->{'installed-debian-diff-file'}"); + doit ("gzip", "-9fqn", "$tmp$op->{'installed-debian-diff-file'}"); $op->{'installed-debian-diff-file'} = "$op->{'installed-debian-diff-file'}.gz" if -r "$tmp$op->{'installed-debian-diff-file'}.gz"; } else {