[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
22/34: gnu: GnuTLS: Update to 3.6.5.
From: |
guix-commits |
Subject: |
22/34: gnu: GnuTLS: Update to 3.6.5. |
Date: |
Wed, 12 Dec 2018 15:56:46 -0500 (EST) |
mbakke pushed a commit to branch staging
in repository guix.
commit 06f5bc4e12a78883c6f4a543711311bd66e6832b
Author: Marius Bakke <address@hidden>
Date: Mon Dec 10 02:38:32 2018 +0100
gnu: GnuTLS: Update to 3.6.5.
* gnu/packages/patches/gnutls-skip-pkgconfig-test.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/tls.scm (gnutls): Update to 3.6.5.
[source](patches): Remove obsolete.
[source](snippet): Add Guile detection fix.
* gnu/packages/gnome.scm (libsoup)[arguments]: Adjust 'certtool' invokation
to
cope with the new API.
---
gnu/local.mk | 1 -
gnu/packages/gnome.scm | 3 ++-
.../patches/gnutls-skip-pkgconfig-test.patch | 24 ----------------------
gnu/packages/tls.scm | 17 ++++++++++-----
4 files changed, 14 insertions(+), 31 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 0d279e5..3f2ca7a 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -772,7 +772,6 @@ dist_patch_DATA =
\
%D%/packages/patches/gnucash-price-quotes-perl.patch \
%D%/packages/patches/gnucash-disable-failing-tests.patch \
%D%/packages/patches/gnutls-skip-trust-store-test.patch \
- %D%/packages/patches/gnutls-skip-pkgconfig-test.patch \
%D%/packages/patches/gobject-introspection-absolute-shlib-path.patch \
%D%/packages/patches/gobject-introspection-cc.patch \
%D%/packages/patches/gobject-introspection-girepository.patch \
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 9d8e4a8..cea9445 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2556,7 +2556,8 @@ libxml to ease remote use of the RESTful API.")
"" ;URI of subject
"127.0.0.1" ;IP address of subject
"" ;signing?
- "" ;encryption?
+ "" ;encryption (RSA)?
+ "" ;data encryption?
"" ;sign OCSP requests?
"" ;sign code?
"" ;time stamping?
diff --git a/gnu/packages/patches/gnutls-skip-pkgconfig-test.patch
b/gnu/packages/patches/gnutls-skip-pkgconfig-test.patch
deleted file mode 100644
index 1fad7c1..0000000
--- a/gnu/packages/patches/gnutls-skip-pkgconfig-test.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-FIXME: The static test fails with an error such as:
-
-/tmp/guix-build-gnutls-3.5.13.drv-0/ccOnGPmc.o: In function `main':
-c.29617.tmp.c:(.text+0x5): undefined reference to `gnutls_global_init'
-collect2: error: ld returned 1 exit status
-FAIL pkgconfig.sh (exit status: 1)
-
-diff --git a/tests/pkgconfig.sh b/tests/pkgconfig.sh
-index 6bd4e62f9..05aab8278 100755
---- a/tests/pkgconfig.sh
-+++ b/tests/pkgconfig.sh
-@@ -57,11 +57,7 @@ echo "Trying dynamic linking with:"
- echo " * flags: $(${PKGCONFIG} --libs gnutls)"
- echo " * common: ${COMMON}"
- echo " * lib: ${CFLAGS}"
--cc ${TMPFILE} -o ${TMPFILE_O} $(${PKGCONFIG} --libs gnutls) $(${PKGCONFIG}
--cflags gnutls) ${COMMON}
--
--echo ""
--echo "Trying static linking with $(${PKGCONFIG} --libs --static gnutls)"
--cc ${TMPFILE} -o ${TMPFILE_O} $(${PKGCONFIG} --static --libs gnutls)
$(${PKGCONFIG} --cflags gnutls) ${COMMON}
-+gcc ${TMPFILE} -o ${TMPFILE_O} $(${PKGCONFIG} --libs gnutls) $(${PKGCONFIG}
--cflags gnutls) ${COMMON}
-
- rm -f ${TMPFILE} ${TMPFILE_O}
-
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index d997144..73be90d 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -162,7 +162,7 @@ living in the same process.")
(define-public gnutls
(package
(name "gnutls")
- (version "3.5.18")
+ (version "3.6.5")
(source (origin
(method url-fetch)
(uri
@@ -171,12 +171,19 @@ living in the same process.")
(string-append "mirror://gnupg/gnutls/v"
(version-major+minor version)
"/gnutls-" version ".tar.xz"))
- (patches
- (search-patches "gnutls-skip-trust-store-test.patch"
- "gnutls-skip-pkgconfig-test.patch"))
+ (patches (search-patches "gnutls-skip-trust-store-test.patch"))
(sha256
(base32
- "0d02x28fwkkx7xzn7807nww6idchizzq3plx8sfcyiw7wzclh8mf"))))
+ "0ddvg97dyrh8dkffv1mdc0knxx5my3qdbzv97s4a6jggmk9wwgh7"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; XXX: The generated configure script in GnuTLS 3.6.5
+ ;; apparently does not know about Guile 2.2.
+ (substitute* "configure"
+ (("guile_versions_to_search=\"2\\.0 1\\.8\"")
+ "guile_versions_to_search=\"2.2 2.0 1.8\""))
+ #t))))
(build-system gnu-build-system)
(arguments
`(; Ensure we don't keep a reference to this buggy software.
- 21/34: gnu: jansson: Don't build libjansson.a., (continued)
- 21/34: gnu: jansson: Don't build libjansson.a., guix-commits, 2018/12/12
- 23/34: gnu: libuv: Update to 1.24.0., guix-commits, 2018/12/12
- 32/34: gnu: gtk+: Update to 3.24.2., guix-commits, 2018/12/12
- 19/34: gnu: cyrus-sasl: Update to 2.1.27., guix-commits, 2018/12/12
- 18/34: gnu: mit-krb5: Update to 1.16.2., guix-commits, 2018/12/12
- 28/34: gnu: Remove special Boost C++14 variant., guix-commits, 2018/12/12
- 14/34: gnu: icu4c: Update to 63.1., guix-commits, 2018/12/12
- 11/34: gnu: libqmi: Update to 1.20.2., guix-commits, 2018/12/12
- 34/34: gnu: mesa: Update to 18.3.1., guix-commits, 2018/12/12
- 24/34: gnu: CMake: Update to 3.13.1., guix-commits, 2018/12/12
- 22/34: gnu: GnuTLS: Update to 3.6.5.,
guix-commits <=
- 10/34: gnu: cairo: Update to 1.16.0., guix-commits, 2018/12/12
- 31/34: gnu: curl: Update to 7.63.0., guix-commits, 2018/12/12
- 15/34: gnu: tzdata-for-tests: Update to 2018g., guix-commits, 2018/12/12
- 13/34: gnu: ghostscript: Update to 9.26., guix-commits, 2018/12/12
- 33/34: gnu: libtiff: Update to 4.0.10., guix-commits, 2018/12/12
- 05/34: gnu: poppler: Update to 0.72.0., guix-commits, 2018/12/12