mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: http-parser: Add support for RFC 3986.
Fixes parsing of colon followed by empty port, allowed by RFC 3986 specifications. Fedora is applying it to system http-parser too. * gnu/packages/web.scm (http-parser)[source]: Add patch from Fedora. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b60e2d480a
commit
633360e00e
1 changed files with 14 additions and 0 deletions
|
@ -5818,6 +5818,20 @@ (define-public http-parser
|
|||
(uri (git-reference (url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(patches
|
||||
;; When parsing URLs, treat an empty port (eg
|
||||
;; `http://hostname:/`) as if it were unspecified. This patch is
|
||||
;; applied to Fedora's http-parser and to libgit2's bundled version.
|
||||
(list
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://src.fedoraproject.org/rpms/http-parser/raw/"
|
||||
"e89b4c4e2874c19079a5a1a2d2ccc61b551aa289/"
|
||||
"f/0001-url-treat-empty-port-as-default.patch"))
|
||||
(sha256
|
||||
(base32
|
||||
"0pbxf2nq9pcn299k2b2ls8ldghaqln9glnp79gi57mamx4iy0f6g")))))
|
||||
(sha256
|
||||
(base32
|
||||
"189zi61vczqgmqjd2myjcjbbi5icrk7ccs0kn6nj8hxqiv5j3811"))))
|
||||
|
|
Loading…
Reference in a new issue