gnu: uriparser: Update to 0.9.8.

* gnu/packages/web.scm (uriparser): Update to 0.9.8.
[source]: Switch to git-fetch.

Change-Id: I12ed35eebd9719aac83e5838cdec6e81529763ae
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
Artyom V. Poptsov 2024-08-28 19:11:18 +03:00 committed by Zheng Junjie
parent 7779ed9aed
commit c061a7175d
No known key found for this signature in database
GPG Key ID: 3B5AA993E1A2DFF0

View File

@ -9349,15 +9349,16 @@ tools:
(define-public uriparser (define-public uriparser
(package (package
(name "uriparser") (name "uriparser")
(version "0.9.6") (version "0.9.8")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/uriparser/uriparser" (uri (git-reference
"/releases/download/uriparser-" (url "https://github.com/uriparser/uriparser")
version "/uriparser-" version ".tar.xz")) (commit (string-append "uriparser-" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0i7nxgy36i8v81r213sbvmpxxq9qb4rhii9qbvl1k32jd1ka1252")))) "0qr3rc0iz1zxim1ylwzf7zijgnxpzv4m35fzvv5kf66a8bqhrw2k"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (list googletest doxygen graphviz)) (native-inputs (list googletest doxygen graphviz))
(synopsis "Strictly RFC 3986 compliant URI parsing and handling library") (synopsis "Strictly RFC 3986 compliant URI parsing and handling library")