Re: [PATCH 01/12] guix: download: properly detect https when mirror:// is used.

2015-10-20 Thread Cyril Roelandt
On 10/16/2015 12:14 PM, Ludovic Courtès wrote: > Is there a mirror for which that is a serious issue? I wanted to use mirrors for PyPI, but I ended up dropping the patch (see patch 2). So I'll drop this one as well. Cyril.

Re: [PATCH 01/12] guix: download: properly detect https when mirror:// is used.

2015-10-20 Thread Cyril Roelandt
On 10/20/2015 05:57 PM, Cyril Roelandt wrote: > On 10/16/2015 12:14 PM, Ludovic Courtès wrote: >> Is there a mirror for which that is a serious issue? > > I wanted to use mirrors for PyPI, but I ended up dropping the patch (see > patch 2). So I'll drop this one as well. > Oops. I meant that I dr

Re: [PATCH 01/12] guix: download: properly detect https when mirror:// is used.

2015-10-16 Thread Ludovic Courtès
Cyril Roelandt skribis: > * guix/download.scm (url-fetch): fix need-gnutls? which always returned #f > when > a URL with "mirror://" scheme was used. [...] >(define need-gnutls? > -;; True if any of the URLs need TLS support. Please keep/adjust the comment. > -(let ((https? (cu

[PATCH 01/12] guix: download: properly detect https when mirror:// is used.

2015-10-12 Thread Cyril Roelandt
* guix/download.scm (url-fetch): fix need-gnutls? which always returned #f when a URL with "mirror://" scheme was used. --- guix/download.scm | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/guix/download.scm b/guix/download.scm index 204cfc0..8ec47ce 100644 ---