* [PATCH] gnurl: Update to 7.48.0.
@ 2016-07-01 18:33 ng0
2016-07-02 19:23 ` Efraim Flashner
2016-07-04 0:24 ` ng0
0 siblings, 2 replies; 6+ messages in thread
From: ng0 @ 2016-07-01 18:33 UTC (permalink / raw)
To: guix-devel
This updates libgnurl to 7.48.0.
gnurl included tests all succeded.
From 0e64b9f5d4d499b8d58321376b69f3ff7f422aa3 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Fri, 1 Jul 2016 18:21:45 +0000
Subject: [PATCH] gnu: gnurl: Update to 7.48.0.
* gnu/packages/gnunet.scm (gnurl): Update to 7.48.0.
---
gnu/packages/gnunet.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index bea05db..285d710 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -153,13 +153,14 @@ and support for SSL3 and TLS.")
(define-public gnurl
(package
(name "gnurl")
- (version "7.45.0")
+ (version "7.48.0")
(source (origin
(method url-fetch)
(uri (string-append "https://gnunet.org/sites/default/files/gnurl-"
- version ".tar.bz2"))
+ "7_48_0.tar.bz2"))
(sha256
- (base32 "0hd8w4wyjwagd4k6vm6srphqbmysz08rcwf8z7f4b2d6d2yrn3mm"))))
+ (base32
+ "14gch4rdibrc8qs4mijsczxvl45dsclf234g17dk6c8nc2s4bm0a"))))
(build-system gnu-build-system)
(inputs `(("gnutls" ,gnutls)
("libidn" ,libidn)
--
2.9.0
--
♥Ⓐ ng0
For non-prism friendly talk find me on
psyced.org / loupsycedyglgamf.onion
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] gnurl: Update to 7.48.0.
2016-07-01 18:33 [PATCH] gnurl: Update to 7.48.0 ng0
@ 2016-07-02 19:23 ` Efraim Flashner
2016-07-02 23:47 ` ng0
2016-07-03 22:45 ` ng0
2016-07-04 0:24 ` ng0
1 sibling, 2 replies; 6+ messages in thread
From: Efraim Flashner @ 2016-07-02 19:23 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2058 bytes --]
On Fri, Jul 01, 2016 at 06:33:01PM +0000, ng0@we.make.ritual.n0.is wrote:
> This updates libgnurl to 7.48.0.
> gnurl included tests all succeded.
>
> From 0e64b9f5d4d499b8d58321376b69f3ff7f422aa3 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Fri, 1 Jul 2016 18:21:45 +0000
> Subject: [PATCH] gnu: gnurl: Update to 7.48.0.
>
> * gnu/packages/gnunet.scm (gnurl): Update to 7.48.0.
> ---
> gnu/packages/gnunet.scm | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
> index bea05db..285d710 100644
> --- a/gnu/packages/gnunet.scm
> +++ b/gnu/packages/gnunet.scm
> @@ -153,13 +153,14 @@ and support for SSL3 and TLS.")
> (define-public gnurl
> (package
> (name "gnurl")
> - (version "7.45.0")
> + (version "7.48.0")
> (source (origin
> (method url-fetch)
> (uri (string-append "https://gnunet.org/sites/default/files/gnurl-"
> - version ".tar.bz2"))
> + "7_48_0.tar.bz2"))
There's actually a method for switching from periods to underscores.
(string-join (string-split version #\.) "_")
> (sha256
> - (base32 "0hd8w4wyjwagd4k6vm6srphqbmysz08rcwf8z7f4b2d6d2yrn3mm"))))
> + (base32
> + "14gch4rdibrc8qs4mijsczxvl45dsclf234g17dk6c8nc2s4bm0a"))))
> (build-system gnu-build-system)
> (inputs `(("gnutls" ,gnutls)
> ("libidn" ,libidn)
> --
> 2.9.0
>
>
> --
> ♥Ⓐ ng0
> For non-prism friendly talk find me on
> psyced.org / loupsycedyglgamf.onion
>
I also got an error about a missing name, not sure what that's about.
Applying: This updates libgnurl to 7.48.0.
fatal: empty ident name (for <>) not allowed
--
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] 6+ messages in thread
* Re: [PATCH] gnurl: Update to 7.48.0.
2016-07-02 19:23 ` Efraim Flashner
@ 2016-07-02 23:47 ` ng0
2016-07-03 22:45 ` ng0
1 sibling, 0 replies; 6+ messages in thread
From: ng0 @ 2016-07-02 23:47 UTC (permalink / raw)
To: guix-devel
Efraim Flashner writes:
> On Fri, Jul 01, 2016 at 06:33:01PM +0000, ng0@we.make.ritual.n0.is wrote:
>> This updates libgnurl to 7.48.0.
>> gnurl included tests all succeded.
>>
>> From 0e64b9f5d4d499b8d58321376b69f3ff7f422aa3 Mon Sep 17 00:00:00 2001
>> From: ng0 <ng0@we.make.ritual.n0.is>
>> Date: Fri, 1 Jul 2016 18:21:45 +0000
>> Subject: [PATCH] gnu: gnurl: Update to 7.48.0.
>>
>> * gnu/packages/gnunet.scm (gnurl): Update to 7.48.0.
>> ---
>> gnu/packages/gnunet.scm | 7 ++++---
>> 1 file changed, 4 insertions(+), 3 deletions(-)
>>
>> diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
>> index bea05db..285d710 100644
>> --- a/gnu/packages/gnunet.scm
>> +++ b/gnu/packages/gnunet.scm
>> @@ -153,13 +153,14 @@ and support for SSL3 and TLS.")
>> (define-public gnurl
>> (package
>> (name "gnurl")
>> - (version "7.45.0")
>> + (version "7.48.0")
>> (source (origin
>> (method url-fetch)
>> (uri (string-append "https://gnunet.org/sites/default/files/gnurl-"
>> - version ".tar.bz2"))
>> + "7_48_0.tar.bz2"))
>
> There's actually a method for switching from periods to underscores.
> (string-join (string-split version #\.) "_")
>
>> (sha256
>> - (base32 "0hd8w4wyjwagd4k6vm6srphqbmysz08rcwf8z7f4b2d6d2yrn3mm"))))
>> + (base32
>> + "14gch4rdibrc8qs4mijsczxvl45dsclf234g17dk6c8nc2s4bm0a"))))
>> (build-system gnu-build-system)
>> (inputs `(("gnutls" ,gnutls)
>> ("libidn" ,libidn)
>> --
>> 2.9.0
>>
>>
>> --
>> ♥Ⓐ ng0
>> For non-prism friendly talk find me on
>> psyced.org / loupsycedyglgamf.onion
>>
>
> I also got an error about a missing name, not sure what that's about.
>
> Applying: This updates libgnurl to 7.48.0.
> fatal: empty ident name (for <>) not allowed
Thanks.
That's strange. Okay, I will fix this and see if I can reproduce
this error.
--
♥Ⓐ ng0
For non-prism friendly talk find me on
psyced.org / loupsycedyglgamf.onion
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnurl: Update to 7.48.0.
2016-07-02 19:23 ` Efraim Flashner
2016-07-02 23:47 ` ng0
@ 2016-07-03 22:45 ` ng0
1 sibling, 0 replies; 6+ messages in thread
From: ng0 @ 2016-07-03 22:45 UTC (permalink / raw)
To: guix-devel
Updated patch is coming as the next message after I built it.
Efraim Flashner writes:
> I also got an error about a missing name, not sure what that's about.
>
> Applying: This updates libgnurl to 7.48.0.
> fatal: empty ident name (for <>) not allowed
This error is weird. As you can see from my patches, I have
name+email set, so git merge should complaint about a missing
name unless I was using a bad configuration, but
user.name and user.email are set.
--
♥Ⓐ ng0
For non-prism friendly talk find me on
psyced.org / loupsycedyglgamf.onion
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnurl: Update to 7.48.0.
2016-07-01 18:33 [PATCH] gnurl: Update to 7.48.0 ng0
2016-07-02 19:23 ` Efraim Flashner
@ 2016-07-04 0:24 ` ng0
2016-07-04 7:02 ` Efraim Flashner
1 sibling, 1 reply; 6+ messages in thread
From: ng0 @ 2016-07-04 0:24 UTC (permalink / raw)
To: guix-devel
I hope this works now.
From 09b306ffa62d9555dc835dfb933a5ad4434a641e Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Fri, 1 Jul 2016 18:21:45 +0000
Subject: [PATCH] gnu: gnurl: Update to 7.48.0.
* gnu/packages/gnunet.scm (gnurl): Update to 7.48.0.
---
gnu/packages/gnunet.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index bea05db..f052eab 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -153,13 +153,16 @@ and support for SSL3 and TLS.")
(define-public gnurl
(package
(name "gnurl")
- (version "7.45.0")
+ (version "7.48.0")
(source (origin
(method url-fetch)
- (uri (string-append "https://gnunet.org/sites/default/files/gnurl-"
- version ".tar.bz2"))
+ (uri (let ((version-with-underscores
+ (string-join (string-split version #\.) "_")))
+ (string-append "https://gnunet.org/sites/default/files/"
+ name "-" version-with-underscores ".tar.bz2")))
(sha256
- (base32 "0hd8w4wyjwagd4k6vm6srphqbmysz08rcwf8z7f4b2d6d2yrn3mm"))))
+ (base32
+ "14gch4rdibrc8qs4mijsczxvl45dsclf234g17dk6c8nc2s4bm0a"))))
(build-system gnu-build-system)
(inputs `(("gnutls" ,gnutls)
("libidn" ,libidn)
--
2.9.0
--
♥Ⓐ ng0
For non-prism friendly talk find me on
psyced.org / loupsycedyglgamf.onion
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-07-04 7:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-01 18:33 [PATCH] gnurl: Update to 7.48.0 ng0
2016-07-02 19:23 ` Efraim Flashner
2016-07-02 23:47 ` ng0
2016-07-03 22:45 ` ng0
2016-07-04 0:24 ` ng0
2016-07-04 7:02 ` Efraim Flashner
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).