unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Jelle Licht <jlicht@fsfe.org>
To: Leo Famulari <leo@famulari.name>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 2/2] Add jq
Date: Sun, 27 Mar 2016 00:34:26 +0100	[thread overview]
Message-ID: <CAPsKtfKFzm6T6y=-Lbc_+iouu1MagK=AfT1wzMwdkJkbbjU2nw@mail.gmail.com> (raw)
In-Reply-To: <20160326232621.GA4950@jasmine>


[-- Attachment #1.1: Type: text/plain, Size: 1433 bytes --]

2016-03-27 0:26 GMT+01:00 Leo Famulari <leo@famulari.name>:

> On Sat, Mar 26, 2016 at 11:53:24PM +0100, Jelle Licht wrote:
> > From jq's README:
> >
> > To get regexp support you'll also need to install Oniguruma (note that
> jq's
> > > tests require regexp support to pass).
> >
> >
> > So it seems to be an optional dependency (which allows tests to pass and
> > adds functionality). I could make it a build-time dependency, or not.
> > What is the 'guix' way of handling these cases?
>
> In this case I think the description should be changed.
>
> >
> > --
> > Jelle
> >
> >
> > 2016-03-26 23:45 GMT+01:00 Leo Famulari <leo@famulari.name>:
> >
> > > On Sat, Mar 26, 2016 at 11:06:15PM +0100, Jelle Licht wrote:
> > > > +    (inputs
> > > > +     `(("oniguruma" ,oniguruma)))
> > >
> > > [...]
> > >
> > > > +    (description "jq is like sed for JSON data – you can use it to
> > > slice and
> > > > +filter and map and transform structured data with the same ease that
> > > sed, awk,
> > > > +grep and friends let you play with text.  It is written in portable
> C,
> > > and it
> > > > +has zero runtime dependencies.  jq can mangle the data format that
> you
> > > have
> > >        ^-----------------------^
> > >
> > > Since oniguruma is listed as a run-time dependency, does this mean the
> > > description is wrong? Or is oniguruma only needed to build?
> > >
>

^ changed

[-- Attachment #1.2: Type: text/html, Size: 2174 bytes --]

[-- Attachment #2: 0002-gnu-Add-jq.patch --]
[-- Type: text/x-patch, Size: 2678 bytes --]

From 9bc43e4ee37a35ba8e724eac103c39c72d870f75 Mon Sep 17 00:00:00 2001
From: Jelle Licht <jlicht@fsfe.org>
Date: Sat, 26 Mar 2016 22:49:42 +0100
Subject: [PATCH 2/2] gnu: Add jq

* gnu/packages/web.scm: (jq): New variable
---
 gnu/packages/web.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 516e623..49fe19e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
 ;;; Copyright © 2015, 2016 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
+;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -52,10 +53,12 @@
   #:use-module (gnu packages python)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages valgrind)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages texinfo)
+  #:use-module (gnu packages textutils)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages statistics))
 
@@ -3109,3 +3112,33 @@ callback or connection interfaces.")
      "Gumbo is an implementation of the HTML5 parsing algorithm implemented as
 a pure C99 library.")
     (license l:asl2.0)))
+
+(define-public jq
+  (package
+    (name "jq")
+    (version "1.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/stedolan/" name
+                                  "/releases/download/" name "-" version
+                                  "/" name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0g29kyz4ykasdcrb0zmbrp2jqs9kv1wz9swx849i2d1ncknbzln4"))))
+    (inputs
+     `(("oniguruma" ,oniguruma)))
+    (native-inputs
+     `(;; TODO fix gems to generate documentation
+       ;;("ruby" ,ruby)
+       ;;("bundler" ,bundler)
+       ("valgrind" ,valgrind)))
+    (build-system gnu-build-system)
+    (home-page "http://stedolan.github.io/jq/")
+    (synopsis "Command-line JSON processor")
+    (description "jq is like sed for JSON data – you can use it to slice and
+filter and map and transform structured data with the same ease that sed, awk,
+grep and friends let you play with text.  It is written in portable C.  jq and
+can mangle the data format that you have into the one that you want with very
+little effort, and the program to do so is often shorter and simpler than
+you’d expect.")
+    (license (list l:expat l:cc-by3.0))))
-- 
2.7.3


  reply	other threads:[~2016-03-26 23:34 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-26 17:41 [PATCH 2/2] Add jq Jelle Licht
2016-03-26 19:13 ` Alex Griffin
2016-03-26 22:06   ` Jelle Licht
2016-03-26 22:45     ` Leo Famulari
2016-03-26 22:53       ` Jelle Licht
2016-03-26 23:15         ` Alex Griffin
2016-03-26 23:26         ` Leo Famulari
2016-03-26 23:34           ` Jelle Licht [this message]
2016-04-01  8:59             ` Alex Kost

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='CAPsKtfKFzm6T6y=-Lbc_+iouu1MagK=AfT1wzMwdkJkbbjU2nw@mail.gmail.com' \
    --to=jlicht@fsfe.org \
    --cc=guix-devel@gnu.org \
    --cc=leo@famulari.name \
    /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).