GNU bug report logs - #62824
[PATCH] gnu: Add libfyaml.

Previous Next

Package: guix-patches;

Reported by: Alexey Abramov <levenson <at> mmer.org>

Date: Fri, 14 Apr 2023 06:44:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 62824 in the body.
You can then email your comments to 62824 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#62824; Package guix-patches. (Fri, 14 Apr 2023 06:44:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alexey Abramov <levenson <at> mmer.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 14 Apr 2023 06:44:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Alexey Abramov <levenson <at> mmer.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add libfyaml.
Date: Fri, 14 Apr 2023 08:42:51 +0200
* gnu/packages/serialization.scm (libfyaml): New variable.
---
 gnu/packages/serialization.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 3f0a550920..30ab7b0a6a 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua <at> nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
 ;;; Copyright © 2020 Alexandros Theodotou <alex <at> zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson <at> mmer.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -426,6 +427,34 @@ (define-public libcyaml
     (home-page "https://github.com/tlsa/libcyaml")
     (license license:isc)))
 
+(define-public libfyaml
+  (package
+    (name "libfyaml")
+    (version "0.8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pantoniou/libfyaml")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "002g0grddfi5y42lq06zj8266rf7h27wq76sr598ad5pxllx3y3g"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     (list autoconf
+           automake
+           libtool
+           pkg-config))
+    (home-page "https://github.com/pantoniou/libfyaml")
+    (synopsis "A fancy 1.2 YAML and JSON parser/writer.")
+    (description
+     "Fully feature complete YAML parser and emitter, supporting the latest YAML spec
+and passing the full YAML testsuite. It is designed to be very efficient, avoiding
+copies of data, and has no artificial limits like the 1024 character limit for
+implicit keys.")
+    (license license:expat)))
+
 (define-public yaml-cpp
   (package
     (name "yaml-cpp")
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#62824; Package guix-patches. (Fri, 14 Apr 2023 07:03:02 GMT) Full text and rfc822 format available.

Message #8 received at 62824 <at> debbugs.gnu.org (full text, mbox):

From: Alexey Abramov <levenson <at> mmer.org>
To: 62824 <at> debbugs.gnu.org
Subject: [PATCH v2] gnu: Add libfyaml.
Date: Fri, 14 Apr 2023 09:01:49 +0200
* gnu/packages/serialization.scm (libfyaml): New variable.
---
 gnu/packages/serialization.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 3f0a550920..87f377879d 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua <at> nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
 ;;; Copyright © 2020 Alexandros Theodotou <alex <at> zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson <at> mmer.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -426,6 +427,34 @@ (define-public libcyaml
     (home-page "https://github.com/tlsa/libcyaml")
     (license license:isc)))
 
+(define-public libfyaml
+  (package
+    (name "libfyaml")
+    (version "0.8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pantoniou/libfyaml")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "002g0grddfi5y42lq06zj8266rf7h27wq76sr598ad5pxllx3y3g"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     (list autoconf
+           automake
+           libtool
+           pkg-config))
+    (home-page "https://github.com/pantoniou/libfyaml")
+    (synopsis "A fancy 1.2 YAML and JSON parser/writer")
+    (description
+     "Fully feature complete YAML parser and emitter, supporting the latest YAML spec
+and passing the full YAML testsuite. It is designed to be very efficient, avoiding
+copies of data, and has no artificial limits like the 1024 character limit for
+implicit keys.")
+    (license license:expat)))
+
 (define-public yaml-cpp
   (package
     (name "yaml-cpp")
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#62824; Package guix-patches. (Fri, 14 Apr 2023 07:05:02 GMT) Full text and rfc822 format available.

Message #11 received at 62824 <at> debbugs.gnu.org (full text, mbox):

From: Alexey Abramov <levenson <at> mmer.org>
To: bug#62824 <62824 <at> debbugs.gnu.org>
Subject: Re: bug#62824: [PATCH] gnu: Add libfyaml.
Date: Fri, 14 Apr 2023 09:04:10 +0200
Hi,

Sorry for the noise. in v2 I removed a dot at the end of the synopsis.

-- 
Alexey




Information forwarded to guix-patches <at> gnu.org:
bug#62824; Package guix-patches. (Sat, 15 Apr 2023 06:14:02 GMT) Full text and rfc822 format available.

Message #14 received at 62824 <at> debbugs.gnu.org (full text, mbox):

From: Alexey Abramov <levenson <at> mmer.org>
To: 62824 <at> debbugs.gnu.org
Subject: [PATCH v3] gnu: Add libfyaml.
Date: Sat, 15 Apr 2023 08:13:31 +0200
* gnu/packages/serialization.scm (libfyaml): New variable.
---
 gnu/packages/serialization.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 3f0a550920..677615a53d 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua <at> nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze <at> riseup.net>
 ;;; Copyright © 2020 Alexandros Theodotou <alex <at> zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson <at> mmer.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -426,6 +427,33 @@ (define-public libcyaml
     (home-page "https://github.com/tlsa/libcyaml")
     (license license:isc)))
 
+(define-public libfyaml
+  (package
+    (name "libfyaml")
+    (version "0.8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pantoniou/libfyaml")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "002g0grddfi5y42lq06zj8266rf7h27wq76sr598ad5pxllx3y3g"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     (list autoconf
+           automake
+           libtool
+           pkg-config))
+    (home-page "https://github.com/pantoniou/libfyaml")
+    (synopsis "YAML version 1.2 and JSON parser/writer")
+    (description "Fully feature complete YAML parser and emitter, supporting the
+latest YAML spec and passing the full YAML testsuite.  It is designed to be very
+efficient, avoiding copies of data, and has no artificial limits like the 1024
+character limit for implicit keys.")
+    (license license:expat)))
+
 (define-public yaml-cpp
   (package
     (name "yaml-cpp")
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#62824; Package guix-patches. (Wed, 03 May 2023 12:32:01 GMT) Full text and rfc822 format available.

Message #17 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Alexey Abramov via Guix-patches via <guix-patches <at> gnu.org>
Cc: Alexey Abramov <levenson <at> mmer.org>, 62824-done <at> debbugs.gnu.org
Subject: Re: [bug#62824] [PATCH v3] gnu: Add libfyaml.
Date: Wed, 03 May 2023 14:31:30 +0200
Hello,

Alexey Abramov via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/serialization.scm (libfyaml): New variable.

Thank you. I slightly reworded the description so it would consist of
full sentences, and applied your patch.

Regards,
-- 
Nicolas Goaziou




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Wed, 03 May 2023 12:32:02 GMT) Full text and rfc822 format available.

Notification sent to Alexey Abramov <levenson <at> mmer.org>:
bug acknowledged by developer. (Wed, 03 May 2023 12:32:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 01 Jun 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 328 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.