gnu: guile: Graft 2.0.13.
* gnu/packages/guile.scm (guile-2.0.13): New variable. (guile-2.0)[replacement]: New field. (guile-2.0/fixed)[properties, replacement]: New fields. (guile-next)[replacement]: New field. * gnu/packages/make-bootstrap.scm (%guile-static)[replacement]: New field.
This commit is contained in:
parent
3abd66aa0c
commit
c62a31ca80
|
@ -131,6 +131,7 @@ without requiring the source code to be rewritten.")
|
||||||
(package
|
(package
|
||||||
(name "guile")
|
(name "guile")
|
||||||
(version "2.0.12")
|
(version "2.0.12")
|
||||||
|
(replacement guile-2.0.13) ;CVE-2016-8606 and CVE-2016-8605
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/guile/guile-" version
|
(uri (string-append "mirror://gnu/guile/guile-" version
|
||||||
|
@ -198,12 +199,28 @@ without requiring the source code to be rewritten.")
|
||||||
(define-public guile-2.0/fixed
|
(define-public guile-2.0/fixed
|
||||||
;; A package of Guile 2.0 that's rarely changed. It is the one used
|
;; A package of Guile 2.0 that's rarely changed. It is the one used
|
||||||
;; in the `base' module, and thus changing it entails a full rebuild.
|
;; in the `base' module, and thus changing it entails a full rebuild.
|
||||||
guile-2.0)
|
(package
|
||||||
|
(inherit guile-2.0)
|
||||||
|
(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"))))))
|
||||||
|
|
||||||
(define-public guile-next
|
(define-public guile-next
|
||||||
(package (inherit guile-2.0)
|
(package (inherit guile-2.0)
|
||||||
(name "guile-next")
|
(name "guile-next")
|
||||||
(version "2.1.4")
|
(version "2.1.4")
|
||||||
|
(replacement #f)
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "ftp://alpha.gnu.org/gnu/guile/guile-"
|
(uri (string-append "ftp://alpha.gnu.org/gnu/guile/guile-"
|
||||||
|
|
|
@ -512,6 +512,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
||||||
(patches patches)))
|
(patches patches)))
|
||||||
(guile (package (inherit guile-2.0)
|
(guile (package (inherit guile-2.0)
|
||||||
(name (string-append (package-name guile-2.0) "-static"))
|
(name (string-append (package-name guile-2.0) "-static"))
|
||||||
|
(replacement #f)
|
||||||
(source source)
|
(source source)
|
||||||
(synopsis "Statically-linked and relocatable Guile")
|
(synopsis "Statically-linked and relocatable Guile")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue