GNU bug report logs - #25878
[PATCH] gnu: Add speedtest-cli.

Previous Next

Package: guix-patches;

Reported by: pjotr.public12 <at> thebird.nl

Date: Sun, 26 Feb 2017 10:57:02 UTC

Severity: normal

Tags: fixed, patch

Done: Ricardo Wurmus <rekado <at> elephly.net>

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 25878 in the body.
You can then email your comments to 25878 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#25878; Package guix-patches. (Sun, 26 Feb 2017 10:57:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to pjotr.public12 <at> thebird.nl:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 26 Feb 2017 10:57:02 GMT) Full text and rfc822 format available.

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

From: pjotr.public12 <at> thebird.nl
To: guix-patches <at> gnu.org
Cc: Pjotr Prins <pjotr.public01 <at> thebird.nl>
Subject: [PATCH] gnu: Add speedtest-cli.
Date: Sun, 26 Feb 2017 10:52:21 +0000
From: Pjotr Prins <pjotr.public01 <at> thebird.nl>

* gnu/packages/networking.scm (speedtest-cli): New variable.
---
 gnu/packages/networking.scm | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index a10fbfe..942ed39 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2016, 2017 ng0 <ng0 <at> libertad.pw>
 ;;; Copyright © 2016 Arun Isaac <arunisaac <at> systemreboot.net>
 ;;; Copyright © 2016 Benz Schenk <benz.schenk <at> uzh.ch>
+;;; Copyright © 2016 Pjotr Prins <pjotr.guix <at> thebird.nl>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -80,7 +81,7 @@
     (description "GNU MAC Changer is a utility for viewing and changing MAC
 addresses of networking devices.  New addresses may be set explicitly or
 randomly.  They can include MAC addresses of the same or other hardware vendors
-or, more generally, MAC addresses of the same category of hardware.") 
+or, more generally, MAC addresses of the same category of hardware.")
     (license license:gpl2+)))
 
 (define-public miredo
@@ -1119,3 +1120,24 @@ IPFIX, RSPAN, CLI, LACP, 802.1ag).")
            license:gpl2                 ; datapath
            license:bsd-2 license:bsd-3
            license:asl2.0))))           ; all other
+
+(define-public speedtest-cli
+  (package
+    (name "speedtest-cli")
+    (version "1.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/sivel/speedtest-cli/archive/v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1ir9fqwr7cl9kfq7dgh9vkydkwf59wsx0cwbzbffw8i313xhzxa1"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/sivel/speedtest-cli")
+    (synopsis "Internet bandwidth tester")
+    (description
+     "Command line interface for testing internet bandwidth using
+speedtest.net.")
+    (license license:asl2.0)))
-- 
2.8.4





Information forwarded to guix-patches <at> gnu.org:
bug#25878; Package guix-patches. (Wed, 01 Mar 2017 18:06:01 GMT) Full text and rfc822 format available.

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

From: Kei Kebreau <kei <at> openmailbox.org>
To: pjotr.public12 <at> thebird.nl
Cc: Pjotr Prins <pjotr.public01 <at> thebird.nl>, 25878 <at> debbugs.gnu.org
Subject: Re: bug#25878: [PATCH] gnu: Add speedtest-cli.
Date: Wed, 01 Mar 2017 13:05:20 -0500
[Message part 1 (text/plain, inline)]
pjotr.public12 <at> thebird.nl writes:

> From: Pjotr Prins <pjotr.public01 <at> thebird.nl>
>
> * gnu/packages/networking.scm (speedtest-cli): New variable.
> ---
>  gnu/packages/networking.scm | 24 +++++++++++++++++++++++-
>  1 file changed, 23 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index a10fbfe..942ed39 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -11,6 +11,7 @@
>  ;;; Copyright © 2016, 2017 ng0 <ng0 <at> libertad.pw>
>  ;;; Copyright © 2016 Arun Isaac <arunisaac <at> systemreboot.net>
>  ;;; Copyright © 2016 Benz Schenk <benz.schenk <at> uzh.ch>
> +;;; Copyright © 2016 Pjotr Prins <pjotr.guix <at> thebird.nl>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -80,7 +81,7 @@
>      (description "GNU MAC Changer is a utility for viewing and changing MAC
>  addresses of networking devices.  New addresses may be set explicitly or
>  randomly.  They can include MAC addresses of the same or other hardware vendors
> -or, more generally, MAC addresses of the same category of hardware.") 
> +or, more generally, MAC addresses of the same category of hardware.")
>      (license license:gpl2+)))
>  
>  (define-public miredo
> @@ -1119,3 +1120,24 @@ IPFIX, RSPAN, CLI, LACP, 802.1ag).")
>             license:gpl2                 ; datapath
>             license:bsd-2 license:bsd-3
>             license:asl2.0))))           ; all other
> +
> +(define-public speedtest-cli
> +  (package
> +    (name "speedtest-cli")
> +    (version "1.0.2")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "https://github.com/sivel/speedtest-cli/archive/v" version ".tar.gz"))
> +       (file-name (string-append name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1ir9fqwr7cl9kfq7dgh9vkydkwf59wsx0cwbzbffw8i313xhzxa1"))))
> +    (build-system python-build-system)
> +    (home-page "https://github.com/sivel/speedtest-cli")
> +    (synopsis "Internet bandwidth tester")
> +    (description
> +     "Command line interface for testing internet bandwidth using
> +speedtest.net.")
> +    (license license:asl2.0)))

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

Information forwarded to guix-patches <at> gnu.org:
bug#25878; Package guix-patches. (Wed, 01 Mar 2017 21:47:02 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Kei Kebreau <kei <at> openmailbox.org>
Cc: pjotr.public12 <at> thebird.nl, 25878 <at> debbugs.gnu.org,
 Pjotr Prins <pjotr.public01 <at> thebird.nl>
Subject: Re: bug#25878: [PATCH] gnu: Add speedtest-cli.
Date: Wed, 1 Mar 2017 16:46:55 -0500
[Message part 1 (text/plain, inline)]
On Wed, Mar 01, 2017 at 01:05:20PM -0500, Kei Kebreau wrote:
> pjotr.public12 <at> thebird.nl writes:
> 
> > From: Pjotr Prins <pjotr.public01 <at> thebird.nl>
> >
> > * gnu/packages/networking.scm (speedtest-cli): New variable.

> LGTM!

Feel free to push :)
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#25878; Package guix-patches. (Thu, 02 Mar 2017 09:17:02 GMT) Full text and rfc822 format available.

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

From: Efraim Flashner <efraim <at> flashner.co.il>
To: pjotr.public12 <at> thebird.nl
Cc: 25878 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add speedtest-cli.
Date: Thu, 2 Mar 2017 11:16:10 +0200
[Message part 1 (text/plain, inline)]
On Sun, Feb 26, 2017 at 10:52:21AM +0000, pjotr.public12 <at> thebird.nl wrote:
> From: Pjotr Prins <pjotr.public01 <at> thebird.nl>
> 
> * gnu/packages/networking.scm (speedtest-cli): New variable.
> ---
>  gnu/packages/networking.scm | 24 +++++++++++++++++++++++-
>  1 file changed, 23 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index a10fbfe..942ed39 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -11,6 +11,7 @@
>  ;;; Copyright © 2016, 2017 ng0 <ng0 <at> libertad.pw>
>  ;;; Copyright © 2016 Arun Isaac <arunisaac <at> systemreboot.net>
>  ;;; Copyright © 2016 Benz Schenk <benz.schenk <at> uzh.ch>
> +;;; Copyright © 2016 Pjotr Prins <pjotr.guix <at> thebird.nl>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -80,7 +81,7 @@
>      (description "GNU MAC Changer is a utility for viewing and changing MAC
>  addresses of networking devices.  New addresses may be set explicitly or
>  randomly.  They can include MAC addresses of the same or other hardware vendors
> -or, more generally, MAC addresses of the same category of hardware.") 
> +or, more generally, MAC addresses of the same category of hardware.")
>      (license license:gpl2+)))
>  
>  (define-public miredo
> @@ -1119,3 +1120,24 @@ IPFIX, RSPAN, CLI, LACP, 802.1ag).")
>             license:gpl2                 ; datapath
>             license:bsd-2 license:bsd-3
>             license:asl2.0))))           ; all other
> +
> +(define-public speedtest-cli
> +  (package
> +    (name "speedtest-cli")
> +    (version "1.0.2")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "https://github.com/sivel/speedtest-cli/archive/v" version ".tar.gz"))
> +       (file-name (string-append name "-" version ".tar.gz"))

for my local copy I have it as (uri (pypi-uri "speedtest-cli" version))

> +       (sha256
> +        (base32
> +         "1ir9fqwr7cl9kfq7dgh9vkydkwf59wsx0cwbzbffw8i313xhzxa1"))))
> +    (build-system python-build-system)
> +    (home-page "https://github.com/sivel/speedtest-cli")
> +    (synopsis "Internet bandwidth tester")
> +    (description
> +     "Command line interface for testing internet bandwidth using
> +speedtest.net.")
> +    (license license:asl2.0)))
> -- 
> 2.8.4
> 
> 
> 
> 

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#25878; Package guix-patches. (Thu, 02 Mar 2017 18:31:02 GMT) Full text and rfc822 format available.

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

From: Kei Kebreau <kei <at> openmailbox.org>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: pjotr.public12 <at> thebird.nl, 25878 <at> debbugs.gnu.org
Subject: Re: bug#25878: [PATCH] gnu: Add speedtest-cli.
Date: Thu, 02 Mar 2017 13:29:46 -0500
[Message part 1 (text/plain, inline)]
Efraim Flashner <efraim <at> flashner.co.il> writes:

> On Sun, Feb 26, 2017 at 10:52:21AM +0000, pjotr.public12 <at> thebird.nl wrote:
>> From: Pjotr Prins <pjotr.public01 <at> thebird.nl>
>> 
>> * gnu/packages/networking.scm (speedtest-cli): New variable.
>> ---
>>  gnu/packages/networking.scm | 24 +++++++++++++++++++++++-
>>  1 file changed, 23 insertions(+), 1 deletion(-)
>> 
>> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
>> index a10fbfe..942ed39 100644
>> --- a/gnu/packages/networking.scm
>> +++ b/gnu/packages/networking.scm
>> @@ -11,6 +11,7 @@
>>  ;;; Copyright © 2016, 2017 ng0 <ng0 <at> libertad.pw>
>>  ;;; Copyright © 2016 Arun Isaac <arunisaac <at> systemreboot.net>
>>  ;;; Copyright © 2016 Benz Schenk <benz.schenk <at> uzh.ch>
>> +;;; Copyright © 2016 Pjotr Prins <pjotr.guix <at> thebird.nl>
>>  ;;;
>>  ;;; This file is part of GNU Guix.
>>  ;;;
>> @@ -80,7 +81,7 @@
>>      (description "GNU MAC Changer is a utility for viewing and changing MAC
>>  addresses of networking devices.  New addresses may be set explicitly or
>>  randomly.  They can include MAC addresses of the same or other hardware vendors
>> -or, more generally, MAC addresses of the same category of hardware.") 
>> +or, more generally, MAC addresses of the same category of hardware.")
>>      (license license:gpl2+)))
>>  
>>  (define-public miredo
>> @@ -1119,3 +1120,24 @@ IPFIX, RSPAN, CLI, LACP, 802.1ag).")
>>             license:gpl2                 ; datapath
>>             license:bsd-2 license:bsd-3
>>             license:asl2.0))))           ; all other
>> +
>> +(define-public speedtest-cli
>> +  (package
>> +    (name "speedtest-cli")
>> +    (version "1.0.2")
>> +    (source
>> +     (origin
>> +       (method url-fetch)
>> +       (uri (string-append
>> +             "https://github.com/sivel/speedtest-cli/archive/v" version ".tar.gz"))
>> +       (file-name (string-append name "-" version ".tar.gz"))
>
> for my local copy I have it as (uri (pypi-uri "speedtest-cli" version))
>

I tried using this URI, but I get a 404 error.

>> +       (sha256
>> +        (base32
>> +         "1ir9fqwr7cl9kfq7dgh9vkydkwf59wsx0cwbzbffw8i313xhzxa1"))))
>> +    (build-system python-build-system)
>> +    (home-page "https://github.com/sivel/speedtest-cli")
>> +    (synopsis "Internet bandwidth tester")
>> +    (description
>> +     "Command line interface for testing internet bandwidth using
>> +speedtest.net.")
>> +    (license license:asl2.0)))
>> -- 
>> 2.8.4
>> 
>> 
>> 
>> 
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#25878; Package guix-patches. (Thu, 02 Mar 2017 18:33:02 GMT) Full text and rfc822 format available.

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

From: Kei Kebreau <kei <at> openmailbox.org>
To: Leo Famulari <leo <at> famulari.name>
Cc: pjotr.public12 <at> thebird.nl, 25878 <at> debbugs.gnu.org,
 Pjotr Prins <pjotr.public01 <at> thebird.nl>
Subject: Re: bug#25878: [PATCH] gnu: Add speedtest-cli.
Date: Thu, 02 Mar 2017 13:32:40 -0500
[Message part 1 (text/plain, inline)]
Leo Famulari <leo <at> famulari.name> writes:

> On Wed, Mar 01, 2017 at 01:05:20PM -0500, Kei Kebreau wrote:
>> pjotr.public12 <at> thebird.nl writes:
>> 
>> > From: Pjotr Prins <pjotr.public01 <at> thebird.nl>
>> >
>> > * gnu/packages/networking.scm (speedtest-cli): New variable.
>
>> LGTM!
>
> Feel free to push :)

Oh, I thought Pjotr had the ability to push to the repo. :-P

Pushed as 38510546d9bfdd3d3c72b9039e6a048b1cb66199.
[signature.asc (application/pgp-signature, inline)]

Added tag(s) fixed. Request was from Ricardo Wurmus <rekado <at> elephly.net> to control <at> debbugs.gnu.org. (Fri, 03 Mar 2017 07:07:01 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 25878 <at> debbugs.gnu.org and pjotr.public12 <at> thebird.nl Request was from Ricardo Wurmus <rekado <at> elephly.net> to control <at> debbugs.gnu.org. (Fri, 03 Mar 2017 07:07:03 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. (Fri, 31 Mar 2017 11:24:05 GMT) Full text and rfc822 format available.

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

Previous Next


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