all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: lspangler via Guix-patches via <guix-patches@gnu.org>
To: "44722@debbugs.gnu.org" <44722@debbugs.gnu.org>
Subject: [bug#44722] (No Subject)
Date: Tue, 08 Dec 2020 17:57:36 +0000	[thread overview]
Message-ID: <TgXEoB4OWQG2_sUsSzKyYaQdNY-n1jSCSuOhJioq9wrBv6lJmB-DpivcMnaU5S7uDObqi6vaDT3uNpBCFtTgE-Hm9CV-QQt3j4FmCCnEeTw=@protonmail.com> (raw)
In-Reply-To: <61GMcRudrqz0j9_UV7ajK_jffCV3On0vlQzjLrU6Ly3fS-n5F9aQvtH41aL2clXwcIpH0xi3B8iEL9iiCxjFvv_fUMet1_J95kMaYn0hnQ4=@protonmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 86 bytes --]

Hi Ludo,

Thanks for reviewing! I've made the suggested changes in the attached patch.

[-- Attachment #1.2: Type: text/html, Size: 129 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-web-Add-uriparser.patch --]
[-- Type: text/x-patch; name=0001-gnu-web-Add-uriparser.patch, Size: 2084 bytes --]

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(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index edb7bd5da1..c0ff3c8b5c 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,29 @@ 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 "25dddb16cf044a7df27884e7ad3911baaaca3d7c")
+        (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
+                  "1ffzia679axcsccx2fxjpxhb0i5xc42zxn446x6c1170w6v69qf6"))))
+      (build-system cmake-build-system)
+      (native-inputs `(("gtest" ,googletest)
+                       ("doxygen" ,doxygen)
+                       ("graphviz" ,graphviz)))
+      (synopsis "Strictly RFC 3986 compliant URI parsing and handling library")
+      (description "uriparser is a strictly RFC 3986 compliant URI
+ parsing and handling library written in C89 (\"ANSI C\").
+uriparser is fast and supports Unicode.")
+      (home-page "https://uriparser.github.io/")
+      (license license:bsd-3))))
-- 
2.29.2


  parent reply	other threads:[~2020-12-08 18:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-18 13:48 [bug#44722] [PATCH] gnu: web: add uriparser lspangler via Guix-patches via
2020-11-26 22:19 ` Ludovic Courtès
2020-12-08 17:57 ` lspangler via Guix-patches via [this message]
2020-12-23 16:14   ` bug#44722: (No Subject) Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='TgXEoB4OWQG2_sUsSzKyYaQdNY-n1jSCSuOhJioq9wrBv6lJmB-DpivcMnaU5S7uDObqi6vaDT3uNpBCFtTgE-Hm9CV-QQt3j4FmCCnEeTw=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=44722@debbugs.gnu.org \
    --cc=lspangler@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.