[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28015] [PATCH] Reproducible issue for djvulibre
From: |
Ludovic Courtès |
Subject: |
[bug#28015] [PATCH] Reproducible issue for djvulibre |
Date: |
Tue, 22 Aug 2017 14:55:44 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
"Z. Ren" <address@hidden> skribis:
> --- a/gnu/packages/djvu.scm
> +++ b/gnu/packages/djvu.scm
> @@ -34,6 +34,13 @@
> (base32
> "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6"))))
> (build-system gnu-build-system)
> + (arguments
> + `(#:phases
> + (modify-phases %standard-phases
> + (add-after 'unpack 'reproducible
> + (lambda _
> + (substitute* "desktopfiles/Makefile.in"
> + (("gzip") "gzip -n")))))))
In the ‘core-updates’ branch, which is about to be merged, this should
be unnecessary because there’s an extra ‘reset-gzip-timestamps’ phase
that has the same effect (for files whose name ends in “.gz” or “.tgz”,
which I assume is the case?
Thanks,
Ludo’.