diff options
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index e345c1f0e7..96fc84a960 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -137,15 +137,14 @@ without requiring the source code to be rewritten.") (define-public guile-2.0 (package (name "guile") - (version "2.0.12") - (replacement guile-2.0.13) ;CVE-2016-8606 and CVE-2016-8605 + (version "2.0.14") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/guile/guile-" version ".tar.xz")) (sha256 (base32 - "1sdpjq0jf1h65w29q0zprj4x6kdp5jskkvbnlwphy9lvdxrqg0fy")))) + "10lxc6l5alf3lzbs3ihnbfy6dfcrsyf8667wa57f26vf4mk2ai78")))) (build-system gnu-build-system) (native-inputs `(("pkgconfig" ,pkg-config))) (inputs `(("libffi" ,libffi) @@ -218,19 +217,6 @@ without requiring the source code to be rewritten.") (properties '((hidden? . #t))) ;people should install 'guile-2.0' (replacement #f))) -(define guile-2.0.13 - (package - (inherit guile-2.0) - (version "2.0.13") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/guile/guile-" version - ".tar.xz")) - (sha256 - (base32 - "12yqkr974y91ylgw6jnmci2v90i90s7h9vxa4zk0sai8vjnz4i1p")) - (patches (search-patches "guile-repl-server-test.patch")))))) - (define-public guile-2.2 (package (inherit guile-2.0) (name "guile") @@ -458,7 +444,7 @@ more.") "0592s2s8ampqmqwilc4fvcild6rb9gy79di6vxv5kcdmv23abkgx")))) (build-system gnu-build-system) (native-inputs `(("pkgconfig" ,pkg-config) - ("gperf" ,gperf))) + ("gperf" ,gperf-3.0))) (inputs `(("guile" ,guile-2.2))) (synopsis "Framework for building readers for GNU Guile") (description @@ -1721,6 +1707,11 @@ is not available for Guile 2.0.") '(#:phases (modify-phases %standard-phases (add-after 'unpack 'bootstrap (lambda _ + ;; Install .go files to "site-ccache", not "ccache". + (substitute* "Makefile.am" + (("/ccache") + "/site-ccache")) + (zero? (system* "autoreconf" "-vfi"))))))) (native-inputs `(("autoconf" ,autoconf) |