all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: gnurl: Update to 7.50.2-1.
@ 2016-09-10 12:19 ng0
  2016-09-11  6:15 ` Efraim Flashner
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2016-09-10 12:19 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gnunet.scm (gnurl): Update to 7.50.2-1.
---
 gnu/packages/gnunet.scm | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index cdc9872..60aa671 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -158,7 +158,7 @@ and support for SSL3 and TLS.")
 (define-public gnurl
   (package
    (name "gnurl")
-   (version "7.50.1")
+   (version "7.50.2-1")
    (source (origin
             (method url-fetch)
             (uri (let ((version-with-underscores
@@ -167,7 +167,7 @@ and support for SSL3 and TLS.")
                                   name "-" version-with-underscores ".tar.bz2")))
             (sha256
              (base32
-              "0irb8df3lqd9w1pb627q260hn448vbkh0sn4l6p6jh0q8lqscv84"))))
+              "0bxm2015xvcazgh103hi5rpdnl2hbipx0gd5z6a65bj6nzky0pml"))))
    (build-system gnu-build-system)
    (inputs `(("gnutls" ,gnutls)
              ("libidn" ,libidn)
@@ -189,21 +189,16 @@ and support for SSL3 and TLS.")
                           "--disable-telnet" "--disable-tftp" "--disable-pop3"
                           "--disable-imap" "--disable-smtp" "--disable-gopher"
                           "--disable-file" "--disable-ftp" "--disable-smb")
-     #:test-target "test"
-     #:parallel-tests? #f
-     #:phases
-     ;; We have to patch runtests.pl in tests/ directory
+      #:test-target "test"
+      #:parallel-tests? #f
+      #:phases
+      ;; We have to patch runtests.pl in tests/ directory
       (alist-cons-before
        'check 'patch-runtests
        (lambda _
          (substitute* "tests/runtests.pl"
            (("/bin/sh") (which "sh"))))
-       ;; To be discussed with upstream.
-       (alist-cons-before
-        'check 'delete-failing-test1139
-        (lambda _
-          (delete-file "tests/data/test1139"))
-       %standard-phases))))
+       %standard-phases)))
    (synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL")
    (description
     "Gnurl is a microfork of cURL, a command line tool for transferring data
-- 
2.10.0

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

* Re: [PATCH] gnu: gnurl: Update to 7.50.2-1.
  2016-09-10 12:19 [PATCH] gnu: gnurl: Update to 7.50.2-1 ng0
@ 2016-09-11  6:15 ` Efraim Flashner
  2016-09-11  7:41   ` ng0
  0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2016-09-11  6:15 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

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

On Sat, Sep 10, 2016 at 12:19:03PM +0000, ng0 wrote:
> * gnu/packages/gnunet.scm (gnurl): Update to 7.50.2-1.
> ---
>  gnu/packages/gnunet.scm | 19 +++++++------------
>  1 file changed, 7 insertions(+), 12 deletions(-)
> 
> diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
> index cdc9872..60aa671 100644
> --- a/gnu/packages/gnunet.scm
> +++ b/gnu/packages/gnunet.scm
> @@ -158,7 +158,7 @@ and support for SSL3 and TLS.")
>  (define-public gnurl
>    (package
>     (name "gnurl")
> -   (version "7.50.1")
> +   (version "7.50.2-1")
>     (source (origin
>              (method url-fetch)
>              (uri (let ((version-with-underscores
> @@ -167,7 +167,7 @@ and support for SSL3 and TLS.")
>                                    name "-" version-with-underscores ".tar.bz2")))
>              (sha256
>               (base32
> -              "0irb8df3lqd9w1pb627q260hn448vbkh0sn4l6p6jh0q8lqscv84"))))
> +              "0bxm2015xvcazgh103hi5rpdnl2hbipx0gd5z6a65bj6nzky0pml"))))
>     (build-system gnu-build-system)
>     (inputs `(("gnutls" ,gnutls)
>               ("libidn" ,libidn)
> @@ -189,21 +189,16 @@ and support for SSL3 and TLS.")
>                            "--disable-telnet" "--disable-tftp" "--disable-pop3"
>                            "--disable-imap" "--disable-smtp" "--disable-gopher"
>                            "--disable-file" "--disable-ftp" "--disable-smb")
> -     #:test-target "test"
> -     #:parallel-tests? #f
> -     #:phases
> -     ;; We have to patch runtests.pl in tests/ directory
> +      #:test-target "test"
> +      #:parallel-tests? #f
> +      #:phases
> +      ;; We have to patch runtests.pl in tests/ directory
>        (alist-cons-before
>         'check 'patch-runtests
>         (lambda _
>           (substitute* "tests/runtests.pl"
>             (("/bin/sh") (which "sh"))))
> -       ;; To be discussed with upstream.
> -       (alist-cons-before
> -        'check 'delete-failing-test1139
> -        (lambda _
> -          (delete-file "tests/data/test1139"))
> -       %standard-phases))))
> +       %standard-phases)))
>     (synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL")
>     (description
>      "Gnurl is a microfork of cURL, a command line tool for transferring data
> -- 
> 2.10.0
> 

Pushed, with a note in the commit message about removing the
'delete-failing-test1139 phase.

-- 
Efraim Flashner   <efraim@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

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

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

* Re: [PATCH] gnu: gnurl: Update to 7.50.2-1.
  2016-09-11  6:15 ` Efraim Flashner
@ 2016-09-11  7:41   ` ng0
  0 siblings, 0 replies; 3+ messages in thread
From: ng0 @ 2016-09-11  7:41 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> [ Unknown signature status ]
> On Sat, Sep 10, 2016 at 12:19:03PM +0000, ng0 wrote:
>> * gnu/packages/gnunet.scm (gnurl): Update to 7.50.2-1.
>> ---
>>  gnu/packages/gnunet.scm | 19 +++++++------------
>>  1 file changed, 7 insertions(+), 12 deletions(-)
>> 
>> diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
>> index cdc9872..60aa671 100644
>> --- a/gnu/packages/gnunet.scm
>> +++ b/gnu/packages/gnunet.scm
>> @@ -158,7 +158,7 @@ and support for SSL3 and TLS.")
>>  (define-public gnurl
>>    (package
>>     (name "gnurl")
>> -   (version "7.50.1")
>> +   (version "7.50.2-1")
>>     (source (origin
>>              (method url-fetch)
>>              (uri (let ((version-with-underscores
>> @@ -167,7 +167,7 @@ and support for SSL3 and TLS.")
>>                                    name "-" version-with-underscores ".tar.bz2")))
>>              (sha256
>>               (base32
>> -              "0irb8df3lqd9w1pb627q260hn448vbkh0sn4l6p6jh0q8lqscv84"))))
>> +              "0bxm2015xvcazgh103hi5rpdnl2hbipx0gd5z6a65bj6nzky0pml"))))
>>     (build-system gnu-build-system)
>>     (inputs `(("gnutls" ,gnutls)
>>               ("libidn" ,libidn)
>> @@ -189,21 +189,16 @@ and support for SSL3 and TLS.")
>>                            "--disable-telnet" "--disable-tftp" "--disable-pop3"
>>                            "--disable-imap" "--disable-smtp" "--disable-gopher"
>>                            "--disable-file" "--disable-ftp" "--disable-smb")
>> -     #:test-target "test"
>> -     #:parallel-tests? #f
>> -     #:phases
>> -     ;; We have to patch runtests.pl in tests/ directory
>> +      #:test-target "test"
>> +      #:parallel-tests? #f
>> +      #:phases
>> +      ;; We have to patch runtests.pl in tests/ directory
>>        (alist-cons-before
>>         'check 'patch-runtests
>>         (lambda _
>>           (substitute* "tests/runtests.pl"
>>             (("/bin/sh") (which "sh"))))
>> -       ;; To be discussed with upstream.
>> -       (alist-cons-before
>> -        'check 'delete-failing-test1139
>> -        (lambda _
>> -          (delete-file "tests/data/test1139"))
>> -       %standard-phases))))
>> +       %standard-phases)))
>>     (synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL")
>>     (description
>>      "Gnurl is a microfork of cURL, a command line tool for transferring data
>> -- 
>> 2.10.0
>> 
>
> Pushed, with a note in the commit message about removing the
> 'delete-failing-test1139 phase.

Those are the small details which I occasionally miss to mention in
commit messages. Thanks.

> -- 
> Efraim Flashner   <efraim@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

-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

end of thread, other threads:[~2016-09-11  7:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-10 12:19 [PATCH] gnu: gnurl: Update to 7.50.2-1 ng0
2016-09-11  6:15 ` Efraim Flashner
2016-09-11  7:41   ` ng0

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.