gnu: r: Build default packages reproducibly.
This is a follow-up to commit de643f0c15
.
* gnu/packages/statistics.scm (r)[arguments]: Set the built timestamp for core
packages to the epoch; add phase "build-recommended-packages-reproducibly".
This commit is contained in:
parent
98d403bb45
commit
4621acfd82
|
@ -116,7 +116,9 @@ be output in text, PostScript, PDF or HTML.")
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
(list (string-append "LDFLAGS=-Wl,-rpath="
|
(list (string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/lib/R/lib"))
|
"/lib/R/lib")
|
||||||
|
;; This affects the embedded timestamp of only the core packages.
|
||||||
|
"PKG_BUILT_STAMP=1970-01-01")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'patch-uname
|
(add-before 'configure 'patch-uname
|
||||||
|
@ -126,8 +128,13 @@ be output in text, PostScript, PDF or HTML.")
|
||||||
(substitute* "src/scripts/R.sh.in"
|
(substitute* "src/scripts/R.sh.in"
|
||||||
(("uname") uname-bin)))
|
(("uname") uname-bin)))
|
||||||
#t))
|
#t))
|
||||||
(add-before
|
(add-after 'unpack 'build-recommended-packages-reproducibly
|
||||||
'configure 'set-default-pager
|
(lambda _
|
||||||
|
(substitute* "src/library/Recommended/Makefile.in"
|
||||||
|
(("INSTALL_OPTS =.*" line)
|
||||||
|
(string-append line " --built-timestamp=1970-01-01")))
|
||||||
|
#t))
|
||||||
|
(add-before 'configure 'set-default-pager
|
||||||
;; Set default pager to "cat", because otherwise it is "false",
|
;; Set default pager to "cat", because otherwise it is "false",
|
||||||
;; making "help()" print nothing at all.
|
;; making "help()" print nothing at all.
|
||||||
(lambda _ (setenv "PAGER" "cat") #t))
|
(lambda _ (setenv "PAGER" "cat") #t))
|
||||||
|
|
Loading…
Reference in New Issue