* [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support.
@ 2016-07-19 10:03 ng0
2016-07-19 11:02 ` Ricardo Wurmus
0 siblings, 1 reply; 14+ messages in thread
From: ng0 @ 2016-07-19 10:03 UTC (permalink / raw)
To: guix-devel
From 9571f0f56532be3bf4bb0239a41f722d186790c0 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Tue, 19 Jul 2016 09:54:28 +0000
Subject: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support.
* gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.033.
(perl-io-socket-ssl)[propagated-inputs]: Add perl-uri.
---
gnu/packages/web.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 5502a0f..d9236b6 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -2387,18 +2387,21 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
(define-public perl-io-socket-ssl
(package
(name "perl-io-socket-ssl")
- (version "2.002")
+ (version "2.033")
(source (origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/S/SU/SULLR/"
"IO-Socket-SSL-" version ".tar.gz"))
(sha256
(base32
- "1mph52lw6x5v44wf8mw00llzi8pp6k5c4jnrnrvlacrlfv260jb8"))
+ "01qggwmc97kpzx49fp4fxysrjyq8mpnx54nrb087ridj0ch3cf46"))
(patches (search-patches
"perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
(build-system perl-build-system)
- (propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
+ (propagated-inputs
+ `(("perl-net-ssleay" ,perl-net-ssleay)
+ ;; for IDN support
+ ("perl-uri" ,perl-uri)))
(synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
(description
"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
--
2.9.1
--
♥Ⓐ ng0
For non-prism friendly talk find me on http://www.psyced.org
SecuShare – http://secushare.org
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support.
2016-07-19 10:03 [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support ng0
@ 2016-07-19 11:02 ` Ricardo Wurmus
2016-07-19 13:36 ` ng0
0 siblings, 1 reply; 14+ messages in thread
From: Ricardo Wurmus @ 2016-07-19 11:02 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
ng0 <ng0@we.make.ritual.n0.is> writes:
> From 9571f0f56532be3bf4bb0239a41f722d186790c0 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Tue, 19 Jul 2016 09:54:28 +0000
> Subject: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support.
>
> * gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.033.
> (perl-io-socket-ssl)[propagated-inputs]: Add perl-uri.
Thanks for the patch.
Is “perl-uri” required or the update? If it is not this should be a
separate patch.
~~ Ricardo
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support.
2016-07-19 11:02 ` Ricardo Wurmus
@ 2016-07-19 13:36 ` ng0
2016-07-21 23:44 ` [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 ng0
2016-07-22 0:05 ` [PATCH] gnu: perl-io-socket-ssl: Add IDN support ng0
0 siblings, 2 replies; 14+ messages in thread
From: ng0 @ 2016-07-19 13:36 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
Ricardo Wurmus <rekado@elephly.net> writes:
> ng0 <ng0@we.make.ritual.n0.is> writes:
>
>> From 9571f0f56532be3bf4bb0239a41f722d186790c0 Mon Sep 17 00:00:00 2001
>> From: ng0 <ng0@we.make.ritual.n0.is>
>> Date: Tue, 19 Jul 2016 09:54:28 +0000
>> Subject: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support.
>>
>> * gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.033.
>> (perl-io-socket-ssl)[propagated-inputs]: Add perl-uri.
>
> Thanks for the patch.
>
> Is “perl-uri” required or the update? If it is not this should be a
> separate patch.
>
> ~~ Ricardo
>
No, it's not. I'll sent in an updated patch later.
--
♥Ⓐ ng0
For non-prism friendly talk find me on http://www.psyced.org
SecuShare – http://secushare.org
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033.
2016-07-19 13:36 ` ng0
@ 2016-07-21 23:44 ` ng0
2016-07-24 6:27 ` Efraim Flashner
2016-07-22 0:05 ` [PATCH] gnu: perl-io-socket-ssl: Add IDN support ng0
1 sibling, 1 reply; 14+ messages in thread
From: ng0 @ 2016-07-21 23:44 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
From 9293d91521387a4c557e3c4893e097403799259a Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Thu, 21 Jul 2016 23:34:04 +0000
Subject: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033.
* gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.033.
---
gnu/packages/web.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 4a52422..c2cae27 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -2390,14 +2390,14 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
(define-public perl-io-socket-ssl
(package
(name "perl-io-socket-ssl")
- (version "2.002")
+ (version "2.033")
(source (origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/S/SU/SULLR/"
"IO-Socket-SSL-" version ".tar.gz"))
(sha256
(base32
- "1mph52lw6x5v44wf8mw00llzi8pp6k5c4jnrnrvlacrlfv260jb8"))
+ "01qggwmc97kpzx49fp4fxysrjyq8mpnx54nrb087ridj0ch3cf46"))
(patches (search-patches
"perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
(build-system perl-build-system)
--
2.9.1
--
♥Ⓐ ng0 – http://we.make.ritual.n0.is
For non-prism friendly talk find me on http://www.psyced.org
SecuShare – http://secushare.org
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-19 13:36 ` ng0
2016-07-21 23:44 ` [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 ng0
@ 2016-07-22 0:05 ` ng0
2016-07-24 6:27 ` Efraim Flashner
1 sibling, 1 reply; 14+ messages in thread
From: ng0 @ 2016-07-22 0:05 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
From d841892a6563fa79f8185d6ea470a160d1b54b2c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Fri, 22 Jul 2016 00:01:03 +0000
Subject: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
* gnu/packages/web.scm (perl-io-socket-ssl)[propagated-inputs]: Add perl-uri
for IDN support.
---
gnu/packages/web.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index c2cae27..33c1e88 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -2401,7 +2401,10 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
(patches (search-patches
"perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
(build-system perl-build-system)
- (propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
+ (propagated-inputs
+ `(("perl-net-ssleay" ,perl-net-ssleay)
+ ;; for IDN support
+ ("perl-uri" ,perl-uri)))
(synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
(description
"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
--
2.9.1
--
♥Ⓐ ng0 – http://we.make.ritual.n0.is
For non-prism friendly talk find me on http://www.psyced.org
SecuShare – http://secushare.org
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033.
2016-07-21 23:44 ` [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 ng0
@ 2016-07-24 6:27 ` Efraim Flashner
0 siblings, 0 replies; 14+ messages in thread
From: Efraim Flashner @ 2016-07-24 6:27 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1814 bytes --]
On Thu, Jul 21, 2016 at 11:44:26PM +0000, ng0 wrote:
> From 9293d91521387a4c557e3c4893e097403799259a Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Thu, 21 Jul 2016 23:34:04 +0000
> Subject: [PATCH] gnu: perl-io-socket-ssl: Update to 2.033.
>
> * gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.033.
> ---
> gnu/packages/web.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
> index 4a52422..c2cae27 100644
> --- a/gnu/packages/web.scm
> +++ b/gnu/packages/web.scm
> @@ -2390,14 +2390,14 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
> (define-public perl-io-socket-ssl
> (package
> (name "perl-io-socket-ssl")
> - (version "2.002")
> + (version "2.033")
> (source (origin
> (method url-fetch)
> (uri (string-append "mirror://cpan/authors/id/S/SU/SULLR/"
> "IO-Socket-SSL-" version ".tar.gz"))
> (sha256
> (base32
> - "1mph52lw6x5v44wf8mw00llzi8pp6k5c4jnrnrvlacrlfv260jb8"))
> + "01qggwmc97kpzx49fp4fxysrjyq8mpnx54nrb087ridj0ch3cf46"))
> (patches (search-patches
> "perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
> (build-system perl-build-system)
> --
> 2.9.1
>
>
> --
> ♥Ⓐ ng0 – http://we.make.ritual.n0.is
> For non-prism friendly talk find me on http://www.psyced.org
> SecuShare – http://secushare.org
>
LGTM!
--
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] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-22 0:05 ` [PATCH] gnu: perl-io-socket-ssl: Add IDN support ng0
@ 2016-07-24 6:27 ` Efraim Flashner
2016-07-24 9:08 ` ng0
0 siblings, 1 reply; 14+ messages in thread
From: Efraim Flashner @ 2016-07-24 6:27 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1670 bytes --]
On Fri, Jul 22, 2016 at 12:05:46AM +0000, ng0 wrote:
> From d841892a6563fa79f8185d6ea470a160d1b54b2c Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Fri, 22 Jul 2016 00:01:03 +0000
> Subject: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
>
> * gnu/packages/web.scm (perl-io-socket-ssl)[propagated-inputs]: Add perl-uri
> for IDN support.
> ---
> gnu/packages/web.scm | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
> index c2cae27..33c1e88 100644
> --- a/gnu/packages/web.scm
> +++ b/gnu/packages/web.scm
> @@ -2401,7 +2401,10 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
> (patches (search-patches
> "perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
> (build-system perl-build-system)
> - (propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
> + (propagated-inputs
> + `(("perl-net-ssleay" ,perl-net-ssleay)
> + ;; for IDN support
> + ("perl-uri" ,perl-uri)))
> (synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
> (description
> "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
> --
> 2.9.1
>
>
> --
> ♥Ⓐ ng0 – http://we.make.ritual.n0.is
> For non-prism friendly talk find me on http://www.psyced.org
> SecuShare – http://secushare.org
>
LGTM!
--
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] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-24 6:27 ` Efraim Flashner
@ 2016-07-24 9:08 ` ng0
2016-07-24 13:08 ` Efraim Flashner
0 siblings, 1 reply; 14+ messages in thread
From: ng0 @ 2016-07-24 9:08 UTC (permalink / raw)
To: guix-devel
Efraim Flashner <efraim@flashner.co.il> writes:
> On Fri, Jul 22, 2016 at 12:05:46AM +0000, ng0 wrote:
>> From d841892a6563fa79f8185d6ea470a160d1b54b2c Mon Sep 17 00:00:00 2001
>> From: ng0 <ng0@we.make.ritual.n0.is>
>> Date: Fri, 22 Jul 2016 00:01:03 +0000
>> Subject: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
>>
>> * gnu/packages/web.scm (perl-io-socket-ssl)[propagated-inputs]: Add perl-uri
>> for IDN support.
>> ---
>> gnu/packages/web.scm | 5 ++++-
>> 1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
>> index c2cae27..33c1e88 100644
>> --- a/gnu/packages/web.scm
>> +++ b/gnu/packages/web.scm
>> @@ -2401,7 +2401,10 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
>> (patches (search-patches
>> "perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
>> (build-system perl-build-system)
>> - (propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
>> + (propagated-inputs
>> + `(("perl-net-ssleay" ,perl-net-ssleay)
>> + ;; for IDN support
>> + ("perl-uri" ,perl-uri)))
>> (synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
>> (description
>> "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
>> --
>> 2.9.1
>
> LGTM!
What does this mean? LetsGetThisMerged?
--
♥Ⓐ ng0 – http://we.make.ritual.n0.is
For non-prism friendly talk find me on http://www.psyced.org
SecuShare – http://secushare.org
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-24 9:08 ` ng0
@ 2016-07-24 13:08 ` Efraim Flashner
2016-07-24 16:05 ` Leo Famulari
0 siblings, 1 reply; 14+ messages in thread
From: Efraim Flashner @ 2016-07-24 13:08 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1934 bytes --]
On Sun, Jul 24, 2016 at 09:08:05AM +0000, ng0 wrote:
> Efraim Flashner <efraim@flashner.co.il> writes:
>
> > On Fri, Jul 22, 2016 at 12:05:46AM +0000, ng0 wrote:
> >> From d841892a6563fa79f8185d6ea470a160d1b54b2c Mon Sep 17 00:00:00 2001
> >> From: ng0 <ng0@we.make.ritual.n0.is>
> >> Date: Fri, 22 Jul 2016 00:01:03 +0000
> >> Subject: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
> >>
> >> * gnu/packages/web.scm (perl-io-socket-ssl)[propagated-inputs]: Add perl-uri
> >> for IDN support.
> >> ---
> >> gnu/packages/web.scm | 5 ++++-
> >> 1 file changed, 4 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
> >> index c2cae27..33c1e88 100644
> >> --- a/gnu/packages/web.scm
> >> +++ b/gnu/packages/web.scm
> >> @@ -2401,7 +2401,10 @@ and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
> >> (patches (search-patches
> >> "perl-io-socket-ssl-openssl-1.0.2f-fix.patch"))))
> >> (build-system perl-build-system)
> >> - (propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
> >> + (propagated-inputs
> >> + `(("perl-net-ssleay" ,perl-net-ssleay)
> >> + ;; for IDN support
> >> + ("perl-uri" ,perl-uri)))
> >> (synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
> >> (description
> >> "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
> >> --
> >> 2.9.1
>
> >
> > LGTM!
>
> What does this mean? LetsGetThisMerged?
>
Yeah
> --
> ♥Ⓐ ng0 – http://we.make.ritual.n0.is
> For non-prism friendly talk find me on http://www.psyced.org
> SecuShare – http://secushare.org
>
--
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] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-24 13:08 ` Efraim Flashner
@ 2016-07-24 16:05 ` Leo Famulari
2016-07-24 16:19 ` John Darrington
0 siblings, 1 reply; 14+ messages in thread
From: Leo Famulari @ 2016-07-24 16:05 UTC (permalink / raw)
To: Efraim Flashner; +Cc: guix-devel
On Sun, Jul 24, 2016 at 04:08:20PM +0300, Efraim Flashner wrote:
> On Sun, Jul 24, 2016 at 09:08:05AM +0000, ng0 wrote:
> > Efraim Flashner <efraim@flashner.co.il> writes:
> > > LGTM!
> >
> > What does this mean? LetsGetThisMerged?
>
> Yeah
I thought it meant Looks Good To Me, although yours works too :)
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-24 16:05 ` Leo Famulari
@ 2016-07-24 16:19 ` John Darrington
2016-08-07 22:40 ` ng0
0 siblings, 1 reply; 14+ messages in thread
From: John Darrington @ 2016-07-24 16:19 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 761 bytes --]
On Sun, Jul 24, 2016 at 12:05:35PM -0400, Leo Famulari wrote:
On Sun, Jul 24, 2016 at 04:08:20PM +0300, Efraim Flashner wrote:
> On Sun, Jul 24, 2016 at 09:08:05AM +0000, ng0 wrote:
> > Efraim Flashner <efraim@flashner.co.il> writes:
> > > LGTM!
> >
> > What does this mean? LetsGetThisMerged?
>
> Yeah
I thought it meant Looks Good To Me, although yours works too :)
I'm glad that has been explained. I always assumed it was Lesbian Gay Transgender Martian.
J'
--
Avoid eavesdropping. Send strong encryted email.
PGP Public key ID: 1024D/2DE827B3
fingerprint = 8797 A26D 0854 2EAB 0285 A290 8A67 719C 2DE8 27B3
See http://sks-keyservers.net or any PGP keyserver for public key.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-07-24 16:19 ` John Darrington
@ 2016-08-07 22:40 ` ng0
2016-08-08 20:52 ` Leo Famulari
0 siblings, 1 reply; 14+ messages in thread
From: ng0 @ 2016-08-07 22:40 UTC (permalink / raw)
To: John Darrington, Leo Famulari; +Cc: guix-devel
John Darrington <john@darrington.wattle.id.au> writes:
> On Sun, Jul 24, 2016 at 12:05:35PM -0400, Leo Famulari wrote:
> On Sun, Jul 24, 2016 at 04:08:20PM +0300, Efraim Flashner wrote:
> > On Sun, Jul 24, 2016 at 09:08:05AM +0000, ng0 wrote:
> > > Efraim Flashner <efraim@flashner.co.il> writes:
> > > > LGTM!
> > >
> > > What does this mean? LetsGetThisMerged?
> >
> > Yeah
>
> I thought it meant Looks Good To Me, although yours works too :)
>
> I'm glad that has been explained. I always assumed it was Lesbian Gay Transgender Martian.
> J'
>
First, please don't do this.
Second, is there something left to fix or did someone push this already
and I did not notice?
thanks
--
♥Ⓐ ng0
Current Keys: https://we.make.ritual.n0.is/ng0.txt
For non-prism friendly talk find me on http://www.psyced.org
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-08-07 22:40 ` ng0
@ 2016-08-08 20:52 ` Leo Famulari
2016-08-08 22:08 ` ng0
0 siblings, 1 reply; 14+ messages in thread
From: Leo Famulari @ 2016-08-08 20:52 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
On Sun, Aug 07, 2016 at 10:40:47PM +0000, ng0 wrote:
> Second, is there something left to fix or did someone push this already
> and I did not notice?
I believe this patch corresponds to commit 578aeea6. Please let us know
if it does not.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] gnu: perl-io-socket-ssl: Add IDN support.
2016-08-08 20:52 ` Leo Famulari
@ 2016-08-08 22:08 ` ng0
0 siblings, 0 replies; 14+ messages in thread
From: ng0 @ 2016-08-08 22:08 UTC (permalink / raw)
To: guix-devel
Leo Famulari <leo@famulari.name> writes:
> On Sun, Aug 07, 2016 at 10:40:47PM +0000, ng0 wrote:
>> Second, is there something left to fix or did someone push this already
>> and I did not notice?
>
> I believe this patch corresponds to commit 578aeea6. Please let us know
> if it does not.
Indeed, it does.
Thanks.
--
♥Ⓐ ng0
Current Keys: https://we.make.ritual.n0.is/ng0.txt
For non-prism friendly talk find me on http://www.psyced.org
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2016-08-08 22:08 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-19 10:03 [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 and add IDN support ng0
2016-07-19 11:02 ` Ricardo Wurmus
2016-07-19 13:36 ` ng0
2016-07-21 23:44 ` [PATCH] gnu: perl-io-socket-ssl: Update to 2.033 ng0
2016-07-24 6:27 ` Efraim Flashner
2016-07-22 0:05 ` [PATCH] gnu: perl-io-socket-ssl: Add IDN support ng0
2016-07-24 6:27 ` Efraim Flashner
2016-07-24 9:08 ` ng0
2016-07-24 13:08 ` Efraim Flashner
2016-07-24 16:05 ` Leo Famulari
2016-07-24 16:19 ` John Darrington
2016-08-07 22:40 ` ng0
2016-08-08 20:52 ` Leo Famulari
2016-08-08 22:08 ` 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.