unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: Adam Faiz <adam.faiz@disroot.org>, 62178@debbugs.gnu.org
Subject: [bug#62178] [PATCH v1 4/5] gnu: Add rapidxml.
Date: Tue, 18 Apr 2023 19:28:11 +0200	[thread overview]
Message-ID: <3af919a3a0c1a4b67eb247470f9937ff8efcd81e.camel@gmail.com> (raw)
In-Reply-To: <00d3c326-8ae2-86ad-5d4c-466334ad3c93@disroot.org>

Am Donnerstag, dem 16.03.2023 um 14:31 +0800 schrieb Adam Faiz:
>  From 470ac3c7e5cea2c08a64745037cd73af59027c26 Mon Sep 17 00:00:00
> 2001
> Message-Id:
> <470ac3c7e5cea2c08a64745037cd73af59027c26.1678947948.git.adam.faiz@di
> sroot.org>
> In-Reply-To:
> <735f08bc3d271959685e03d761f5ac9039e5cfd3.1678947948.git.adam.faiz@di
> sroot.org>
> References:
> <735f08bc3d271959685e03d761f5ac9039e5cfd3.1678947948.git.adam.faiz@di
> sroot.org>
> From: AwesomeAdam54321 <adam.faiz@disroot.org>
> Date: Tue, 14 Mar 2023 14:07:08 +0800
> Subject: [PATCH v1 4/5] gnu: Add rapidxml.
> 
> * gnu/packages/xml.scm (rapidxml): New variable.
> ---
>   gnu/packages/xml.scm | 30 ++++++++++++++++++++++++++++++
>   1 file changed, 30 insertions(+)
> 
> diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
> index 0b26a63e85..c8dbd27772 100644
> --- a/gnu/packages/xml.scm
> +++ b/gnu/packages/xml.scm
> @@ -76,6 +76,7 @@ (define-module (gnu packages xml)
>     #:use-module (guix download)
>     #:use-module (guix git-download)
>     #:use-module (guix build-system cmake)
> +  #:use-module (guix build-system copy)
>     #:use-module (guix build-system gnu)
>     #:use-module (guix build-system meson)
>     #:use-module (guix build-system perl)
> @@ -1983,3 +1984,32 @@ (define-public python-xmltodict
>       (description "This package provides a Python library to convert
> XML to
>   @code{OrderedDict}.")
>       (license license:expat)))
> +
> +(define-public rapidxml
> +  (package
> +    (name "rapidxml")
> +    (version "1.13")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "https://sourceforge.net/projects/"
> +                    "rapidxml/files/rapidxml/rapidxml%20"
> +                    version "/rapidxml-" version ".zip"))
Small nitpick, you should try to fit this as 
              (uri (string-append
                    "https://sourceforge.net/projects/rapidxml/"
                    "files/rapidxml/rapidxml%20" version "/"
                    "rapidxml-" version ".zip"))
> +              (sha256
> +               (base32
> +               
> "0w9mbdgshr6sh6a5jr10lkdycjyvapbj7wxwz8hbp0a96y3biw63"))))
> +    (build-system copy-build-system)
> +    (native-inputs
> +     (list unzip))
Can go on one line, but arguments should be first.
> +    (arguments
> +     (list
> +      #:install-plan
> +      #~'(("./" "include/rapidxml" #:include-regexp ("\\.hpp$")))))
> +    (synopsis "XML Parser")
> +    (description
> +     "RapidXml is an attempt to create the fastest XML parser
> possible,
> +while retaining useability, portability and reasonable W3C
> compatibility.
> +  It is an in-situ parser written in modern C++, with parsing speed
> approaching
> +that of strlen function executed on the same data.")
I think we should avoid claims like "the fastest" in particular with
benchmarks referring to GCC 4 :)
Better, "RapidXml is a fast, mostly W3C-compatible XML DOM parser.  It
uses an in-situ parsing approach, that is it does not copy the input
string."
> +    (home-page "https://rapidxml.sourceforge.net/")
> +    (license license:boost1.0)))
Cheers




  reply	other threads:[~2023-04-18 17:29 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-14  6:52 [bug#62178] [PATCH 0/5] Add terrarium Adam Faiz via Guix-patches via
2023-03-14  6:57 ` [bug#62178] [PATCH 1/5] gnu: Add fgeal Adam Faiz via Guix-patches via
2023-03-14  7:02 ` [bug#62178] [PATCH 2/5] gnu: Add futil Adam Faiz via Guix-patches via
2023-03-14  7:09 ` [bug#62178] [PATCH 3/5] gnu: Add libgeramun Adam Faiz via Guix-patches via
2023-03-14 19:41   ` Liliana Marie Prikler
2023-03-14  7:11 ` [bug#62178] [PATCH 4/5] gnu: Add rapidxml Adam Faiz via Guix-patches via
2023-03-14  7:13 ` [bug#62178] [PATCH 5/5] gnu: Add terrarium Adam Faiz via Guix-patches via
2023-03-14 17:50   ` Liliana Marie Prikler
2023-04-18 14:34     ` Adam Faiz via Guix-patches via
2023-03-16  6:26 ` [bug#62178] [PATCH v1 1/5] gnu: Add fgeal Adam Faiz via Guix-patches via
2023-04-18 16:50   ` Liliana Marie Prikler
2023-03-16  6:29 ` [bug#62178] [PATCH v1 2/5] gnu: Add futil Adam Faiz via Guix-patches via
2023-04-18 16:55   ` Liliana Marie Prikler
2023-03-16  6:30 ` [bug#62178] [PATCH v1 3/5] gnu: Add libgeramun Adam Faiz via Guix-patches via
2023-03-16  6:31 ` [bug#62178] [PATCH v1 4/5] gnu: Add rapidxml Adam Faiz via Guix-patches via
2023-04-18 17:28   ` Liliana Marie Prikler [this message]
2023-03-16  6:32 ` [bug#62178] [PATCH v1 5/5] gnu: Add terrarium Adam Faiz via Guix-patches via
2023-04-18 18:28   ` Liliana Marie Prikler

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=3af919a3a0c1a4b67eb247470f9937ff8efcd81e.camel@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=62178@debbugs.gnu.org \
    --cc=adam.faiz@disroot.org \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).