[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problems with downloading from https
From: |
Mark H Weaver |
Subject: |
Re: Problems with downloading from https |
Date: |
Mon, 27 Oct 2014 05:06:58 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
address@hidden (Ludovic Courtès) writes:
> Alex Kost <address@hidden> skribis:
>
>> Ludovic Courtès (2014-10-26 16:46 +0300) wrote:
>>
>>> Alex Kost <address@hidden> skribis:
>>>
>>>> Yes, I installed gnutls, but it didn't work because I didn't set the
>>>> right guile paths: “guix package --search-paths” recommends
>>>> "/usr/local/var/guix/profiles/per-user/<user>/guix-profile/share/guile/site/2.0"
>>>> but "gnutls.scm" is actually placed in
>>>> "/usr/local/var/guix/profiles/per-user/<user>/guix-profile/share/guile/site"
>>>> so ‘(use-modules (gnutls))’ failed for me.
>>>
>>> Oh, that’s a bug of the GnuTLS package: we should pass the right
>>> configure flag so that modules go to site/2.0. Could you do that?
Alex committed this change, and it broke all https downloads in Guix,
leading to hydra build failures. For example, see:
http://hydra.gnu.org/build/132928/nixlog/1/raw
The reason is that guix/download.scm contains this code:
--8<---------------cut here---------------start------------->8---
;; Add GnuTLS to the inputs and to the load path.
#~(eval-when (load expand eval)
(set! %load-path
(cons (string-append #$(gnutls-package)
"/share/guile/site")
%load-path)))
#~#t)
--8<---------------cut here---------------end--------------->8---
For now, I think we should revert this commit and discuss it further
before proceeding.
>> Yes, but I'm a little concerned. Should it really be so? What about
>> guile-1.8; isn't it supposed to use gnutls module as well?
>
> 1.8 has long been deprecated, so let’s not worry about it.
I think Alex was right to be concerned. We'll have the same problem
when Guile 2.2 comes around, and then again for 2.4. I'm reluctant to
hardcode "2.0" into the code above. Think about what it implies for
GnuTLS in the future. Will they be expected to install their modules
into site/2.0, site/2.2, site/2.4, etc? Do we really want to advocate
this practice to projects that install Guile modules?
Mark
- Problems with downloading from https, Alex Kost, 2014/10/25
- Re: Problems with downloading from https, Ian Denhardt, 2014/10/25
- Re: Problems with downloading from https, Alex Kost, 2014/10/26
- Re: Problems with downloading from https, Ludovic Courtès, 2014/10/26
- Re: Problems with downloading from https, Alex Kost, 2014/10/26
- Re: Problems with downloading from https, Ludovic Courtès, 2014/10/26
- Re: Problems with downloading from https,
Mark H Weaver <=
- Re: Problems with downloading from https, Ludovic Courtès, 2014/10/27
- Re: Problems with downloading from https, Ludovic Courtès, 2014/10/27
- Re: Problems with downloading from https, Alex Kost, 2014/10/27
- Re: Problems with downloading from https, Mark H Weaver, 2014/10/27
- Re: Problems with downloading from https, Ludovic Courtès, 2014/10/27
- Re: Problems with downloading from https, Alex Kost, 2014/10/27
- Re: Problems with downloading from https, Ludovic Courtès, 2014/10/28
- Re: Problems with downloading from https, Andreas Enge, 2014/10/29
- Re: Problems with downloading from https, Alex Kost, 2014/10/30
- Re: Problems with downloading from https, Andreas Enge, 2014/10/30