[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27593: [PATCH] gnu: groff: Make build reproducible.
From: |
Danny Milosavljevic |
Subject: |
bug#27593: [PATCH] gnu: groff: Make build reproducible. |
Date: |
Mon, 10 Jul 2017 18:37:04 +0200 |
* gnu/packages/groff.scm (groff)[arguments]: Add phase "setenv".
---
gnu/packages/groff.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm
index 67dd1dbfa..6e1a60e9b 100644
--- a/gnu/packages/groff.scm
+++ b/gnu/packages/groff.scm
@@ -56,7 +56,14 @@
("perl" ,perl)
("psutils" ,psutils)
("texinfo" ,texinfo)))
- (arguments '(#:parallel-build? #f)) ; parallel build fails
+ (arguments
+ `(#:parallel-build? #f ; parallel build fails
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'setenv
+ (lambda _
+ (setenv "GS_GENERATE_UUIDS" "0")
+ #t)))))
(synopsis "Typesetting from plain text mixed with formatting commands")
(description
"Groff is a typesetting package that reads plain text and produces
- bug#27593: groff build is not reproducible, Danny Milosavljevic, 2017/07/05
- bug#27593: [PATCH] gnu: groff: Remove timestamps., Danny Milosavljevic, 2017/07/05
- bug#27593: [PATCH v2] gnu: groff: Remove timestamps., Danny Milosavljevic, 2017/07/05
- bug#27593: [PATCH v2] gnu: groff: Remove timestamps., Marius Bakke, 2017/07/09
- bug#27593: [PATCH v2] gnu: groff: Remove timestamps., Ludovic Courtès, 2017/07/09
- bug#27593: [PATCH v3] gnu: groff: Remove timestamps., Danny Milosavljevic, 2017/07/09
- bug#27593: [PATCH v3] gnu: groff: Remove timestamps., Marius Bakke, 2017/07/09
- bug#27593: [PATCH v3] gnu: groff: Remove timestamps., Ludovic Courtès, 2017/07/10
- bug#27593: [PATCH v3] gnu: groff: Remove timestamps., Danny Milosavljevic, 2017/07/10
bug#27593: [PATCH] gnu: groff: Make build reproducible.,
Danny Milosavljevic <=