GNU bug report logs -
#39574
[PATCH] gnu: Add libcyaml.
Previous Next
Reported by: Alexandros Theodotou <alex <at> zrythm.org>
Date: Wed, 12 Feb 2020 12:58:01 UTC
Severity: normal
Tags: patch
Done: Tobias Geerinckx-Rice <me <at> tobias.gr>
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 39574 in the body.
You can then email your comments to 39574 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#39574
; Package
guix-patches
.
(Wed, 12 Feb 2020 12:58:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Alexandros Theodotou <alex <at> zrythm.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 12 Feb 2020 12:58:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
This patch adds libcyaml, a C library for parsing YAML into/from C
structs. It will be required as a dependency to the zrythm package in
its next release.
Thanks,
Alex
[0001-gnu-Add-libcyaml.patch (text/x-patch, attachment)]
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Tobias Geerinckx-Rice <me <at> tobias.gr>
:
You have taken responsibility.
(Wed, 12 Feb 2020 23:56:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Alexandros Theodotou <alex <at> zrythm.org>
:
bug acknowledged by developer.
(Wed, 12 Feb 2020 23:56:01 GMT)
Full text and
rfc822 format available.
Message #10 received at 39574-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Alexandros,
Pushed as eb642f3d247ee0c74122017354c57bdce028eb57, with the
indentation tweaks below (C-M-q in emacs, and moving the comment
in-line).
Thanks!
T G-R
[Message part 2 (text/patch, inline)]
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 18e392f857..7f67dd764e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1441,15 +1441,14 @@ hash/signatures.")
(name "libcyaml")
(version "1.0.1")
(source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/tlsa/libcyaml.git")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0h5ydyqdl8kzh526np3jsi0pm7ks16nh1hjkdsjcd6pacw7y6i6z"))))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tlsa/libcyaml.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0h5ydyqdl8kzh526np3jsi0pm7ks16nh1hjkdsjcd6pacw7y6i6z"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
@@ -1457,20 +1456,19 @@ hash/signatures.")
(string-append "CC=gcc"))
#:phases
(modify-phases %standard-phases
- ;; no configure script
- (delete 'configure)
+ (delete 'configure) ; no configure script
(replace 'check
(lambda _
(setenv "CC" "gcc")
(invoke "make" "test"))))))
(inputs
- `(("libyaml" ,libyaml)))
+ `(("libyaml" ,libyaml)))
(native-inputs
- `(("pkg-config", pkg-config)
- ("git", git)))
+ `(("git", git)
+ ("pkg-config", pkg-config)))
(synopsis "C library for reading and writing YAML")
(description
- "LibCYAML is a C library written in ISO C11 for reading and writing
+ "LibCYAML is a C library written in ISO C11 for reading and writing
structured YAML documents. The fundamental idea behind CYAML is to allow
applications to construct schemas which describe both the permissible
structure of the YAML documents to read/write, and the C data structure(s)
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 12 Mar 2020 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 5 years and 94 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.