diff options
author | Eric Bavier <bavier@member.fsf.org> | 2019-07-30 19:22:25 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2019-07-30 19:22:25 -0500 |
commit | 33abd52719b8474365e448d8d6992bbfaca81012 (patch) | |
tree | 58d5dedfccd232a7a902d222ef969680a1fb7fd6 | |
parent | 274ba54e535b811acca02e42cffd45f0f625d142 (diff) | |
download | patches-33abd52719b8474365e448d8d6992bbfaca81012.tar patches-33abd52719b8474365e448d8d6992bbfaca81012.tar.gz |
gnu: hubbub: Update to 0.3.6.
* gnu/packages/web.scm (hubbub)[source]: Update to 0.3.6. Remove use of
"name" in source url.
-rw-r--r-- | gnu/packages/web.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 958bc1aa40..b49dd73ee1 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com> ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> -;;; Copyright © 2015, 2016, 2017, 2018 Eric Bavier <bavier@member.fsf.org> +;;; Copyright © 2015, 2016, 2017, 2018, 2019 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr> ;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com> ;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org> @@ -4239,15 +4239,15 @@ C. It is developed as part of the NetSurf project.") (define-public hubbub (package (name "hubbub") - (version "0.3.5") + (version "0.3.6") (source (origin (method url-fetch) (uri (string-append "http://download.netsurf-browser.org/libs/releases/" - "lib" name "-" version "-src.tar.gz")) + "libhubbub-" version "-src.tar.gz")) (sha256 (base32 - "13yq1k96a7972x4r71i9bcsz9yiglj0yx7lj0ziq5r94w5my70ma")) + "1x3v7xvagx85v9h3pypzc86rcxs4mij87mmcqkp8pq50q6awfmnp")) (patches (search-patches "hubbub-sort-entities.patch")))) (build-system gnu-build-system) (native-inputs |