unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress.
@ 2017-12-29 20:52 Leo Famulari
  2017-12-29 20:52 ` [bug#29899] [PATCH 2/4] gnu: Add go-github-com-aki237-nscjar Leo Famulari
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Leo Famulari @ 2017-12-29 20:52 UTC (permalink / raw)
  To: 29901

* gnu/packages/golang.scm (go-github-com-alsm-ioprogress): New variable.
---
 gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b8f86ac5f..6f38fd3d0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -27,8 +27,10 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix utils)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix packages)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system go)
   #:use-module (gnu packages admin)
   #:use-module (gnu packages gcc)
   #:use-module (gnu packages base)
@@ -377,3 +379,28 @@ sequential processes (CSP) concurrent programming features added.")
     (supported-systems %supported-systems)))
 
 (define-public go go-1.9)
+
+(define-public go-github-com-alsm-ioprogress
+  (let ((commit "063c3725f436e7fba0c8f588547bee21ffec7ac5")
+        (revision "0"))
+    (package
+      (name "go-github-com-alsm-ioprogress")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/alsm/ioprogress.git")
+                       (commit commit)))
+                (sha256
+                 (base32
+                  "10ym5qlq77nynmkxbk767f2hfwyxg2k7hrzph05hvgzv833dhivh"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/alsm/ioprogress"))
+      (synopsis "Textual progress bars in Go")
+      (description "@code{ioprogress} is a Go library with implementations of
+@code{io.Reader} and @code{io.Writer} that draws progress bars. The primary use
+case for these are for command-line applications but alternate progress bar
+writers can be supplied for alternate environments.")
+      (home-page "https://github.com/alsm/ioprogress")
+      (license license:expat))))
-- 
2.15.1

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

* [bug#29899] [PATCH 2/4] gnu: Add go-github-com-aki237-nscjar.
  2017-12-29 20:52 [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Leo Famulari
@ 2017-12-29 20:52 ` Leo Famulari
  2017-12-29 20:52 ` [bug#29900] [PATCH 3/4] gnu: Add go-github-com-davidjpeacock-cli Leo Famulari
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2017-12-29 20:52 UTC (permalink / raw)
  To: 29899

* gnu/packages/golang.scm (go-github-com-aki237-nscjar): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 6f38fd3d0..43dce66fd 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -404,3 +404,27 @@ case for these are for command-line applications but alternate progress bar
 writers can be supplied for alternate environments.")
       (home-page "https://github.com/alsm/ioprogress")
       (license license:expat))))
+
+(define-public go-github-com-aki237-nscjar
+  (let ((commit "e2df936ddd6050d30dd90c7214c02b5019c42f06")
+        (revision "0"))
+    (package
+      (name "go-github-com-aki237-nscjar")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/aki237/nscjar.git")
+                       (commit commit)))
+                (sha256
+                 (base32
+                  "03y7zzq12qvhsq86lb06sgns8xrkblbn7i7wd886wk3zr5574b96"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/aki237/nscjar"))
+      (synopsis "Handle Netscape / Mozilla cookies")
+      (description "@code{nscjar} is a Go library used to parse and output
+Netscape/Mozilla's old-style cookie files.  It also implements a simple cookie
+jar struct to manage the cookies added to the cookie jar.")
+      (home-page "https://github.com/aki237/nscjar")
+      (license license:expat))))
-- 
2.15.1

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

* [bug#29900] [PATCH 3/4] gnu: Add go-github-com-davidjpeacock-cli.
  2017-12-29 20:52 [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Leo Famulari
  2017-12-29 20:52 ` [bug#29899] [PATCH 2/4] gnu: Add go-github-com-aki237-nscjar Leo Famulari
@ 2017-12-29 20:52 ` Leo Famulari
  2017-12-29 20:52 ` [bug#29898] [PATCH 4/4] gnu: Add kurly Leo Famulari
  2017-12-31 14:27 ` [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Marius Bakke
  3 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2017-12-29 20:52 UTC (permalink / raw)
  To: 29900

* gnu/packages/golang.scm (go-github-com-davidjpeacock-cli): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 43dce66fd..287d985cf 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -428,3 +428,27 @@ Netscape/Mozilla's old-style cookie files.  It also implements a simple cookie
 jar struct to manage the cookies added to the cookie jar.")
       (home-page "https://github.com/aki237/nscjar")
       (license license:expat))))
+
+(define-public go-github-com-davidjpeacock-cli
+  (let ((commit "8ba6f23b6e36d03666a14bd9421f5e3efcb59aca")
+        (revision "0"))
+    (package
+      (name "go-github-com-davidjpeacock-cli")
+      (version (git-version "1.19.1" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/davidjpeacock/cli.git")
+                       (commit commit)))
+                (sha256
+                 (base32
+                  "01s53ny3p0fdx64rnwcnmjj4xpc5adihnh6islsfq5z1ph2phhnj"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/davidjpeacock/cli"))
+      (synopsis "Build command-line interfaces in Go")
+      (description "@code{cli} is a package for building command line
+interfaces in Go.  The goal is to enable developers to write fast and
+distributable command line applications in an expressive way.")
+      (home-page "https://github.com/davidjpeacock/cli")
+      (license license:expat))))
-- 
2.15.1

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

* [bug#29898] [PATCH 4/4] gnu: Add kurly.
  2017-12-29 20:52 [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Leo Famulari
  2017-12-29 20:52 ` [bug#29899] [PATCH 2/4] gnu: Add go-github-com-aki237-nscjar Leo Famulari
  2017-12-29 20:52 ` [bug#29900] [PATCH 3/4] gnu: Add go-github-com-davidjpeacock-cli Leo Famulari
@ 2017-12-29 20:52 ` Leo Famulari
  2017-12-31  8:07   ` Catonano
  2017-12-31 14:38   ` Marius Bakke
  2017-12-31 14:27 ` [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Marius Bakke
  3 siblings, 2 replies; 7+ messages in thread
From: Leo Famulari @ 2017-12-29 20:52 UTC (permalink / raw)
  To: 29898

* gnu/packages/curl.scm (kurly): New variable.
---
 gnu/packages/curl.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index 49703c092..4b40dda58 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -25,10 +25,13 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system go)
   #:use-module (gnu packages)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages golang)
   #:use-module (gnu packages groff)
   #:use-module (gnu packages gsasl)
   #:use-module (gnu packages libidn)
@@ -135,3 +138,31 @@ tunneling, and so on.")
         (sha256
          (base32
           "0y3qbjjcxhcvm1yawp3spfssjbskv0g6gyzld6ckif5pf8ygvxpm"))))))
+
+(define-public kurly
+  (package
+    (name "kurly")
+    (version "1.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/davidjpeacock/kurly.git")
+                     (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "1q192f457sjypgvwq7grrf8gq8w272p3zf1d5ppc20mriqm0mbc3"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/davidjpeacock/kurly"))
+    (inputs
+     `(("go-github-com-alsm-ioprogress" ,go-github-com-alsm-ioprogress)
+       ("go-github-com-aki237-nscjar" ,go-github-com-aki237-nscjar)
+       ("go-github-com-davidjpeacock-cli" ,go-github-com-davidjpeacock-cli)))
+    (synopsis "Command-line HTTP client")
+    (description "kurly is an alternative to the widely popular curl
+program, written in Go.  kurly is designed to operate in a similar
+manner to curl, with select features.  Notably, kurly is not aiming for
+feature parity, but common flags and mechanisms particularly within the
+HTTP(S) realm are to be expected.")
+    (home-page "https://github.com/davidjpeacock/kurly")
+    (license license:asl2.0)))
-- 
2.15.1

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

* [bug#29898] [PATCH 4/4] gnu: Add kurly.
  2017-12-29 20:52 ` [bug#29898] [PATCH 4/4] gnu: Add kurly Leo Famulari
@ 2017-12-31  8:07   ` Catonano
  2017-12-31 14:38   ` Marius Bakke
  1 sibling, 0 replies; 7+ messages in thread
From: Catonano @ 2017-12-31  8:07 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 29898

[-- Attachment #1: Type: text/plain, Size: 2585 bytes --]

Hi Leo !

I linted and built all your 4 patches. No errors.

If there's anything else you'd like me to try, let me know

LGTM ! 😀


2017-12-29 21:52 GMT+01:00 Leo Famulari <leo@famulari.name>:

> * gnu/packages/curl.scm (kurly): New variable.
> ---
>  gnu/packages/curl.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
> index 49703c092..4b40dda58 100644
> --- a/gnu/packages/curl.scm
> +++ b/gnu/packages/curl.scm
> @@ -25,10 +25,13 @@
>    #:use-module ((guix licenses) #:prefix license:)
>    #:use-module (guix packages)
>    #:use-module (guix download)
> +  #:use-module (guix git-download)
>    #:use-module (guix utils)
>    #:use-module (guix build-system gnu)
> +  #:use-module (guix build-system go)
>    #:use-module (gnu packages)
>    #:use-module (gnu packages compression)
> +  #:use-module (gnu packages golang)
>    #:use-module (gnu packages groff)
>    #:use-module (gnu packages gsasl)
>    #:use-module (gnu packages libidn)
> @@ -135,3 +138,31 @@ tunneling, and so on.")
>          (sha256
>           (base32
>            "0y3qbjjcxhcvm1yawp3spfssjbskv0g6gyzld6ckif5pf8ygvxpm"))))))
> +
> +(define-public kurly
> +  (package
> +    (name "kurly")
> +    (version "1.1.0")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                     (url "https://github.com/davidjpeacock/kurly.git")
> +                     (commit (string-append "v" version))))
> +              (sha256
> +               (base32
> +                "1q192f457sjypgvwq7grrf8gq8w272
> p3zf1d5ppc20mriqm0mbc3"))))
> +    (build-system go-build-system)
> +    (arguments
> +     '(#:import-path "github.com/davidjpeacock/kurly"))
> +    (inputs
> +     `(("go-github-com-alsm-ioprogress" ,go-github-com-alsm-ioprogress)
> +       ("go-github-com-aki237-nscjar" ,go-github-com-aki237-nscjar)
> +       ("go-github-com-davidjpeacock-cli" ,go-github-com-davidjpeacock-
> cli)))
> +    (synopsis "Command-line HTTP client")
> +    (description "kurly is an alternative to the widely popular curl
> +program, written in Go.  kurly is designed to operate in a similar
> +manner to curl, with select features.  Notably, kurly is not aiming for
> +feature parity, but common flags and mechanisms particularly within the
> +HTTP(S) realm are to be expected.")
> +    (home-page "https://github.com/davidjpeacock/kurly")
> +    (license license:asl2.0)))
> --
> 2.15.1
>
>
>
>
>

[-- Attachment #2: Type: text/html, Size: 3736 bytes --]

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

* [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress.
  2017-12-29 20:52 [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Leo Famulari
                   ` (2 preceding siblings ...)
  2017-12-29 20:52 ` [bug#29898] [PATCH 4/4] gnu: Add kurly Leo Famulari
@ 2017-12-31 14:27 ` Marius Bakke
  3 siblings, 0 replies; 7+ messages in thread
From: Marius Bakke @ 2017-12-31 14:27 UTC (permalink / raw)
  To: Leo Famulari, 29901

[-- Attachment #1: Type: text/plain, Size: 464 bytes --]

Leo Famulari <leo@famulari.name> writes:

> * gnu/packages/golang.scm (go-github-com-alsm-ioprogress): New variable.

[...]

> +      (description "@code{ioprogress} is a Go library with implementations of
> +@code{io.Reader} and @code{io.Writer} that draws progress bars. The primary use
                                                                 ^^^
                                                             missing space?

The other patches LGTM, too.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* [bug#29898] [PATCH 4/4] gnu: Add kurly.
  2017-12-29 20:52 ` [bug#29898] [PATCH 4/4] gnu: Add kurly Leo Famulari
  2017-12-31  8:07   ` Catonano
@ 2017-12-31 14:38   ` Marius Bakke
  1 sibling, 0 replies; 7+ messages in thread
From: Marius Bakke @ 2017-12-31 14:38 UTC (permalink / raw)
  To: Leo Famulari, 29898

[-- Attachment #1: Type: text/plain, Size: 225 bytes --]

Leo Famulari <leo@famulari.name> writes:

> * gnu/packages/curl.scm (kurly): New variable.

[...]

> +    (description "kurly is an alternative to the widely popular curl

The word "widely" is not adding anything here IMO :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2017-12-31 14:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-29 20:52 [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Leo Famulari
2017-12-29 20:52 ` [bug#29899] [PATCH 2/4] gnu: Add go-github-com-aki237-nscjar Leo Famulari
2017-12-29 20:52 ` [bug#29900] [PATCH 3/4] gnu: Add go-github-com-davidjpeacock-cli Leo Famulari
2017-12-29 20:52 ` [bug#29898] [PATCH 4/4] gnu: Add kurly Leo Famulari
2017-12-31  8:07   ` Catonano
2017-12-31 14:38   ` Marius Bakke
2017-12-31 14:27 ` [bug#29901] [PATCH 1/4] gnu: Add go-github-com-alsm-ioprogress Marius Bakke

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