From unknown Thu Jun 19 14:03:35 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#61967 <61967@debbugs.gnu.org> To: bug#61967 <61967@debbugs.gnu.org> Subject: Status: guix pack error with python packages Reply-To: bug#61967 <61967@debbugs.gnu.org> Date: Thu, 19 Jun 2025 21:03:35 +0000 retitle 61967 guix pack error with python packages reassign 61967 guix submitter 61967 cayetano.santos@inventati.org severity 61967 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 04 14:49:43 2023 Received: (at submit) by debbugs.gnu.org; 4 Mar 2023 19:49:43 +0000 Received: from localhost ([127.0.0.1]:37786 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYXt1-0002d5-C4 for submit@debbugs.gnu.org; Sat, 04 Mar 2023 14:49:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:39990) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYXsw-0002cs-Br for submit@debbugs.gnu.org; Sat, 04 Mar 2023 14:49:42 -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 1pYXst-0004kW-SB for bug-guix@gnu.org; Sat, 04 Mar 2023 14:49:36 -0500 Received: from confino.investici.org ([93.190.126.19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYXsr-0005Bt-Ow for bug-guix@gnu.org; Sat, 04 Mar 2023 14:49:35 -0500 Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4PTb5C6cBzz1113 for ; Sat, 4 Mar 2023 19:49:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1677959359; bh=t28gxTPl+hI1+/V/EEFCxVfECMnf3e887rAjLZHd3kI=; h=From:To:Subject:Date:Reply-To:From; b=uUeyRcwBPa0tCOU9q11imuMG6M8ekb81TvxUT+3V5scTm2Vp2Qb/C2BTzBgAzJkUD I1vltRb61WsbE1HpXQsnHCzj/Nc/p1JYy5HgoVrsYwek1nvYdGp1Tn0FVQo0tH9WmJ QNuQhVXWYXmFMaahsa0bd0oND/fv6ZnB4S3sgf90= Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4PTb5C4qJdz110v for ; Sat, 4 Mar 2023 19:49:19 +0000 (UTC) User-agent: mu4e 1.8.13; emacs 30.0.50 From: Cayetano Santos To: bug-guix@gnu.org Subject: guix pack error with python packages Date: Sat, 04 Mar 2023 20:35:01 +0100 Message-ID: <87y1occn5t.fsf@inventati.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=93.190.126.19; envelope-from=cayetano.santos@inventati.org; helo=confino.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: cayetano.santos@inventati.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Hello guix, I=E2=80=99m trying to deploy a test set of python packages to a remote se= rver, using the following guix pack command (latest guix, as for now) guix pack -R --compression=3Dxz --save-provenance \ -S /.guix-profile/bin=3Dbin -S /.guix-profile/share=3Dshare \ -S /.guix-profile/etc=3Detc -S /.guix-profile/lib=3Dlib \ -S /.guix-profile/include=3Dinclude The resulting file.tar.xz is sent to the server with scp file.tar.xz server:/dir1/dir2/. Then, when I ssh server cd /dir1/dir2 I do a tar xf file.tar.xz At this point, a =E2=80=99ls /dir1/dir2=E2=80=99 shows, as expected .guix-profile gnu file.tar.xz Now, when I just (PYTHONPATH is empty at this point) /dir1/dir2/.guix-profile/bin/python3 -c \ "import sys; print(sys.path)" I get /dir1/dir2/hj...python... /dir1/dir2/hj...numpy... /dir1/dir2/hj...matplotlib... instead of /dir1/dir2/gnu/store/hj...python... /dir1/dir2/gnu/store/hj...numpy... /dir1/dir2/gnu/store/hj...matplotlib... so that when I /dir1/dir2/.guix-profile/bin/python3 -c "import numpyt" I get an error ModuleNotFoundError: No module named 'numpy' If, however, I export GUIX_PROFILE=3D/dir1/dir2/.guix-profile source $GUIX_PROFILE/etc/profile export PYTHONPATH=3D$GUIX_PYTHONPATH and then /dir1/dir2/.guix-profile/bin/python3 I have Error processing line 1 of /dir1/dir2/.guix-profile/lib/python3.9/site-packages/matplotlib-3.5.2-p= y3.9-nspkg.pth: Trying to =E2=80=99import numpy=E2=80=99 gives Traceback (most recent call last): File "", line 1, in File "/dir1/dir2/.guix-profile/lib/python3.9/site-packages/numpy/__in= it__.py", line 110, in import warnings ModuleNotFoundError: No module named 'warnings' Am I doing something wrong ? Is this a bug ? Thanks, Cayetano Santos From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 05 05:11:29 2023 Received: (at 61967) by debbugs.gnu.org; 5 Mar 2023 10:11:29 +0000 Received: from localhost ([127.0.0.1]:38536 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYlKy-0001BP-T0 for submit@debbugs.gnu.org; Sun, 05 Mar 2023 05:11:29 -0500 Received: from jpoiret.xyz ([206.189.101.64]:56274) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYlKw-0001BG-IL for 61967@debbugs.gnu.org; Sun, 05 Mar 2023 05:11:27 -0500 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id 07F9F185309; Sun, 5 Mar 2023 10:11:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1678011084; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=EwxfyyU4ozIn/pbObcBPugDw6a8fgt8hN0RKtq5rxIA=; b=sDzYKTt35vjWUeKkRZNqi2jQMcOoCBd4e0OoWb8QMjYZtwJ17/BL7PZ0b2HoMuwpNr5O3m AHrIvNF50p1oVdFTIHPVt42ePbSjcOc7Gn+jvn0Rp/jx2nrX43dd1XwQ1ZkDDjtqVhoQd9 PYVEIzY2hiA3hL+wUUGjP9pjQohOIdmIdAPBMDXprxKrrv+aefkFSjW3QmaD5ffDydkVTy NJILWN8+bSUG6Kp8lBlhAQ3csz8dmbFcUaaFkbRsBx5P1rL3Z8+M1zH8SpO0dzaw1Z/jEg oLfWtEBZQMrNUprInbBbl85rK+4gVo9pOmPJDxPHYyNyw1fbO9ScOpxaLa+vWg== From: Josselin Poiret To: cayetano.santos@inventati.org, 61967@debbugs.gnu.org Subject: Re: bug#61967: guix pack error with python packages In-Reply-To: <87y1occn5t.fsf@inventati.org> References: <87y1occn5t.fsf@inventati.org> Date: Sun, 05 Mar 2023 11:11:19 +0100 Message-ID: <878rgbqzi0.fsf@jpoiret.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spamd-Bar: -- X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61967 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Cayetano, Cayetano Santos via Bug reports for GNU Guix writes: > Hello guix, > > I=E2=80=99m trying to deploy a test set of python packages to a remote = server, > using the following guix pack command (latest guix, as for now) > > guix pack -R --compression=3Dxz --save-provenance \ > -S /.guix-profile/bin=3Dbin -S /.guix-profile/share=3Dshare \ > -S /.guix-profile/etc=3Detc -S /.guix-profile/lib=3Dlib \ > -S /.guix-profile/include=3Dinclude > > The resulting file.tar.xz is sent to the server with > > scp file.tar.xz server:/dir1/dir2/. This is most likely [1], which hasn't been fixed yet but I have a patch to that effect. The problem is that it would cause a lot of rebuilds so I haven't sent it yet, I'll send it after the core-updates merge. [1] https://issues.guix.gnu.org/53258 mid: 67e7d225-f824-b691-7125-6b37abef8bb0@felsoci.sk Best, =2D-=20 Josselin Poiret --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHEBAEBCAAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmQEascQHGRldkBqcG9p cmV0Lnh5egAKCRBQXkC5FhcaioZvDACjMmQz3d6i+Gc3SNPacn8eKLNWgY+ExL/e zBseS5TVAn1rPOBnCv3ADwIIBJwOy1RAwHjYENsJ6WLZhg1D5lZOg6ihC3sh6VzJ by9fMYP6sLasmTZAIsXiXKL6JrRtI3pV5fWtOrD4nISH3E68v4KYIb1WEh3Fu99r w7GMli+0/oYjPlSZQ2SbgBB5vjIVX+GuBlqYIrwFnxhTttTLcIxHwCwRb+dwx5cC ia5XlxYoD1MRFK2it359onst6qoB11kVPEb3HqBUtDdyKm3pQSj98H2AlKzc79Ma Z+hhx4Ym0Q/V5meX0oc7Ttckz/dAbdcXsvGneG/O/UN0gi4sCjZY//4O+zrewdvj KyhNwRuFdGU/lwEpD2IxS6BcL2r9YAIwMKWboD8FhgwOzE15tJWwNWfPzEpEnccu ATRSG2Rymw9Dt4V+Bw26gtpHPEe9Y2gT/kdpR6Fr8TRoGSj+HuLsbXi6hykXjZJU N43Vcsvz0wUpsms0M1fJM27/ORU53VM= =fZSA -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 07 16:09:01 2023 Received: (at 61967) by debbugs.gnu.org; 7 Mar 2023 21:09:01 +0000 Received: from localhost ([127.0.0.1]:47278 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZeYP-0001hH-8X for submit@debbugs.gnu.org; Tue, 07 Mar 2023 16:09:01 -0500 Received: from mail-qv1-f43.google.com ([209.85.219.43]:36615) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZeYN-0001gy-0N for 61967@debbugs.gnu.org; Tue, 07 Mar 2023 16:08:59 -0500 Received: by mail-qv1-f43.google.com with SMTP id m4so9862986qvq.3 for <61967@debbugs.gnu.org>; Tue, 07 Mar 2023 13:08:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1678223333; h=content-transfer-encoding:mime-version:user-agent:message-id :in-reply-to:date:references:subject:cc:to:from:from:to:cc:subject :date:message-id:reply-to; bh=Mm3inp3IR3tQ6OAqqluo1YsY0HClX6cx5A3CA8LECsY=; b=GeYRFfycRJXPORF93nXjcgD3ckPonpiDdaMDd5H77GnM25cGBwcqWhGWDVUheOVdk4 HnChNvE6JG9rPP6dKwwkehYCTW4sUsiqzALgZj5iN0YlF9q7GNj/BVjbYDTKRKZHsxze jm/4KYlF5I3AENGbkqhJ5xl3WhALU17s1i/akjS7X/TxmE2nahRsF3+5WkQpVCATZ3T1 Kihb/AJ+8UoqK9Mld/qbSThDlznGIjhchFZc6fzsCvOGVjVrNf1gaLZorq9bykSqjexp KTQZNwd1w3GzxM6f1TJ3T3aU0G0EAN3rMzHKhbLOez1AcA0MHpW/dvCWTi9be1zibj// w2tg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1678223333; h=content-transfer-encoding:mime-version:user-agent:message-id :in-reply-to:date:references:subject:cc:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=Mm3inp3IR3tQ6OAqqluo1YsY0HClX6cx5A3CA8LECsY=; b=1p8o7frPBfkj2dsUubQl+1UnkMuYKH28usolrsNP+JnlAgfFBQqeWctKw9BUzUYt/J WsOjK2XXYvX6KON/Q/yL1119PV052SeI2Lmw+Rff2RUL9q9+obd9ls9uej1c2L+Y7+ks NQmn1E2DPXc9nXHbxFBXsgkD3Vbrko8mqT35+CZbhIKm7JKskecCn25c2dv8TTgofzwR aLIQnsY7+0uDf4sp/T21lvBIg1tLrHS1VY5aodtBC5KTnN+0ndrA/FBDtt2o+TUW8jds SRNKvA5cKbaMTgfsaEZFJFfAWK7+V4P27Ha1oiK4k29BC5PtdUJxWTBVWwIWQiZVkMhu Ylew== X-Gm-Message-State: AO0yUKWRTHlrnFYFI7IRePQsOdeYBRvPRT2XKX5R5ro0oPVAq8MMwUt8 7X+QNClYz3x7FLSzQW81YVUZBDULyD8EEgFj X-Google-Smtp-Source: AK7set91YfmMKU72qqT/0+2Suloo/VU0+T9AryGWYfLiAYmmVg+0ksuiM4JENmJ4mVIuOgoKpMgN9w== X-Received: by 2002:a05:6214:19cb:b0:570:ee5c:2953 with SMTP id j11-20020a05621419cb00b00570ee5c2953mr39318005qvc.11.1678223333346; Tue, 07 Mar 2023 13:08:53 -0800 (PST) Received: from hurd ([2607:fad8:4:3::1000]) by smtp.gmail.com with ESMTPSA id s144-20020a374596000000b0073bb4312842sm10110913qka.128.2023.03.07.13.08.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 07 Mar 2023 13:08:52 -0800 (PST) From: Maxim Cournoyer To: Josselin Poiret Subject: Re: bug#61967: guix pack error with python packages References: <87y1occn5t.fsf@inventati.org> <878rgbqzi0.fsf@jpoiret.xyz> Date: Tue, 07 Mar 2023 16:08:51 -0500 In-Reply-To: <878rgbqzi0.fsf@jpoiret.xyz> (Josselin Poiret's message of "Sun, 05 Mar 2023 11:11:19 +0100") Message-ID: <87356gw9p8.fsf@gmail.com> 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-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61967 Cc: 61967@debbugs.gnu.org, cayetano.santos@inventati.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Josselin, Josselin Poiret writes: > Hi Cayetano, > > Cayetano Santos via Bug reports for GNU Guix writes: > >> Hello guix, >> >> I=E2=80=99m trying to deploy a test set of python packages to a remote= server, >> using the following guix pack command (latest guix, as for now) >> >> guix pack -R --compression=3Dxz --save-provenance \ >> -S /.guix-profile/bin=3Dbin -S /.guix-profile/share=3Dshare \ >> -S /.guix-profile/etc=3Detc -S /.guix-profile/lib=3Dlib \ >> -S /.guix-profile/include=3Dinclude >> >> The resulting file.tar.xz is sent to the server with >> >> scp file.tar.xz server:/dir1/dir2/. > > This is most likely [1], which hasn't been fixed yet but I have a patch > to that effect. The problem is that it would cause a lot of rebuilds so > I haven't sent it yet, I'll send it after the core-updates merge. If you send it *after* the core-updates merge (to core-updates)? It's going to be quite a while before it lands to master. Perhaps you could send it now? core-updates is the right branch for mass rebuilds. --=20 Thanks, Maxim From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 09 14:57:51 2023 Received: (at 61967) by debbugs.gnu.org; 9 Mar 2023 19:57:51 +0000 Received: from localhost ([127.0.0.1]:53140 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1paMOd-0003mN-DX for submit@debbugs.gnu.org; Thu, 09 Mar 2023 14:57:51 -0500 Received: from jpoiret.xyz ([206.189.101.64]:40480) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1paMOb-0003mF-0o for 61967@debbugs.gnu.org; Thu, 09 Mar 2023 14:57:49 -0500 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id B3501185309; Thu, 9 Mar 2023 19:57:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1678391868; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=VsMTZ/f1To4HnfrlO3nN/uzcGNv1RVBxbUsbzB4ueDo=; b=HUyQfssJLMgCyhavS388jdpjsFVaB+iI6aj/D7owCANojtrIGadRQID5VRMtHpl0k/ge1b c1yEKffIFcAKCGBYhaQs5y5UcRJgStJafQSn+gCBsWqK2B6yxB8ony3BT9QEZ2XtjiHaB3 D5J9XCfgtFfc7AzO5HlPldauegQkniblIRfQ34HlQGlFp8nDDSN81nhTwisVM94VPkcCz3 a1m+lUaZZ4aS2KQKpfmU8J6W41H7fWk6rKjP6c7kFxLF8E2yHoTVURUlCyI/Jju2Yo416p kSTvzoBI/0i1eR0yH78DxBOnnTjGXwAX+uRCDvmhwuZp/Em0zHOi9p86v9JKKA== From: Josselin Poiret To: Maxim Cournoyer Subject: Re: bug#61967: guix pack error with python packages In-Reply-To: <87356gw9p8.fsf@gmail.com> References: <87y1occn5t.fsf@inventati.org> <878rgbqzi0.fsf@jpoiret.xyz> <87356gw9p8.fsf@gmail.com> Date: Thu, 09 Mar 2023 20:57:44 +0100 Message-ID: <87fsadd7ev.fsf@jpoiret.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spamd-Bar: / X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61967 Cc: 61967@debbugs.gnu.org, cayetano.santos@inventati.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi Maxim, Maxim Cournoyer writes: > If you send it *after* the core-updates merge (to core-updates)? It's > going to be quite a while before it lands to master. Perhaps you could > send it now? core-updates is the right branch for mass rebuilds. I think we are trying to move away from the massive core-updates branch and rather work with feature branches instead, although the pending core-updates merge is blocking the change for now. I don't want to add yet more work for people courageously working on core-updates right now. Best, =2D-=20 Josselin Poiret --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHEBAEBCAAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmQKOjkQHGRldkBqcG9p cmV0Lnh5egAKCRBQXkC5Fhcaig8BC/9qn4HSXT7RbaLTxqcv4K2tGa/XlvUgeCtz Xfl8Qlfx5197itj7FNhBWdprMWm8HNM3iPnuXkfuBRsWaiY9HbueqMVZ4SWEFk+z P6x0tM3e/TR659PGoSYhMUyXUqtWQtAQPlAgDJt951Ex/ZDxiyypVnEwqDEot1GV DsZCm8VDKVBI1V8oq9YIZnbWTJy1MLYrUjVXa3QRxxT82KEpn1Cl7AyKVv8XKUgd hZ4iIwlOLzh2AXQKW2lZLYPM2wL+AlwjlWL7fO6MGG4CIRcS1iAGudmosZnoQl9H 02N1z7CmgULfUb55bsVOTiOC33jumo8d4VW7mOp00GXyprrqB3YYceJmsJ8W6kcM EN2E177mBD6Pdh00xWqfkCLg3/+tf4xteg0ZrJyGmLy5iG9UZt5F0cwJDaD9yQMt fxW2ol1KaJP9xRUOyBWNghugGAVGVwj8qqSUuRAf4fBPWSlQAWCL5ASQv5VnaZ1f rl12eTujH9LWQ5bE7nwzCVHk+JqwYQU= =PDPD -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 09 22:44:08 2023 Received: (at 61967) by debbugs.gnu.org; 10 Mar 2023 03:44:08 +0000 Received: from localhost ([127.0.0.1]:53397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1paTfs-00088S-IB for submit@debbugs.gnu.org; Thu, 09 Mar 2023 22:44:08 -0500 Received: from mail-qt1-f182.google.com ([209.85.160.182]:40945) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1paTfp-00087k-T4 for 61967@debbugs.gnu.org; Thu, 09 Mar 2023 22:44:06 -0500 Received: by mail-qt1-f182.google.com with SMTP id h19so4474286qtk.7 for <61967@debbugs.gnu.org>; Thu, 09 Mar 2023 19:44:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1678419840; h=mime-version:user-agent:message-id:in-reply-to:date:references :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=KRc2wZA16x6QfzscBkjbSEg8Y30CM9TbiYEkklIdofM=; b=QOyqQKd5xW5tpRVmeGCR05mmL2khbKkC2cJh6TL5tu0zmQc3ngLXyDBfOqa+gXtJyC wQzaLz+8aMKMYQSN8hkAjelbwkQIJeJQy4HxktFDFxz5EI10gOLr444WwaRnxRfsx481 5kvrt+sntL4AKxmwFU5SRQds5ROvtJ0bgWumdkGSFXnZgJA+7e5fkPPyCBvANtd4IaT9 uWb1q7B9vBP0j7U1Bo7oFUUmFUtMHMGECjLozwxPKfa37K631x7CnAbdZ/iE5cCOVA/Y BvzzB1PgX9pSucJvdms/lXcuGTkOslySsTuUTljlqWFmRi0Hta5iBMBKp3b5JglIUQwF EZXg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1678419840; h=mime-version:user-agent:message-id:in-reply-to:date:references :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=KRc2wZA16x6QfzscBkjbSEg8Y30CM9TbiYEkklIdofM=; b=OBReIvoS07hVzgGJvHeJPIEzPjIPYpYTeklmLtLhrIpogyWSm/peNZfOfoIG2PKeAO wu7AvMBAVFr168hGWQ1cJsmDhP5rI0GU+V34xvZWS7ObclFnnIDfUTEENFfXp6HKDKlw 7n4uqNTNEiRTQAcUHM41Fupm43ZaTM5zPG7IoHiZFRatsevTHJo1zvRdV1IwvbrW4DE+ U01UZYSbARdwIjwkKu9yaK+wGZZ1v3D5oqzYrw7LnjaJiLSaW74YA4RggTGlVpuaHA+X 08uUoPVsUX/LyUaLB1WTXVFbU4OcNFCpU14WKMplfYo+7ndloMWooiqi4dx5MKXtzTvb L3RQ== X-Gm-Message-State: AO0yUKXHeYpvRY+C05Lj6fJY2JS50/gwe3YFg5BoUtgtZxlnZEJrc+Zi vz0tpznFenwe38gMIIfxWIt+C0+ouV/Nag== X-Google-Smtp-Source: AK7set8cb13UZTnvZcTXLe2nP0DIugp3k3l2OOvCY2h8+Ce+9tZyQVhd0LkZ8h5HKXhLmuP3dZXocw== X-Received: by 2002:a05:622a:388:b0:3bf:d161:79a1 with SMTP id j8-20020a05622a038800b003bfd16179a1mr41475667qtx.29.1678419840108; Thu, 09 Mar 2023 19:44:00 -0800 (PST) Received: from hurd ([2607:fad8:4:3::1000]) by smtp.gmail.com with ESMTPSA id y4-20020a05620a25c400b0073ba211e765sm608688qko.19.2023.03.09.19.43.59 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 09 Mar 2023 19:43:59 -0800 (PST) From: Maxim Cournoyer To: Josselin Poiret Subject: Re: bug#61967: guix pack error with python packages References: <87y1occn5t.fsf@inventati.org> <878rgbqzi0.fsf@jpoiret.xyz> <87356gw9p8.fsf@gmail.com> <87fsadd7ev.fsf@jpoiret.xyz> Date: Thu, 09 Mar 2023 22:43:58 -0500 In-Reply-To: <87fsadd7ev.fsf@jpoiret.xyz> (Josselin Poiret's message of "Thu, 09 Mar 2023 20:57:44 +0100") Message-ID: <878rg5tgn5.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61967 Cc: 61967@debbugs.gnu.org, cayetano.santos@inventati.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Josselin, Josselin Poiret writes: > Hi Maxim, > > Maxim Cournoyer writes: > >> If you send it *after* the core-updates merge (to core-updates)? It's >> going to be quite a while before it lands to master. Perhaps you could >> send it now? core-updates is the right branch for mass rebuilds. > > I think we are trying to move away from the massive core-updates branch > and rather work with feature branches instead, although the pending > core-updates merge is blocking the change for now. I don't want to add > yet more work for people courageously working on core-updates right now. Perhaps I'm out of the loop, but in my book the main branches should never close. If there's a need to freeze the state of one the three main branches new development branches can be created. This was discussed in the past. -- Thanks, Maxim From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 10 03:10:54 2023 Received: (at 61967) by debbugs.gnu.org; 10 Mar 2023 08:10:54 +0000 Received: from localhost ([127.0.0.1]:53614 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1paXq2-0006zY-Dj for submit@debbugs.gnu.org; Fri, 10 Mar 2023 03:10:54 -0500 Received: from jpoiret.xyz ([206.189.101.64]:46254) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1paXq0-0006zP-LE for 61967@debbugs.gnu.org; Fri, 10 Mar 2023 03:10:53 -0500 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id 2E878185309; Fri, 10 Mar 2023 08:10:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1678435848; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=XSIo7MTOmazxKaxeUqK1yLouGy+B/AXH0iW0q0iscSg=; b=KQhtmCRwt95OwxGSKFcXWn5QbcP7l8Dh4OJ5dJaM9GcBeOI8mQsYhWTsDXCfjLtWLHB43h qLhQv2Cl4difUdJMRxbSl5I23YDAxO1EGf4xj/opU/85cUfiKVbhQdmdbO3mjodetETvzF uzdLnU8ybrC84xq0e1WbKXXh1i3eNiYQ85SDtvYgZD8Pk+gQG/q1f8pJaPiYPIYozjNLNl lbCeFOSoC2QvGt/n3otwpf5bPt8fw69u+AeXpdTJSnoviw/KY7o5TTl9EHbUdWANhnNVJf UXcwhKfR+TLgc31JN+rueD+wT6PulJEfYT4AtaZhpnA/+vX7RQf0BwJwfsvNQg== From: Josselin Poiret To: Maxim Cournoyer Subject: Re: bug#61967: guix pack error with python packages In-Reply-To: <878rg5tgn5.fsf@gmail.com> References: <87y1occn5t.fsf@inventati.org> <878rgbqzi0.fsf@jpoiret.xyz> <87356gw9p8.fsf@gmail.com> <87fsadd7ev.fsf@jpoiret.xyz> <878rg5tgn5.fsf@gmail.com> Date: Fri, 10 Mar 2023 09:10:44 +0100 Message-ID: <87r0txauwr.fsf@jpoiret.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spamd-Bar: / X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61967 Cc: 61967@debbugs.gnu.org, cayetano.santos@inventati.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi Maxim,=20 Maxim Cournoyer writes: > Perhaps I'm out of the loop, but in my book the main branches should > never close. If there's a need to freeze the state of one the three > main branches new development branches can be created. This was > discussed in the past. I don't think there was a freeze for core-updates this time, commits are still rolling in on the core-updates branch. Best, =2D-=20 Josselin Poiret --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHEBAEBCAAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmQK5gQQHGRldkBqcG9p cmV0Lnh5egAKCRBQXkC5Fhcaiu68C/9jkhtfaDrOI2DqUDzwkCyoyXQgsqw7y/3s Y7jn/F7cV95i1ynblyVKvUmLKBVeiQRIVl5T8jLZUIBrweNkyRmflcz08dc3lNUv OA+/amRD7V8gs1s/azqzXr2MJOWEq1rp7X7ohtC41HhWNFlFXMxcfZWOhWjGkGOn Q0HizZAVuRvgQadrg9cgQOwd08qrmevYBbjnjDxySfhVZjUmDe6dSvta50rC/3AY oRkqqd2begjfEmGlLW+0uAOFjJL1R5VQLZczXVgoLnpVOGrJg9i84aBHqQlq2nqr xQ4r61SpQOCznXyqkTOPz/ycEdmZAkNWi/8Ebl1aTWJZ0uSgbNINXzm/mDsCGNx0 dnlKlQki/xf+C595yqfsyGkX/CSvhMJYaVD/fCUfnrOffIAGzx4nKHgUdYOK5MUN sVYU2CuYVkKbIQk0JkzafApFPLxXQGQnjlCws4SjMeqrxKAdbFNiM7kWlL7SiH1n 2qyEaOtQ3Sv/pdts70inJ2pnnAQabIw= =WZOt -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 05 15:56:36 2023 Received: (at 61967) by debbugs.gnu.org; 5 Jun 2023 19:56:36 +0000 Received: from localhost ([127.0.0.1]:50391 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q6GJg-0001Tz-IX for submit@debbugs.gnu.org; Mon, 05 Jun 2023 15:56:36 -0400 Received: from devianza.investici.org ([198.167.222.108]:31565) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q6GJe-0001Tp-Ba for 61967@debbugs.gnu.org; Mon, 05 Jun 2023 15:56:35 -0400 Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4QZkrd36R8z6vHs for <61967@debbugs.gnu.org>; Mon, 5 Jun 2023 19:56:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1685994993; bh=ODQRQYg4fQoL2xngRT6CaI8nf8+ZZ/thzBRI0lNXMUw=; h=From:To:Date:Reply-To:From; b=QWB/nyauCRsh48JvwERxL7tinJtIXvpNrDIpjfMVZLbojcEd9oMtI+J3EyEJv3LDd Rrn6Iwx4KKXMxLtjtyKrETUIl4Ti/Qzz/VD3srsu1lrLKAjqnP79ww4zPG4ds9jwOW Yxhby7lbGII1Wn2uOtNnDcrV1RpjjU+7awlCfOJ0= Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4QZkrd1Kcfz6vHV for <61967@debbugs.gnu.org>; Mon, 5 Jun 2023 19:56:33 +0000 (UTC) User-agent: mu4e 1.10.2; emacs 30.0.50 From: Cayetano Santos To: 61967@debbugs.gnu.org Date: Mon, 05 Jun 2023 21:53:44 +0200 Message-ID: <871qipbs42.fsf@inventati.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi, Just for the record, I fixed the problem with export PYTHONPATH=$GUIX_PYTHONPATH:/path-to/.guix-profile/lib/python3.10/:/path-to/.guix-profile/lib/python3.10/site-packages/:/path-to/.guix-profile/lib/python3.10/lib-dynload Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [198.167.222.108 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: 61967 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: csantosb@inventati.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Hi, Just for the record, I fixed the problem with export PYTHONPATH=3D$GUIX_PYTHONPATH:/path-to/.guix-profile/lib/python3= .10/:/path-to/.guix-profile/lib/python3.10/site-packages/:/path-to/.guix-pr= ofile/lib/python3.10/lib-dynload I=E2=80=99m using an up to date guix. Now I can import and use all the py= thon libraries with no problem. Thanks, Cayetano From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 14 04:59:57 2023 Received: (at 61967-done) by debbugs.gnu.org; 14 Aug 2023 08:59:58 +0000 Received: from localhost ([127.0.0.1]:32921 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVTQb-0004dx-IE for submit@debbugs.gnu.org; Mon, 14 Aug 2023 04:59:57 -0400 Received: from latitanza.investici.org ([82.94.249.234]:32813) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVTQZ-0004di-HM for 61967-done@debbugs.gnu.org; Mon, 14 Aug 2023 04:59:56 -0400 Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4RPSyf38nSzGp0N for <61967-done@debbugs.gnu.org>; Mon, 14 Aug 2023 08:59:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1692003594; bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=; h=From:To:Subject:Date:Reply-To:From; b=e/grrL8az+SOyHGXqf3wYYRbegkP/d0BM4VxK76Le/TTUToqW2fGwg19XgF6JeYZ+ OOxndFJyVXtbtTU0Xb4Mn5v+2vhkqvokrc1mUrkpRC8W8gzRMtvXJBhfGKa4b+cC35 k9oUSBUu8jRQr2O9iwt38nWIGp4YPLKN8x7lzg/w= Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4RPSyf1SWXzGnxy for <61967-done@debbugs.gnu.org>; Mon, 14 Aug 2023 08:59:54 +0000 (UTC) User-agent: mu4e 1.10.5; emacs 29.1 From: Cayetano Santos To: 61967-done@debbugs.gnu.org Subject: Fixed. Date: Mon, 14 Aug 2023 10:59:23 +0200 Message-ID: <87pm3qf186.fsf@inventati.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 61967-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: csantosb@inventati.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) From unknown Thu Jun 19 14:03:35 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 11 Sep 2023 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator