GNU bug report logs - #26653
gnu: Add guile-sjson.

Previous Next

Package: guix-patches;

Reported by: Christopher Allan Webber <cwebber <at> dustycloud.org>

Date: Tue, 25 Apr 2017 14:11:02 UTC

Severity: normal

Done: Christopher Allan Webber <cwebber <at> dustycloud.org>

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 26653 in the body.
You can then email your comments to 26653 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#26653; Package guix-patches. (Tue, 25 Apr 2017 14:11:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Christopher Allan Webber <cwebber <at> dustycloud.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 25 Apr 2017 14:11:02 GMT) Full text and rfc822 format available.

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

From: Christopher Allan Webber <cwebber <at> dustycloud.org>
To: guix-patches <at> gnu.org
Subject: gnu: Add guile-sjson.
Date: Tue, 25 Apr 2017 09:09:37 -0500
[Message part 1 (text/plain, inline)]
It looks like somehow I didn't send this last night as I thought I did.

Anyway, here's guile-sjson!

[0001-gnu-Add-guile-sjson.patch (text/x-patch, inline)]
From a62ba605afe6c994fe0c6dc8b544789fdefe4561 Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <cwebber <at> dustycloud.org>
Date: Tue, 25 Apr 2017 00:18:29 -0500
Subject: [PATCH] gnu: Add guile-sjson.

* gnu/packages/guile.scm (guile-sjson): Add guile-sjson.
---
 gnu/packages/guile.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 9dd524e4b..ad2a488f6 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -1768,4 +1768,33 @@ HTML (via SXML) or any other format for rendering.")
       (home-page "http://dthompson.us/software/guile-syntax-highlight")
       (license license:lgpl3+))))
 
+(define-public guile-sjson
+  (package
+    (name "guile-sjson")
+    (version "0.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://dustycloud.org/misc/sjson-" version
+                                  ".tar.gz"))
+              (sha256
+               (base32
+                "09hnh2brc7ihh8dv4g5hdmdj8rs8p9l3pmlgafkx145grdg7wprx"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'bootstrap
+           (lambda _ (zero? (system* "sh" "bootstrap.sh")))))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("guile" ,guile-2.2)))
+    (home-page "https://gitlab.com/dustyweb/guile-sjson")
+    (synopsis "s-expression based json reader/writer for Guile")
+    (description "guile-sjson is a json reader/writer for Guile.
+It has a nice, simple s-expression based syntax.")
+    (license license:lgpl3+)))
+
 ;;; guile.scm ends here
-- 
2.12.2

[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#26653; Package guix-patches. (Tue, 25 Apr 2017 22:20:02 GMT) Full text and rfc822 format available.

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

From: Kei Kebreau <kei <at> openmailbox.org>
To: Christopher Allan Webber <cwebber <at> dustycloud.org>
Cc: 26653 <at> debbugs.gnu.org
Subject: Re: bug#26653: gnu: Add guile-sjson.
Date: Tue, 25 Apr 2017 18:19:46 -0400
[Message part 1 (text/plain, inline)]
Christopher Allan Webber <cwebber <at> dustycloud.org> writes:

> It looks like somehow I didn't send this last night as I thought I did.
>
> Anyway, here's guile-sjson!
>
> From a62ba605afe6c994fe0c6dc8b544789fdefe4561 Mon Sep 17 00:00:00 2001
> From: Christopher Allan Webber <cwebber <at> dustycloud.org>
> Date: Tue, 25 Apr 2017 00:18:29 -0500
> Subject: [PATCH] gnu: Add guile-sjson.
>
> * gnu/packages/guile.scm (guile-sjson): Add guile-sjson.
> ---
>  gnu/packages/guile.scm | 29 +++++++++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
>
> diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
> index 9dd524e4b..ad2a488f6 100644
> --- a/gnu/packages/guile.scm
> +++ b/gnu/packages/guile.scm
> @@ -1768,4 +1768,33 @@ HTML (via SXML) or any other format for rendering.")
>        (home-page "http://dthompson.us/software/guile-syntax-highlight")
>        (license license:lgpl3+))))
>  
> +(define-public guile-sjson
> +  (package
> +    (name "guile-sjson")
> +    (version "0.2")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "https://dustycloud.org/misc/sjson-" version
> +                                  ".tar.gz"))
> +              (sha256
> +               (base32
> +                "09hnh2brc7ihh8dv4g5hdmdj8rs8p9l3pmlgafkx145grdg7wprx"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     '(#:phases
> +       (modify-phases %standard-phases
> +         (add-after 'unpack 'bootstrap
> +           (lambda _ (zero? (system* "sh" "bootstrap.sh")))))))
> +    (native-inputs
> +     `(("autoconf" ,autoconf)
> +       ("automake" ,automake)
> +       ("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("guile" ,guile-2.2)))
> +    (home-page "https://gitlab.com/dustyweb/guile-sjson")
> +    (synopsis "s-expression based json reader/writer for Guile")

The linter wants a capital letter for the first letter in the synopsis.

> +    (description "guile-sjson is a json reader/writer for Guile.
> +It has a nice, simple s-expression based syntax.")
> +    (license license:lgpl3+)))
> +
>  ;;; guile.scm ends here

The rest looks good.
[signature.asc (application/pgp-signature, inline)]

Reply sent to Christopher Allan Webber <cwebber <at> dustycloud.org>:
You have taken responsibility. (Wed, 26 Apr 2017 03:48:02 GMT) Full text and rfc822 format available.

Notification sent to Christopher Allan Webber <cwebber <at> dustycloud.org>:
bug acknowledged by developer. (Wed, 26 Apr 2017 03:48:02 GMT) Full text and rfc822 format available.

Message #13 received at 26653-done <at> debbugs.gnu.org (full text, mbox):

From: Christopher Allan Webber <cwebber <at> dustycloud.org>
To: Kei Kebreau <kei <at> openmailbox.org>
Cc: 26653-done <at> debbugs.gnu.org
Subject: Re: bug#26653: gnu: Add guile-sjson.
Date: Tue, 25 Apr 2017 22:47:20 -0500
>> +    (synopsis "s-expression based json reader/writer for Guile")
>
> The linter wants a capital letter for the first letter in the synopsis.

Fixed.

>> +    (description "guile-sjson is a json reader/writer for Guile.
>> +It has a nice, simple s-expression based syntax.")
>> +    (license license:lgpl3+)))
>> +
>>  ;;; guile.scm ends here
>
> The rest looks good.

Woo woo!  Pushed up!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 24 May 2017 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 8 years and 26 days ago.

Previous Next


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