GNU bug report logs - #39090
Daemon fails with "got unexpected path ... from substituter"

Previous Next

Package: guix;

Reported by: Gábor Boskovits <boskovits <at> gmail.com>

Date: Sat, 11 Jan 2020 14:49:01 UTC

Severity: important

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 39090 in the body.
You can then email your comments to 39090 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sat, 11 Jan 2020 14:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Gábor Boskovits <boskovits <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Sat, 11 Jan 2020 14:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: bug-guix <at> gnu.org
Subject: Installer fails on install disk built from master
Date: Sat, 11 Jan 2020 15:48:10 +0100
Hello,

I noticed that the install disk created on current master can't
install the system.

This is on:
e4c9ba4da2a6faf80209488d5c086ea0d5c39214
.

I have found a reproducer that might highlight where the problem is.

Steps to reproduce:
1. guix pull
2. build the installer image
guix system disk-image --file-system-type=iso9660 \
  gnu/system/install.scm
3. boot it
4. switch to tty3
5. create a file gexp.scm with this content:
(use-modules
 (gnu packages package-management)
 (guix gexp))

(program-file
 "a"
 (with-extensions
  (list guix)
  #~(#t)))
6. guix build -f gexp.scm

This will fail with as strange error message.
This same problem causes the final installation failure in the installer.

This works fine on the latest installation image.
This works if you run it again after it fails.

Any help on debugging this further would be appreciated.

Best regards,
g_bor
-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sat, 11 Jan 2020 16:44:02 GMT) Full text and rfc822 format available.

Message #8 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Gábor Boskovits <boskovits <at> gmail.com>
Cc: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sat, 11 Jan 2020 17:43:47 +0100
Gábor Boskovits <boskovits <at> gmail.com> writes:

> 5. create a file gexp.scm with this content:
> (use-modules
>  (gnu packages package-management)
>  (guix gexp))
>
> (program-file
>  "a"
>  (with-extensions
>   (list guix)
>   #~(#t)))
> 6. guix build -f gexp.scm
>
> This will fail with as strange error message.

What’s the error message?

-- 
Ricardo





Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sat, 11 Jan 2020 19:08:02 GMT) Full text and rfc822 format available.

Message #11 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sat, 11 Jan 2020 20:07:37 +0100
Ricardo Wurmus <rekado <at> elephly.net> ezt írta (időpont: 2020. jan. 11.,
Szo, 17:44):
>
>
> Gábor Boskovits <boskovits <at> gmail.com> writes:
>
> > 5. create a file gexp.scm with this content:
> > (use-modules
> >  (gnu packages package-management)
> >  (guix gexp))
> >
> > (program-file
> >  "a"
> >  (with-extensions
> >   (list guix)
> >   #~(#t)))
> > 6. guix build -f gexp.scm
> >
> > This will fail with as strange error message.
>
> What’s the error message?

guix build: error: got unexpected path <store-path-name> from substituter

<store-path-name> varies, currently it was
/gnu/store/0q95b...-libarchive-3.4.0.tar.gz
>
> --
> Ricardo
>


-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 01:16:02 GMT) Full text and rfc822 format available.

Message #14 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 02:15:22 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
11., Szo, 15:49):
>
> Hello,
>
> I noticed that the install disk created on current master can't
> install the system.
>
> This is on:
> e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> .
>
> I have found a reproducer that might highlight where the problem is.
>
> Steps to reproduce:
> 1. guix pull
> 2. build the installer image
> guix system disk-image --file-system-type=iso9660 \
>   gnu/system/install.scm
> 3. boot it
> 4. switch to tty3
> 5. create a file gexp.scm with this content:
> (use-modules
>  (gnu packages package-management)
>  (guix gexp))
>
> (program-file
>  "a"
>  (with-extensions
>   (list guix)
>   #~(#t)))
> 6. guix build -f gexp.scm
>
> This will fail with as strange error message.
> This same problem causes the final installation failure in the installer.
>
> This works fine on the latest installation image.
> This works if you run it again after it fails.
>
> Any help on debugging this further would be appreciated.
>
> Best regards,
> g_bor
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
I started a bisect,
b1d13e40... is good.

-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 02:07:01 GMT) Full text and rfc822 format available.

Message #17 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 03:06:27 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 2:15):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 11., Szo, 15:49):
> >
> > Hello,
> >
> > I noticed that the install disk created on current master can't
> > install the system.
> >
> > This is on:
> > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > .
> >
> > I have found a reproducer that might highlight where the problem is.
> >
> > Steps to reproduce:
> > 1. guix pull
> > 2. build the installer image
> > guix system disk-image --file-system-type=iso9660 \
> >   gnu/system/install.scm
> > 3. boot it
> > 4. switch to tty3
> > 5. create a file gexp.scm with this content:
> > (use-modules
> >  (gnu packages package-management)
> >  (guix gexp))
> >
> > (program-file
> >  "a"
> >  (with-extensions
> >   (list guix)
> >   #~(#t)))
> > 6. guix build -f gexp.scm
> >
> > This will fail with as strange error message.
> > This same problem causes the final installation failure in the installer.
> >
> > This works fine on the latest installation image.
> > This works if you run it again after it fails.
> >
> > Any help on debugging this further would be appreciated.
> >
> > Best regards,
> > g_bor
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> >
> >
> >
> I started a bisect,
> b1d13e40... is good.
a3569a3 good
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 11:40:02 GMT) Full text and rfc822 format available.

Message #20 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 12:39:13 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 3:06):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 12., V, 2:15):
> >
> > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > 11., Szo, 15:49):
> > >
> > > Hello,
> > >
> > > I noticed that the install disk created on current master can't
> > > install the system.
> > >
> > > This is on:
> > > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > > .
> > >
> > > I have found a reproducer that might highlight where the problem is.
> > >
> > > Steps to reproduce:
> > > 1. guix pull
> > > 2. build the installer image
> > > guix system disk-image --file-system-type=iso9660 \
> > >   gnu/system/install.scm
> > > 3. boot it
> > > 4. switch to tty3
> > > 5. create a file gexp.scm with this content:
> > > (use-modules
> > >  (gnu packages package-management)
> > >  (guix gexp))
> > >
> > > (program-file
> > >  "a"
> > >  (with-extensions
> > >   (list guix)
> > >   #~(#t)))
> > > 6. guix build -f gexp.scm
> > >
> > > This will fail with as strange error message.
> > > This same problem causes the final installation failure in the installer.
> > >
> > > This works fine on the latest installation image.
> > > This works if you run it again after it fails.
> > >
> > > Any help on debugging this further would be appreciated.
> > >
> > > Best regards,
> > > g_bor
> > > --
> > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > >
> > >
> > >
> > I started a bisect,
> > b1d13e40... is good.
> a3569a3 good
92afa57 good


> >
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 13:02:02 GMT) Full text and rfc822 format available.

Message #23 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 14:00:59 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 12:39):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 12., V, 3:06):
> >
> > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > 12., V, 2:15):
> > >
> > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > 11., Szo, 15:49):
> > > >
> > > > Hello,
> > > >
> > > > I noticed that the install disk created on current master can't
> > > > install the system.
> > > >
> > > > This is on:
> > > > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > > > .
> > > >
> > > > I have found a reproducer that might highlight where the problem is.
> > > >
> > > > Steps to reproduce:
> > > > 1. guix pull
> > > > 2. build the installer image
> > > > guix system disk-image --file-system-type=iso9660 \
> > > >   gnu/system/install.scm
> > > > 3. boot it
> > > > 4. switch to tty3
> > > > 5. create a file gexp.scm with this content:
> > > > (use-modules
> > > >  (gnu packages package-management)
> > > >  (guix gexp))
> > > >
> > > > (program-file
> > > >  "a"
> > > >  (with-extensions
> > > >   (list guix)
> > > >   #~(#t)))
> > > > 6. guix build -f gexp.scm
> > > >
> > > > This will fail with as strange error message.
> > > > This same problem causes the final installation failure in the installer.
> > > >
> > > > This works fine on the latest installation image.
> > > > This works if you run it again after it fails.
> > > >
> > > > Any help on debugging this further would be appreciated.
> > > >
> > > > Best regards,
> > > > g_bor
> > > > --
> > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > >
> > > >
> > > >
> > > I started a bisect,
> > > b1d13e40... is good.
> > a3569a3 good
> 92afa57 good
aa8f64b bad


>
>
> > >
> > > --
> > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> >
> >
> >
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 15:19:01 GMT) Full text and rfc822 format available.

Message #26 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 16:18:00 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 14:00):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 12., V, 12:39):
> >
> > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > 12., V, 3:06):
> > >
> > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > 12., V, 2:15):
> > > >
> > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > 11., Szo, 15:49):
> > > > >
> > > > > Hello,
> > > > >
> > > > > I noticed that the install disk created on current master can't
> > > > > install the system.
> > > > >
> > > > > This is on:
> > > > > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > > > > .
> > > > >
> > > > > I have found a reproducer that might highlight where the problem is.
> > > > >
> > > > > Steps to reproduce:
> > > > > 1. guix pull
> > > > > 2. build the installer image
> > > > > guix system disk-image --file-system-type=iso9660 \
> > > > >   gnu/system/install.scm
> > > > > 3. boot it
> > > > > 4. switch to tty3
> > > > > 5. create a file gexp.scm with this content:
> > > > > (use-modules
> > > > >  (gnu packages package-management)
> > > > >  (guix gexp))
> > > > >
> > > > > (program-file
> > > > >  "a"
> > > > >  (with-extensions
> > > > >   (list guix)
> > > > >   #~(#t)))
> > > > > 6. guix build -f gexp.scm
> > > > >
> > > > > This will fail with as strange error message.
> > > > > This same problem causes the final installation failure in the installer.
> > > > >
> > > > > This works fine on the latest installation image.
> > > > > This works if you run it again after it fails.
> > > > >
> > > > > Any help on debugging this further would be appreciated.
> > > > >
> > > > > Best regards,
> > > > > g_bor
> > > > > --
> > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > >
> > > > >
> > > > >
> > > > I started a bisect,
> > > > b1d13e40... is good.
> > > a3569a3 good
> > 92afa57 good
> aa8f64b bad
6298f32 bad
>
>
> >
> >
> > > >
> > > > --
> > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > >
> > >
> > >
> > > --
> > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> >
> >
> >
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 16:55:01 GMT) Full text and rfc822 format available.

Message #29 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 17:54:31 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 16:18):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 12., V, 14:00):
> >
> > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > 12., V, 12:39):
> > >
> > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > 12., V, 3:06):
> > > >
> > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > 12., V, 2:15):
> > > > >
> > > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > > 11., Szo, 15:49):
> > > > > >
> > > > > > Hello,
> > > > > >
> > > > > > I noticed that the install disk created on current master can't
> > > > > > install the system.
> > > > > >
> > > > > > This is on:
> > > > > > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > > > > > .
> > > > > >
> > > > > > I have found a reproducer that might highlight where the problem is.
> > > > > >
> > > > > > Steps to reproduce:
> > > > > > 1. guix pull
> > > > > > 2. build the installer image
> > > > > > guix system disk-image --file-system-type=iso9660 \
> > > > > >   gnu/system/install.scm
> > > > > > 3. boot it
> > > > > > 4. switch to tty3
> > > > > > 5. create a file gexp.scm with this content:
> > > > > > (use-modules
> > > > > >  (gnu packages package-management)
> > > > > >  (guix gexp))
> > > > > >
> > > > > > (program-file
> > > > > >  "a"
> > > > > >  (with-extensions
> > > > > >   (list guix)
> > > > > >   #~(#t)))
> > > > > > 6. guix build -f gexp.scm
> > > > > >
> > > > > > This will fail with as strange error message.
> > > > > > This same problem causes the final installation failure in the installer.
> > > > > >
> > > > > > This works fine on the latest installation image.
> > > > > > This works if you run it again after it fails.
> > > > > >
> > > > > > Any help on debugging this further would be appreciated.
> > > > > >
> > > > > > Best regards,
> > > > > > g_bor
> > > > > > --
> > > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > > >
> > > > > >
> > > > > >
> > > > > I started a bisect,
> > > > > b1d13e40... is good.
> > > > a3569a3 good
> > > 92afa57 good
> > aa8f64b bad
> 6298f32 bad
94c621b bad
> >
> >
> > >
> > >
> > > > >
> > > > > --
> > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > >
> > > >
> > > >
> > > > --
> > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > >
> > >
> > >
> > > --
> > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> >
> >
> >
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 18:18:01 GMT) Full text and rfc822 format available.

Message #32 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 19:17:25 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 17:54):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 12., V, 16:18):
> >
> > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > 12., V, 14:00):
> > >
> > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > 12., V, 12:39):
> > > >
> > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > 12., V, 3:06):
> > > > >
> > > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > > 12., V, 2:15):
> > > > > >
> > > > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > > > 11., Szo, 15:49):
> > > > > > >
> > > > > > > Hello,
> > > > > > >
> > > > > > > I noticed that the install disk created on current master can't
> > > > > > > install the system.
> > > > > > >
> > > > > > > This is on:
> > > > > > > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > > > > > > .
> > > > > > >
> > > > > > > I have found a reproducer that might highlight where the problem is.
> > > > > > >
> > > > > > > Steps to reproduce:
> > > > > > > 1. guix pull
> > > > > > > 2. build the installer image
> > > > > > > guix system disk-image --file-system-type=iso9660 \
> > > > > > >   gnu/system/install.scm
> > > > > > > 3. boot it
> > > > > > > 4. switch to tty3
> > > > > > > 5. create a file gexp.scm with this content:
> > > > > > > (use-modules
> > > > > > >  (gnu packages package-management)
> > > > > > >  (guix gexp))
> > > > > > >
> > > > > > > (program-file
> > > > > > >  "a"
> > > > > > >  (with-extensions
> > > > > > >   (list guix)
> > > > > > >   #~(#t)))
> > > > > > > 6. guix build -f gexp.scm
> > > > > > >
> > > > > > > This will fail with as strange error message.
> > > > > > > This same problem causes the final installation failure in the installer.
> > > > > > >
> > > > > > > This works fine on the latest installation image.
> > > > > > > This works if you run it again after it fails.
> > > > > > >
> > > > > > > Any help on debugging this further would be appreciated.
> > > > > > >
> > > > > > > Best regards,
> > > > > > > g_bor
> > > > > > > --
> > > > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > I started a bisect,
> > > > > > b1d13e40... is good.
> > > > > a3569a3 good
> > > > 92afa57 good
> > > aa8f64b bad
> > 6298f32 bad
> 94c621b bad
b307b58 bad
> > >
> > >
> > > >
> > > >
> > > > > >
> > > > > > --
> > > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > >
> > > >
> > > >
> > > > --
> > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > >
> > >
> > >
> > > --
> > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> >
> >
> >
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 20:10:01 GMT) Full text and rfc822 format available.

Message #35 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 21:09:01 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
12., V, 19:17):
>
> Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> 12., V, 17:54):
> >
> > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > 12., V, 16:18):
> > >
> > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > 12., V, 14:00):
> > > >
> > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > 12., V, 12:39):
> > > > >
> > > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > > 12., V, 3:06):
> > > > > >
> > > > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > > > 12., V, 2:15):
> > > > > > >
> > > > > > > Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
> > > > > > > 11., Szo, 15:49):
> > > > > > > >
> > > > > > > > Hello,
> > > > > > > >
> > > > > > > > I noticed that the install disk created on current master can't
> > > > > > > > install the system.
> > > > > > > >
> > > > > > > > This is on:
> > > > > > > > e4c9ba4da2a6faf80209488d5c086ea0d5c39214
> > > > > > > > .
> > > > > > > >
> > > > > > > > I have found a reproducer that might highlight where the problem is.
> > > > > > > >
> > > > > > > > Steps to reproduce:
> > > > > > > > 1. guix pull
> > > > > > > > 2. build the installer image
> > > > > > > > guix system disk-image --file-system-type=iso9660 \
> > > > > > > >   gnu/system/install.scm
> > > > > > > > 3. boot it
> > > > > > > > 4. switch to tty3
> > > > > > > > 5. create a file gexp.scm with this content:
> > > > > > > > (use-modules
> > > > > > > >  (gnu packages package-management)
> > > > > > > >  (guix gexp))
> > > > > > > >
> > > > > > > > (program-file
> > > > > > > >  "a"
> > > > > > > >  (with-extensions
> > > > > > > >   (list guix)
> > > > > > > >   #~(#t)))
> > > > > > > > 6. guix build -f gexp.scm
> > > > > > > >
> > > > > > > > This will fail with as strange error message.
> > > > > > > > This same problem causes the final installation failure in the installer.
> > > > > > > >
> > > > > > > > This works fine on the latest installation image.
> > > > > > > > This works if you run it again after it fails.
> > > > > > > >
> > > > > > > > Any help on debugging this further would be appreciated.
> > > > > > > >
> > > > > > > > Best regards,
> > > > > > > > g_bor
> > > > > > > > --
> > > > > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > I started a bisect,
> > > > > > > b1d13e40... is good.
> > > > > > a3569a3 good
> > > > > 92afa57 good
> > > > aa8f64b bad
> > > 6298f32 bad
> > 94c621b bad
> b307b58 bad
1133596 good

> > > >
> > > >
> > > > >
> > > > >
> > > > > > >
> > > > > > > --
> > > > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > > >
> > > > > >
> > > > > >
> > > > > > --
> > > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > > >
> > > >
> > > >
> > > > --
> > > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> > >
> > >
> > >
> > > --
> > > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
> >
> >
> >
> > --
> > OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
>
>
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Sun, 12 Jan 2020 21:53:01 GMT) Full text and rfc822 format available.

Message #38 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Gábor Boskovits <boskovits <at> gmail.com>
Cc: 39090 <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Sun, 12 Jan 2020 22:52:41 +0100
Hi Gábor,

Gábor Boskovits <boskovits <at> gmail.com> skribis:

>> b307b58 bad
> 1133596 good

In that range there’s this commit:

  commit fd885160fcfde710e415252463c1034f22f88e59
  Date:   Sun Jan 5 03:09:35 2020 +0100

      gnu: guix: Update to f38eabe.

      * gnu/packages/package-management.scm (guix): Update to f38eabe.

However, it itself embeds all the changes to the daemon (and ‘guix
substitute’, and related code) in this range:

  41b4b713f4892918a9a1950acdd89f33b977d143..f38eabe952608478230895e380ef441d65ea625e

The changes in this range under nix/ are rather uninteresting, but those
for ‘guix substitute’ have more potential:

--8<---------------cut here---------------start------------->8---
$ git log --oneline 41b4b713f4892918a9a1950acdd89f33b977d143..f38eabe952608478230895e380ef441d65ea625e -- guix/scripts/substitute.scm
f4cde9ac4a download: Do not leak file descriptors on TLS ports.
22f06a2128 progress: Add 'progress-report-port'.
4736d06f78 challenge: Report the best narinfo URI.
a6492178bd substitute: Remove unused procedure.
9e3f9ac3c0 substitute: 'http-multiple-get' no longer drops requests above 1,000.
434138e2f2 substitute: Make '%allow-unauthenticated-substitutes?' public.
4f5234be03 substitute: Don't fetch /nix-cache-info.
--8<---------------cut here---------------end--------------->8---

(I haven’t yet tried to reproduce the problem, though.)

Ludo’.




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Mon, 13 Jan 2020 21:45:01 GMT) Full text and rfc822 format available.

Message #41 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Update on the installer bug
Date: Mon, 13 Jan 2020 22:44:37 +0100
The problem is introduced by the guix update on
fd885160fcfde710e415252463c1034f22f88e59.

Reverting this commit makes the problem go away, so a bisect on the
guix package version is feasible.

The problem can be triggered in the installer image by doing
'guix build guix' in a root terminal.

The first attempt fails, while subsequent attempts succeed.

rm -rf /var/guix/substitute triggers the error again.

-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Severity set to 'important' from 'normal' Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Tue, 14 Jan 2020 16:55:01 GMT) Full text and rfc822 format available.

Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Tue, 14 Jan 2020 17:02:02 GMT) Full text and rfc822 format available.

Message #46 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Guix package version bisect update
Date: Tue, 14 Jan 2020 18:01:15 +0100
As it turned out that the problem is in the guix package following an update I
started a bisect.

Updating guix to:
edc58fdada good

-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Tue, 14 Jan 2020 20:23:01 GMT) Full text and rfc822 format available.

Message #49 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: Guix package version bisect update
Date: Tue, 14 Jan 2020 21:21:48 +0100
Gábor Boskovits <boskovits <at> gmail.com> ezt írta (időpont: 2020. jan.
14., K, 18:01):
>
> As it turned out that the problem is in the guix package following an update I
> started a bisect.
>
> Updating guix to:
> edc58fdada good
970cb5cece good
>
> --
> OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21



-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Tue, 14 Jan 2020 22:07:02 GMT) Full text and rfc822 format available.

Message #52 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: Guix package version bisect update
Date: Tue, 14 Jan 2020 23:05:52 +0100
> > As it turned out that the problem is in the guix package following an update I
> > started a bisect.
> >
> > Updating guix to:
> > edc58fdada good
> 970cb5cece good
4f0b3368ad bad




Information forwarded to bug-guix <at> gnu.org:
bug#39090; Package guix. (Tue, 14 Jan 2020 23:53:02 GMT) Full text and rfc822 format available.

Message #55 received at 39090 <at> debbugs.gnu.org (full text, mbox):

From: Gábor Boskovits <boskovits <at> gmail.com>
To: 39090 <at> debbugs.gnu.org
Subject: Re: Guix package version bisect update
Date: Wed, 15 Jan 2020 00:52:20 +0100
> > > As it turned out that the problem is in the guix package following an update I
> > > started a bisect.
> > >
> > > Updating guix to:
> > > edc58fdada good
> > 970cb5cece good
> 4f0b3368ad bad
ea3e8fad74 good




Changed bug title to 'Daemon fails with "got unexpected path ... from substituter"' from 'Installer fails on install disk built from master' Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Wed, 15 Jan 2020 17:46:02 GMT) Full text and rfc822 format available.

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 15 Jan 2020 17:46:03 GMT) Full text and rfc822 format available.

Notification sent to Gábor Boskovits <boskovits <at> gmail.com>:
bug acknowledged by developer. (Wed, 15 Jan 2020 17:46:03 GMT) Full text and rfc822 format available.

Message #62 received at 39090-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Gábor Boskovits <boskovits <at> gmail.com>
Cc: Ricardo Wurmus <rekado <at> elephly.net>, 39090-done <at> debbugs.gnu.org
Subject: Re: bug#39090: Installer fails on install disk built from master
Date: Wed, 15 Jan 2020 18:44:51 +0100
Hello,

Gábor Boskovits <boskovits <at> gmail.com> skribis:

> Ricardo Wurmus <rekado <at> elephly.net> ezt írta (időpont: 2020. jan. 11.,
> Szo, 17:44):
>>
>>
>> Gábor Boskovits <boskovits <at> gmail.com> writes:
>>
>> > 5. create a file gexp.scm with this content:
>> > (use-modules
>> >  (gnu packages package-management)
>> >  (guix gexp))
>> >
>> > (program-file
>> >  "a"
>> >  (with-extensions
>> >   (list guix)
>> >   #~(#t)))
>> > 6. guix build -f gexp.scm
>> >
>> > This will fail with as strange error message.
>>
>> What’s the error message?
>
> guix build: error: got unexpected path <store-path-name> from substituter
>
> <store-path-name> varies, currently it was
> /gnu/store/0q95b...-libarchive-3.4.0.tar.gz

Fixed by e2922f527ee8d891a41b5086637fa560a1c2ddd8!  I’ll update the
‘guix’ package shortly.

This was tricky to reproduce because it depends on what’s in your store
and what’s in /var/guix/substitute/cache.

I managed to reproduce it first in a VM following your instructions, and
then on a local instance of guix-daemon where I had wiped
/var/guix/substitute/cache and also changed the condition in
‘http-multiple-get’ to exercise the “Connection: close” case (which is
otherwise infrequent.)

Thanks a lot for your investigation, which helped a lot!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 13 Feb 2020 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 72 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.