[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: maint: Avoid EPS generation to fail silently, ensure reproducibil
From: |
guix-commits |
Subject: |
10/13: maint: Avoid EPS generation to fail silently, ensure reproducibility. |
Date: |
Sun, 14 Apr 2024 04:39:19 -0400 (EDT) |
janneke pushed a commit to branch master
in repository guix.
commit 4099b12f9f4561d0494c7765b484b53d9073b394
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Apr 6 11:34:49 2024 +0200
maint: Avoid EPS generation to fail silently, ensure reproducibility.
Currently, Graphviz' dot does not insert a %%CreationDate. ImageMagick's
convert on PNG->EPS does insert a %%CreationDate but it respects
SOURCE_DATE_EPOCH.
* doc/local.mk (.png.eps): Split single shell command into separate recipe
lines, prefixed by $(AM_V_at).
(.dot.png): Likewise. Check that generated EPS file has no %%CreationDate.
Change-Id: I5a03485c19c72f0c46411815c51290e52a8e5399
---
doc/local.mk | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/doc/local.mk b/doc/local.mk
index 6a6864a7f0..19359760cc 100644
--- a/doc/local.mk
+++ b/doc/local.mk
@@ -152,12 +152,13 @@ DOT_OPTIONS = \
mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
.dot.eps:
- $(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
- mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
+ $(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"
+ $(AM_v_at)! grep -q %%CreationDate "$(srcdir)/$@.tmp"
+ $(AM_V_at)mv "$(srcdir)/$@.tmp" "$@"
.png.eps:
- $(AM_V_GEN)convert "$<" "$@-tmp.eps"; \
- mv "$@-tmp.eps" "$@"
+ $(AM_V_GEN)convert "$<" "$@-tmp.eps"
+ $(AM_V_at)mv "$@-tmp.eps" "$@"
# We cannot add new dependencies to `%D%/guix.pdf' & co. (info "(automake)
# Extending"). Using the `-local' rules is imperfect, because they may be
- 04/13: maint: Generate 'doc/version.texi' reproducibly., (continued)
- 04/13: maint: Generate 'doc/version.texi' reproducibly., guix-commits, 2024/04/14
- 07/13: maint: Generate 'doc/version-LANG.texi' reproducibly., guix-commits, 2024/04/14
- 11/13: maint: Avoid PNG and PDF generation to fail silently., guix-commits, 2024/04/14
- 12/13: maint: Reset CreationDate metadata on generated PDFs., guix-commits, 2024/04/14
- 13/13: maint: Ensure generated file reproducibility for dist., guix-commits, 2024/04/14
- 02/13: maint: Cater for running `make dist' from a worktree., guix-commits, 2024/04/14
- 05/13: maint: Help help2man generate reproducible man-pages., guix-commits, 2024/04/14
- 06/13: maint: Generate AUTHORS and ChangeLog reproducibly., guix-commits, 2024/04/14
- 08/13: maint: Use xgettext.scm wrapper to create .PO files reproducibly., guix-commits, 2024/04/14
- 01/13: doc: Use "dejavu sans" instead of "Helvetica" or "sans" in dot images., guix-commits, 2024/04/14
- 10/13: maint: Avoid EPS generation to fail silently, ensure reproducibility.,
guix-commits <=
- 03/13: maint: Use reproducible timestamps and name for tarball., guix-commits, 2024/04/14
- 09/13: maint: Use reproducible Git timestamp for POT-Creation-Date., guix-commits, 2024/04/14