From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#32797: gcrypt won't compile during 'guix pull' Date: Sat, 22 Sep 2018 15:07:10 +0200 Message-ID: <87wordvfy9.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g3hdj-0006MB-OS for bug-guix@gnu.org; Sat, 22 Sep 2018 09:08:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g3hdi-0006oH-Ru for bug-guix@gnu.org; Sat, 22 Sep 2018 09:08:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44634) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g3hdi-0006o1-NF for bug-guix@gnu.org; Sat, 22 Sep 2018 09:08:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g3hdi-0007hR-Eq for bug-guix@gnu.org; Sat, 22 Sep 2018 09:08:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: (znavko's message of "Fri, 21 Sep 2018 09:54:26 +0000") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: znavko Cc: 32797@debbugs.gnu.org Hello znavko, znavko skribis: > The following derivations will be built: > /gnu/store/d4r9mpqp5xa4k58akad1aq3xdcdbfabk-guix-e0b07ccc1-modules.drv > /gnu/store/gmpr0hbdyy174bz0iijka994frabmnh5-config.scm.drv > /gnu/store/328ckyk2a94jqrfms3g7kgxzwg44y2yb-guix-config.drv > /gnu/store/33nzis2q60i8d2k6js0k95birzgnxzw7-guix-system.drv > /gnu/store/8ncrx1h6piq3276z5914dx74v1sg6c6r-guix-config-source.drv > /gnu/store/hgfcwzi8xjmf0nv5p7pln08bx7n30sw9-guix-packages.drv > /gnu/store/nrc7qq93lh4j4qx3wwsvlp2g5j5n0g4z-guix-extra.drv > /gnu/store/pib2zn4yxpxldq57x66wsjs50va0jlwy-guix-core-source.drv > /gnu/store/rlm6rvar7c7c53mg38331l39s0mrdfzf-guix-cli.drv > /gnu/store/rzpzsw9dj736gdvnvs0023lgc22jxxch-guix-packages-base.drv > /gnu/store/x4f13g6ghwnxmdq143pzvhcbbakwipdk-guix-core.drv > compiling... 100.0% of 38 files > loading... 97.4% of 115 filesrandom seed for tests: 1537520378 > compiling... 100.0% of 115 files > compiling... 100.0% of 1 files > compiling... 100.0% of 233 files > compiling... 100.0% of 180 files > compiling... 100.0% of 68 files > compiling... 100.0% of 40 files > updated GNU Guix successfully deployed under `/root/.config/guix/latest' > > # guix list-generations [...] > ERROR: In procedure scm-error: > no code for module (gcrypt hash) The message by =E2=80=98guix pull=E2=80=99 shows that you were running a ve= rsion of =E2=80=98guix pull=E2=80=99 that predates Guix 0.15.0. Version 0.15.0 intr= oduced an overhaul of =E2=80=98guix pull=E2=80=99, precisely to solve the kind of iss= ues that you experienced here. The transition from pre-0.15.0 is inconvenient and goes along these lines: 1. Run =E2=80=98guix pull=E2=80=99 like you already did; 2. Install guile-gcrypt by running: guix package -i /gnu/store/c58hm7wm8i5fwfckzb168bmiqa2nw3w9-guile-gcrypt-0.1.0 3. Re-run =E2=80=98guix pull=E2=80=99. 4. Make the new =E2=80=98guix=E2=80=99 available from the command-line: export PATH=3D$HOME/.config/guix/current/bin:$PATH hash guix This last step gives you the latest post-0.15.0 =E2=80=98guix pull=E2=80=99= . If you run =E2=80=98guix describe=E2=80=99, it should print you the commit currently u= sed. HTH! Ludo=E2=80=99.