diff options
author | Leo Famulari <leo@famulari.name> | 2017-11-03 08:07:32 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-11-04 10:32:30 -0400 |
commit | f9c3bd2e0183b777ad3794674a360222c62633b0 (patch) | |
tree | d06789f2ef227b11d9144486569d159a4f95c6e9 /gnu/packages/perl.scm | |
parent | 232ffa842d0c14bccf16ae5aa26537148ad021bd (diff) | |
download | patches-f9c3bd2e0183b777ad3794674a360222c62633b0.tar patches-f9c3bd2e0183b777ad3794674a360222c62633b0.tar.gz |
gnu: Generalize the variable name of the test-only tzdata package.
* gnu/packages/base.scm (tzdata-2017a): Rename variable to tzdata-for-tests.
* gnu/packages/calcurse.scm (calcurse)[native-inputs, arguments]: Adjust
accordingly.
gnu/packages/glib.scm (glib): Likewise.
* gnu/packages/perl.scm (perl-libtime-parsedate): Adjust accordingly and
add tzdata-for-tests #:disallowed-references.
* gnu/packages/statistics.scm (r-minimal): Adjust accordingly.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 196541a2e3..67c15146f9 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -9841,7 +9841,8 @@ in Perl source files.") (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic")))) (build-system perl-build-system) (arguments - `(#:phases + `(#:disallowed-references (,tzdata-for-tests) + #:phases (modify-phases %standard-phases ;; This is needed for tests (add-after 'unpack 'set-TZDIR @@ -9851,7 +9852,7 @@ in Perl source files.") #t))))) (native-inputs `(("perl-module-build" ,perl-module-build) - ("tzdata" ,tzdata-2017a))) + ("tzdata" ,tzdata-for-tests))) (home-page "https://metacpan.org/release/Time-ParseDate") (synopsis "Collection of Perl modules for time/date manipulation") (description "Provides several perl modules for date/time manipulation: |