gnu: gnutls: Update to 3.6.15.
* gnu/packages/tls.scm (gnutls): Update to 3.6.15. [replacement]: Remove. (gnutls-3.6.14): Remove. * gnu/packages/vpn.scm (openconnect)[inputs]: Adjust accordingly. * gnu/packages/package-management.scm (guix)[propagated-inputs]: Likewise.
This commit is contained in:
parent
a83860cd22
commit
0e54d63dfa
3 changed files with 4 additions and 26 deletions
|
@ -384,7 +384,7 @@ $(prefix)/etc/init.d\n")))
|
||||||
|
|
||||||
("glibc-utf8-locales" ,glibc-utf8-locales)))
|
("glibc-utf8-locales" ,glibc-utf8-locales)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("gnutls" ,(if (%current-target-system) gnutls-3.6.14 guile3.0-gnutls))
|
`(("gnutls" ,gnutls)
|
||||||
("guile-gcrypt" ,guile-gcrypt)
|
("guile-gcrypt" ,guile-gcrypt)
|
||||||
("guile-json" ,guile-json-4)
|
("guile-json" ,guile-json-4)
|
||||||
("guile-sqlite3" ,guile-sqlite3)
|
("guile-sqlite3" ,guile-sqlite3)
|
||||||
|
|
|
@ -167,9 +167,7 @@ living in the same process.")
|
||||||
(define-public gnutls
|
(define-public gnutls
|
||||||
(package
|
(package
|
||||||
(name "gnutls")
|
(name "gnutls")
|
||||||
;; XXX Unversion openconnect's "gnutls" input when ungrafting.
|
(version "3.6.15")
|
||||||
(replacement gnutls-3.6.14)
|
|
||||||
(version "3.6.12")
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -181,7 +179,7 @@ living in the same process.")
|
||||||
(patches (search-patches "gnutls-skip-trust-store-test.patch"))
|
(patches (search-patches "gnutls-skip-trust-store-test.patch"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0jvca1qahn9lrwv6f5kfs95icirc15b2a8x9fzczyj996ipg3b5z"))))
|
"0n0m93ymzd0q9hbknxc2ycanz49sqlkyyf73g9fk7n787llc7a0f"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? ,(not (hurd-target?))
|
`(#:tests? ,(not (hurd-target?))
|
||||||
|
@ -269,26 +267,6 @@ required structures.")
|
||||||
(properties '((ftp-server . "ftp.gnutls.org")
|
(properties '((ftp-server . "ftp.gnutls.org")
|
||||||
(ftp-directory . "/gcrypt/gnutls")))))
|
(ftp-directory . "/gcrypt/gnutls")))))
|
||||||
|
|
||||||
(define-public gnutls-3.6.14
|
|
||||||
(package
|
|
||||||
(inherit gnutls)
|
|
||||||
(version "3.6.14")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://gnupg/gnutls/v"
|
|
||||||
(version-major+minor version)
|
|
||||||
"/gnutls-" version ".tar.xz"))
|
|
||||||
(patches (search-patches "gnutls-skip-trust-store-test.patch"
|
|
||||||
"gnutls-cross.patch"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0qwxsfizynly0ns537vnhnlm5lh03la4vbsmz675n0n7vqd7ac2n"))))
|
|
||||||
(native-inputs
|
|
||||||
`(,@(if (%current-target-system) ;for cross-build
|
|
||||||
`(("guile" ,guile-3.0)) ;to create .go files
|
|
||||||
'())
|
|
||||||
,@(package-native-inputs gnutls)))))
|
|
||||||
|
|
||||||
(define-public gnutls/guile-2.0
|
(define-public gnutls/guile-2.0
|
||||||
;; GnuTLS for Guile 2.0.
|
;; GnuTLS for Guile 2.0.
|
||||||
(package/inherit gnutls
|
(package/inherit gnutls
|
||||||
|
|
|
@ -265,7 +265,7 @@ the user specifically asks to proxy, so the @dfn{VPN} interface no longer
|
||||||
`(("libxml2" ,libxml2)
|
`(("libxml2" ,libxml2)
|
||||||
;; XXX ‘DTLS is insecure in GnuTLS v3.6.3 through v3.6.12.’
|
;; XXX ‘DTLS is insecure in GnuTLS v3.6.3 through v3.6.12.’
|
||||||
;; See <https://gitlab.com/gnutls/gnutls/-/issues/960>.
|
;; See <https://gitlab.com/gnutls/gnutls/-/issues/960>.
|
||||||
("gnutls" ,gnutls-3.6.14)
|
("gnutls" ,gnutls)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lz4" ,lz4)
|
`(("lz4" ,lz4)
|
||||||
|
|
Reference in a new issue