emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#44722: closed ([PATCH] gnu: web: add uriparser)


From: GNU bug Tracking System
Subject: bug#44722: closed ([PATCH] gnu: web: add uriparser)
Date: Wed, 23 Dec 2020 16:16:01 +0000

Your message dated Wed, 23 Dec 2020 17:14:47 +0100
with message-id <87zh24v6rs.fsf@gnu.org>
and subject line Re: [bug#44722] (No Subject)
has caused the debbugs.gnu.org bug report #44722,
regarding [PATCH] gnu: web: add uriparser
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
44722: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=44722
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: web: add uriparser Date: Wed, 18 Nov 2020 13:48:42 +0000
From 1141a871635f048147faf022a9b649d6f8553080 Mon Sep 17 00:00:00 2001
From: Lane Spangler <lspangler@protonmail.com>
Date: Tue, 17 Nov 2020 17:50:06 +0100
Subject: [PATCH] gnu: web: add uriparser

---
gnu/packages/web.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index edb7bd5da1..d79877c78a 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -111,6 +111,7 @@
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages gperf)
+  #:use-module (gnu packages graphviz)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages guile-xyz)
@@ -7747,3 +7748,30 @@ solution for any project's interface needs:
       (description "gmnisrv is a simple Gemini protocol server written in C.")
       (license (list license:gpl3+
                      license:bsd-3))))) ;; for ini.c and ini.h
+
+(define-public uriparser
+  (let [(commit "9e1fba08c231f1990fdee13545ab3a0ac804bd3c")
+        (revision "1")]
+    (package
+      (name "uriparser")
+      (version (git-version "0.9.4" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/uriparser/uriparser")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "13spkcsi8p5732bviy41y8dv5aw4vg83gqdclbsb9ayfbr2ybjx0"))))
+      (build-system cmake-build-system)
+      (native-inputs `(("gtest" ,googletest)
+                       ("doxygen" ,doxygen)
+                       ("graphviz" ,graphviz)))
+      (synopsis "Strictly RFC 3986 compliant URI parsing and handling
+ library written in C89")
+      (description "uriparser is a strictly RFC 3986 compliant URI
+ parsing and handling library written in C89 (\"ANSI C\").
+uriparser is cross-platform, fast, and supports Unicode")
+      (home-page "https://uriparser.github.io/")
+      (license license:bsd-3))))
--
2.29.2



--- End Message ---
--- Begin Message --- Subject: Re: [bug#44722] (No Subject) Date: Wed, 23 Dec 2020 17:14:47 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Hi,

lspangler <lspangler@protonmail.com> skribis:

> From d3aedc37d0970b38464c69e66263473f19565dd9 Mon Sep 17 00:00:00 2001
> From: lsp <lsp@ableton.com>
> Date: Tue, 17 Nov 2020 17:50:06 +0100
> Subject: [PATCH] gnu: web: Add uriparser
>
> ---
>  gnu/packages/web.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)

I added a commit log and applied.  Thanks and apologies for the delay!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]