unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#62824] [PATCH] gnu: Add libfyaml.
@ 2023-04-14  6:42 Alexey Abramov via Guix-patches via
  2023-04-14  7:01 ` [bug#62824] [PATCH v2] " Alexey Abramov via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Alexey Abramov via Guix-patches via @ 2023-04-14  6:42 UTC (permalink / raw)
  To: 62824

* 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@nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
 ;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson@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





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62824] [PATCH v2] gnu: Add libfyaml.
  2023-04-14  6:42 [bug#62824] [PATCH] gnu: Add libfyaml Alexey Abramov via Guix-patches via
@ 2023-04-14  7:01 ` Alexey Abramov via Guix-patches via
  2023-04-14  7:04 ` [bug#62824] [PATCH] " Alexey Abramov via Guix-patches via
  2023-04-15  6:13 ` [bug#62824] [PATCH v3] " Alexey Abramov via Guix-patches via
  2 siblings, 0 replies; 5+ messages in thread
From: Alexey Abramov via Guix-patches via @ 2023-04-14  7:01 UTC (permalink / raw)
  To: 62824

* 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@nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
 ;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson@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





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62824] [PATCH] gnu: Add libfyaml.
  2023-04-14  6:42 [bug#62824] [PATCH] gnu: Add libfyaml Alexey Abramov via Guix-patches via
  2023-04-14  7:01 ` [bug#62824] [PATCH v2] " Alexey Abramov via Guix-patches via
@ 2023-04-14  7:04 ` Alexey Abramov via Guix-patches via
  2023-04-15  6:13 ` [bug#62824] [PATCH v3] " Alexey Abramov via Guix-patches via
  2 siblings, 0 replies; 5+ messages in thread
From: Alexey Abramov via Guix-patches via @ 2023-04-14  7:04 UTC (permalink / raw)
  To: bug#62824

Hi,

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

-- 
Alexey




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#62824] [PATCH v3] gnu: Add libfyaml.
  2023-04-14  6:42 [bug#62824] [PATCH] gnu: Add libfyaml Alexey Abramov via Guix-patches via
  2023-04-14  7:01 ` [bug#62824] [PATCH v2] " Alexey Abramov via Guix-patches via
  2023-04-14  7:04 ` [bug#62824] [PATCH] " Alexey Abramov via Guix-patches via
@ 2023-04-15  6:13 ` Alexey Abramov via Guix-patches via
  2023-05-03 12:31   ` Nicolas Goaziou
  2 siblings, 1 reply; 5+ messages in thread
From: Alexey Abramov via Guix-patches via @ 2023-04-15  6:13 UTC (permalink / raw)
  To: 62824

* 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@nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
 ;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson@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





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62824] [PATCH v3] gnu: Add libfyaml.
  2023-04-15  6:13 ` [bug#62824] [PATCH v3] " Alexey Abramov via Guix-patches via
@ 2023-05-03 12:31   ` Nicolas Goaziou
  0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2023-05-03 12:31 UTC (permalink / raw)
  To: 62824; +Cc: Alexey Abramov, 62824-done

Hello,

Alexey Abramov via Guix-patches via <guix-patches@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




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-05-03 12:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-14  6:42 [bug#62824] [PATCH] gnu: Add libfyaml Alexey Abramov via Guix-patches via
2023-04-14  7:01 ` [bug#62824] [PATCH v2] " Alexey Abramov via Guix-patches via
2023-04-14  7:04 ` [bug#62824] [PATCH] " Alexey Abramov via Guix-patches via
2023-04-15  6:13 ` [bug#62824] [PATCH v3] " Alexey Abramov via Guix-patches via
2023-05-03 12:31   ` Nicolas Goaziou

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).