unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#22882: Failure of 'guix pull' from fresh install
@ 2016-03-02 11:27 Rob Syme
  2016-03-02 11:37 ` Rob Syme
  0 siblings, 1 reply; 4+ messages in thread
From: Rob Syme @ 2016-03-02 11:27 UTC (permalink / raw)
  To: 22882

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

I've just installed guix on a fresh Ubuntu 15.10 - guix (GNU Guix) 0.9.0.

The first run of 'guix pull' fails. The log[1] includes the error:

Starting download of
/gnu/store/n7hw4dgm9qh1ihhb13jf5a1ll0wgf6ns-pkg-config-0.28.tar.gz
From http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz...
following redirection to `
https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz'...
;;; Failed to autoload make-session in (gnutls):
;;; ERROR: missing interface for module (gnutls)
ERROR: In procedure module-lookup: Unbound variable: make-session

Am I doing something wrong?

Rob Syme


[1] https://gist.github.com/robsyme/db66b14a47d6666a6697

[-- Attachment #2: Type: text/html, Size: 1146 bytes --]

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

* bug#22882: Failure of 'guix pull' from fresh install
  2016-03-02 11:27 bug#22882: Failure of 'guix pull' from fresh install Rob Syme
@ 2016-03-02 11:37 ` Rob Syme
  2016-03-02 18:59   ` Efraim Flashner
  0 siblings, 1 reply; 4+ messages in thread
From: Rob Syme @ 2016-03-02 11:37 UTC (permalink / raw)
  To: 22882

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

Note: Everything runs smoothly after importing the keys via 'guix archive
--authorize hydra.gnu.org.pub', but I thought that we should be able to
'guix pull' without hydra. Perhaps I am mistaken...
-r

On Wed, 2 Mar 2016 at 19:27 Rob Syme <rob.syme@gmail.com> wrote:

> I've just installed guix on a fresh Ubuntu 15.10 - guix (GNU Guix) 0.9.0.
>
> The first run of 'guix pull' fails. The log[1] includes the error:
>
> Starting download of
> /gnu/store/n7hw4dgm9qh1ihhb13jf5a1ll0wgf6ns-pkg-config-0.28.tar.gz
> From http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz...
> following redirection to `
> https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz'...
> ;;; Failed to autoload make-session in (gnutls):
> ;;; ERROR: missing interface for module (gnutls)
> ERROR: In procedure module-lookup: Unbound variable: make-session
>
> Am I doing something wrong?
>
> Rob Syme
>
>
> [1] https://gist.github.com/robsyme/db66b14a47d6666a6697
>
>

[-- Attachment #2: Type: text/html, Size: 1801 bytes --]

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

* bug#22882: Failure of 'guix pull' from fresh install
  2016-03-02 11:37 ` Rob Syme
@ 2016-03-02 18:59   ` Efraim Flashner
  2016-03-02 23:13     ` Rob Syme
  0 siblings, 1 reply; 4+ messages in thread
From: Efraim Flashner @ 2016-03-02 18:59 UTC (permalink / raw)
  To: Rob Syme; +Cc: 22882

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

On Wed, Mar 02, 2016 at 11:37:35AM +0000, Rob Syme wrote:
> Note: Everything runs smoothly after importing the keys via 'guix archive
> --authorize hydra.gnu.org.pub', but I thought that we should be able to
> 'guix pull' without hydra. Perhaps I am mistaken...
> -r
> 
> On Wed, 2 Mar 2016 at 19:27 Rob Syme <rob.syme@gmail.com> wrote:
> 
> > I've just installed guix on a fresh Ubuntu 15.10 - guix (GNU Guix) 0.9.0.
> >
> > The first run of 'guix pull' fails. The log[1] includes the error:
> >
> > Starting download of
> > /gnu/store/n7hw4dgm9qh1ihhb13jf5a1ll0wgf6ns-pkg-config-0.28.tar.gz
> > From http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz...
> > following redirection to `
> > https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz'...
> > ;;; Failed to autoload make-session in (gnutls):
> > ;;; ERROR: missing interface for module (gnutls)
> > ERROR: In procedure module-lookup: Unbound variable: make-session
> >
> > Am I doing something wrong?
> >
> > Rob Syme
> >
> >
> > [1] https://gist.github.com/robsyme/db66b14a47d6666a6697
> >

The problem is that from the time that 0.9.0 was tagged until now
freedesktop.org switched all their downloads to https. IIRC gnutls isn't
added to the environment unless needed for downloading or explicitly
added. Also, pkg-config is an input for gnutls, so it becomes hard to
download pkg-config using gnutls, when pkg-config is needed for gnutls.
This is a case where `guix download
https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz` and
then rerunning `guix pull` would take care of it.

Since 0.9.0 we've "fixed" this by adding another source for pkg-config
that doesn't (yet) use https.

-- 
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] 4+ messages in thread

* bug#22882: Failure of 'guix pull' from fresh install
  2016-03-02 18:59   ` Efraim Flashner
@ 2016-03-02 23:13     ` Rob Syme
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Syme @ 2016-03-02 23:13 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 22882

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

Thanks!

On Thu, 3 Mar 2016, 02:59 Efraim Flashner, <efraim@flashner.co.il> wrote:

> On Wed, Mar 02, 2016 at 11:37:35AM +0000, Rob Syme wrote:
> > Note: Everything runs smoothly after importing the keys via 'guix archive
> > --authorize hydra.gnu.org.pub', but I thought that we should be able to
> > 'guix pull' without hydra. Perhaps I am mistaken...
> > -r
> >
> > On Wed, 2 Mar 2016 at 19:27 Rob Syme <rob.syme@gmail.com> wrote:
> >
> > > I've just installed guix on a fresh Ubuntu 15.10 - guix (GNU Guix)
> 0.9.0.
> > >
> > > The first run of 'guix pull' fails. The log[1] includes the error:
> > >
> > > Starting download of
> > > /gnu/store/n7hw4dgm9qh1ihhb13jf5a1ll0wgf6ns-pkg-config-0.28.tar.gz
> > > From http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz.
> ..
> > > following redirection to `
> > > https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz'...
> > > ;;; Failed to autoload make-session in (gnutls):
> > > ;;; ERROR: missing interface for module (gnutls)
> > > ERROR: In procedure module-lookup: Unbound variable: make-session
> > >
> > > Am I doing something wrong?
> > >
> > > Rob Syme
> > >
> > >
> > > [1] https://gist.github.com/robsyme/db66b14a47d6666a6697
> > >
>
> The problem is that from the time that 0.9.0 was tagged until now
> freedesktop.org switched all their downloads to https. IIRC gnutls isn't
> added to the environment unless needed for downloading or explicitly
> added. Also, pkg-config is an input for gnutls, so it becomes hard to
> download pkg-config using gnutls, when pkg-config is needed for gnutls.
> This is a case where `guix download
> https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz`
> <https://pkg-config.freedesktop.org/releases/pkg-config-0.28.tar.gz> and
> then rerunning `guix pull` would take care of it.
>
> Since 0.9.0 we've "fixed" this by adding another source for pkg-config
> that doesn't (yet) use https.
>
> --
> 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: Type: text/html, Size: 3288 bytes --]

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

end of thread, other threads:[~2016-03-02 23:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-02 11:27 bug#22882: Failure of 'guix pull' from fresh install Rob Syme
2016-03-02 11:37 ` Rob Syme
2016-03-02 18:59   ` Efraim Flashner
2016-03-02 23:13     ` Rob Syme

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).