gnu: glib-networking: Update to 2.54.1.

* gnu/packages/gnome.scm (glib-networking): Update to 2.54.1.
This commit is contained in:
Kei Kebreau 2017-11-09 13:14:33 -05:00
parent 1e2a36e1b0
commit c7b433de47
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 14 additions and 13 deletions

View File

@ -2326,7 +2326,7 @@ library.")
(define-public glib-networking (define-public glib-networking
(package (package
(name "glib-networking") (name "glib-networking")
(version "2.50.0") (version "2.54.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnome/sources/glib-networking/" (uri (string-append "mirror://gnome/sources/glib-networking/"
@ -2334,7 +2334,7 @@ library.")
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1vkb53jxawy38y29635izlch64j9xmcwwcimk134jwra7hpl86iz")) "0bq16m9nh3gcz9x2fvygr0iwxd2pxcbrm3lj3kihsnh1afv8g9za"))
(patches (patches
(search-patches "glib-networking-ssl-cert-file.patch")))) (search-patches "glib-networking-ssl-cert-file.patch"))))
(build-system gnu-build-system) (build-system gnu-build-system)
@ -2344,18 +2344,19 @@ library.")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'configure 'patch-giomoduledir (add-before 'configure 'patch-giomoduledir
;; Install GIO modules into $out/lib/gio/modules. ;; Install GIO modules into $out/lib/gio/modules.
(lambda _ (lambda _
(substitute* "configure" (substitute* "configure"
(("GIO_MODULE_DIR=.*") (("GIO_MODULE_DIR=.*")
(string-append "GIO_MODULE_DIR=" %output (string-append "GIO_MODULE_DIR=" %output
"/lib/gio/modules\n"))))) "/lib/gio/modules\n")))
#t))
(add-before 'check 'use-empty-ssl-cert-file (add-before 'check 'use-empty-ssl-cert-file
(lambda _ (lambda _
;; The ca-certificates.crt is not available in the build ;; The ca-certificates.crt is not available in the build
;; environment. ;; environment.
(setenv "SSL_CERT_FILE" "/dev/null") (setenv "SSL_CERT_FILE" "/dev/null")
#t))))) #t)))))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("intltool" ,intltool))) ("intltool" ,intltool)))