gnu: r-with-tests: Work around reproducibility problem.

Fixes <https://bugs.gnu.org/35441>.

* gnu/packages/statistics.scm (r-with-tests)[arguments]: Avoid reproducibility
problem by patching problematic sequence of characters in DESCRIPTION file
template.
This commit is contained in:
Ricardo Wurmus 2020-10-19 23:43:16 +02:00
parent 615ee12e64
commit 79624befa1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -269,6 +269,15 @@ (define r-with-tests
(substitute* "tools/help2man.pl"
(("my \\$date = strftime \"%B %Y\", localtime" line)
(string-append line " 1"))))
;; The "References" section of this file when converted to
;; package.rds is sometimes stored with a newline, sometimes with
;; a space. We avoid this problem by adding characters to break
;; up the series of line break and spaces that is suspected to be
;; the culprit.
(substitute* "src/library/methods/DESCRIPTION.in"
((" ``Software")
" -- ``Software"))
#t))
(add-before 'build 'set-locales
(lambda _