From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp12.migadu.com ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms5.migadu.com with LMTPS id cJMJAkS4/GMYFQAAbAwnHQ (envelope-from ) for ; Mon, 27 Feb 2023 15:03:48 +0100 Received: from aspmx1.migadu.com ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp12.migadu.com with LMTPS id cAQMAkS4/GN7ggAAauVa8A (envelope-from ) for ; Mon, 27 Feb 2023 15:03:48 +0100 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id A2D691A05D for ; Mon, 27 Feb 2023 15:03:47 +0100 (CET) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pWe5E-00035E-3m; Mon, 27 Feb 2023 09:02:28 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWe4o-00011N-If for bug-guix@gnu.org; Mon, 27 Feb 2023 09:02:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1pWe4o-0007hz-9j for bug-guix@gnu.org; Mon, 27 Feb 2023 09:02:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1pWe4o-0001Zm-50 for bug-guix@gnu.org; Mon, 27 Feb 2023 09:02:02 -0500 Subject: bug#61343: bug#61574: [PATCH v2] scripts: repl: Extend REPL %load-path with all channels. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Date: Mon, 27 Feb 2023 14:02:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 61343 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: Simon Tournier Cc: Josselin Poiret , 61574-done@debbugs.gnu.org, 61343-done@debbugs.gnu.org, iyzsong@envs.net Mail-Followup-To: 61343@debbugs.gnu.org, ludo@gnu.org, iyzsong@envs.net Received: via spool by 61343-done@debbugs.gnu.org id=D61343.16775064996018 (code D ref 61343); Mon, 27 Feb 2023 14:02:01 +0000 Received: (at 61343-done) by debbugs.gnu.org; 27 Feb 2023 14:01:39 +0000 Received: from localhost ([127.0.0.1]:46408 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWe4R-0001Yz-1Q for submit@debbugs.gnu.org; Mon, 27 Feb 2023 09:01:39 -0500 Received: from eggs.gnu.org ([209.51.188.92]:38130) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWe4O-0001Yg-PB; Mon, 27 Feb 2023 09:01:38 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWe4H-0007aw-Ku; Mon, 27 Feb 2023 09:01:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=N8s40hS3Lzdbj1msrtIiAa2Gmd8bNWUz+3rWGH3Ko3Q=; b=D59OxAfLOaLivHy4mH61 VIKFET5nQ/YtaB6u8IKuojdogFw9FW2bsnLfcsFsrdruB0MBxyGB2DxFxmFFq14BwaWNjZoKHkbc7 0sdTjpYa1SmIsMk7GHyCKBRPxz+wGxDEMsskedbTzILa7vp0WGRsssKkUR5EsSIGjC0unynNYs+tW /NJ2qutXQ45HCGDw+gcQLRwztNhMlzlCwbJH6Gk8mE5r1vY/dK5NkNkrI8jv2MCKF72MfXCo1Zut+ cPgwglBJRzXvK4aP/DUonmRU2fYl4qmkfypQqRLYemvCmg5Paf7cyUKXS3YMBKWYhTRLXhqh6Z3Gh e1Mhqp2nRaFNPw==; Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWe41-0002n1-KD; Mon, 27 Feb 2023 09:01:27 -0500 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20230217145627.85062-1-zimon.toutoune@gmail.com> Date: Mon, 27 Feb 2023 15:01:11 +0100 In-Reply-To: <20230217145627.85062-1-zimon.toutoune@gmail.com> (Simon Tournier's message of "Fri, 17 Feb 2023 15:56:27 +0100") Message-ID: <87sferky1k.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-guix@gnu.org List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+larch=yhetil.org@gnu.org Sender: bug-guix-bounces+larch=yhetil.org@gnu.org X-Migadu-Country: US X-Migadu-Flow: FLOW_IN ARC-Authentication-Results: i=1; aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=D59OxAfL; spf=pass (aspmx1.migadu.com: domain of "bug-guix-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="bug-guix-bounces+larch=yhetil.org@gnu.org"; dmarc=pass (policy=none) header.from=gnu.org ARC-Seal: i=1; s=key1; d=yhetil.org; t=1677506627; a=rsa-sha256; cv=none; b=KjhrFaWozZh7zixjUf4ay/jJYOOw3lG9CGPFGn1MqLXH+adPxoHN63oQwiiSj5hQJhw8b2 FAnigny0GwVxCwuaJNgyp7CArSsMcwdwsV29ZPeAyJFtb72bPk8UBo/fPnvbVJiZQamkaU hLPHJuFSMZc7s4swtysNwItiJOi2n/H0u9jefGdc1wfQ2tml3uQK0Kva7DS6tLDOe50ckP Gf9s1DWq3qrQKDZ8rDa0jo62IGZeTVNVgX5J57OrXqrStf7QLIlSUxtwIIl4KjeYxksckj BjNBWveDnj4zXmrPrsjDApEpQEW66SVlxE/tObkcXn3liIqcPAxTqlgl32SycQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=yhetil.org; s=key1; t=1677506627; h=from:from:sender:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding:resent-to: resent-from:resent-sender:resent-message-id:in-reply-to:in-reply-to: references:references:list-id:list-help:list-unsubscribe: list-subscribe:list-post:dkim-signature; bh=N8s40hS3Lzdbj1msrtIiAa2Gmd8bNWUz+3rWGH3Ko3Q=; b=gohQ0DmPr37jINmk/o5cVGu5UjjO2POWewggCbwL1aKBhzpuA8vULc+ebYChhIPpvaiIrN VmV1S1jWZqMDBivif2adHimudSbK/4wKTH3S0Goml/zLmrNL8HBPx/M0gIzejHIuNIP5FV Jg8t/qfsl5JYCtO3Y+nNfOChM+tUO6uBioUqYVyJu7xpX5TKvFIOwvwmjrUh4rJFj6Sitg eYr4fMGA87n4OeUroLvYUDaFiyPwqbMzbRb6ePQuXyFE8fL3G+22zDX7Q/x41z+yncWKxe 3UXH0bsQPlfs1/S2NA+zw6oyMPw+eBNVEPzYDnPKSaTmS14r3PrLKJtR+7ZX1w== X-Migadu-Queue-Id: A2D691A05D Authentication-Results: aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=D59OxAfL; spf=pass (aspmx1.migadu.com: domain of "bug-guix-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="bug-guix-bounces+larch=yhetil.org@gnu.org"; dmarc=pass (policy=none) header.from=gnu.org X-Migadu-Scanner: scn1.migadu.com X-Migadu-Spam-Score: -1.09 X-Spam-Score: -1.09 X-TUID: yav0Ai9dhqb6 Hi Simon, Simon Tournier skribis: > Fixes . > Reported by =E5=AE=8B=E6=96=87=E6=AD=A6 . > > * guix/scripts/repl.scm (define-command): Before starting the REPL, > run (current-profile) which makes available all channels. [...] > +++ b/guix/scripts/repl.scm > @@ -211,6 +211,7 @@ (define script > ((guile) > (save-module-excursion > (lambda () > + (current-profile) ;Run (%package-module-path) as expla= ined above. I tweaked the comment :-) and applied. Thanks! Ludo=E2=80=99.