GNU bug report logs - #29898
[PATCH 4/4] gnu: Add kurly.

Previous Next

Package: guix-patches;

Reported by: Leo Famulari <leo <at> famulari.name>

Date: Fri, 29 Dec 2017 20:53:01 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

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 29898 in the body.
You can then email your comments to 29898 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#29898; Package guix-patches. (Fri, 29 Dec 2017 20:53:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Leo Famulari <leo <at> famulari.name>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 29 Dec 2017 20:53:01 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: guix-patches <at> gnu.org
Subject: [PATCH 4/4] gnu: Add kurly.
Date: Fri, 29 Dec 2017 15:52:13 -0500
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#29898; Package guix-patches. (Sun, 31 Dec 2017 08:08:01 GMT) Full text and rfc822 format available.

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

From: Catonano <catonano <at> gmail.com>
To: Leo Famulari <leo <at> famulari.name>
Cc: 29898 <at> debbugs.gnu.org
Subject: Re: [bug#29898] [PATCH 4/4] gnu: Add kurly.
Date: Sun, 31 Dec 2017 09:07:20 +0100
[Message part 1 (text/plain, inline)]
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 <at> 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
>
>
>
>
>
[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#29898; Package guix-patches. (Sun, 31 Dec 2017 14:39:02 GMT) Full text and rfc822 format available.

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

From: Marius Bakke <mbakke <at> fastmail.com>
To: Leo Famulari <leo <at> famulari.name>, 29898 <at> debbugs.gnu.org
Subject: Re: [bug#29898] [PATCH 4/4] gnu: Add kurly.
Date: Sun, 31 Dec 2017 15:38:16 +0100
[Message part 1 (text/plain, inline)]
Leo Famulari <leo <at> 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 :)
[signature.asc (application/pgp-signature, inline)]

bug closed, send any further explanations to 29898 <at> debbugs.gnu.org and Leo Famulari <leo <at> famulari.name> Request was from Leo Famulari <leo <at> famulari.name> to control <at> debbugs.gnu.org. (Sun, 31 Dec 2017 17:38:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 29 Jan 2018 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 143 days ago.

Previous Next


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