From unknown Thu Jun 19 14:03:38 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#70067 <70067@debbugs.gnu.org> To: bug#70067 <70067@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add python-find-libpython. Reply-To: bug#70067 <70067@debbugs.gnu.org> Date: Thu, 19 Jun 2025 21:03:38 +0000 retitle 70067 [PATCH] gnu: Add python-find-libpython. reassign 70067 guix-patches submitter 70067 Cayetano Santos severity 70067 normal tag 70067 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 29 04:58:41 2024 Received: (at submit) by debbugs.gnu.org; 29 Mar 2024 08:58:41 +0000 Received: from localhost ([127.0.0.1]:41700 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rq84P-0006jD-8P for submit@debbugs.gnu.org; Fri, 29 Mar 2024 04:58:41 -0400 Received: from lists.gnu.org ([2001:470:142::17]:33668) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rq84K-0006iq-Av for submit@debbugs.gnu.org; Fri, 29 Mar 2024 04:58:39 -0400 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 1rq84C-0003OH-1d for guix-patches@gnu.org; Fri, 29 Mar 2024 04:58:28 -0400 Received: from latitanza.investici.org ([2001:888:2000:56::19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rq848-0002iR-Cu for guix-patches@gnu.org; Fri, 29 Mar 2024 04:58:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1711702692; bh=9tVqnJ0i3yJM7shYD933V/4sovjtQ20a3v7o+x77/Jg=; h=From:To:Cc:Subject:Date:From; b=ejGMKvdB25Eo8j9X6gEnSQgEUleScDXZZNxmFoyHjdg3MrgH2ZkKuklU6O+/51m9r klImu954/HCr6Bh+WPAjQcxIb9mjlnmeTcBBkRLszkWy1FrWocqR6p+e+0u0Z2BcZb UrUTFgScP1Wgkbpp0BVEoYkmzOTGCrJHqCttKZ2I= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4V5Z7S57cHzGpBL; Fri, 29 Mar 2024 08:58:12 +0000 (UTC) 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 4V5Z7S46dyzGp5y; Fri, 29 Mar 2024 08:58:12 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-find-libpython. Date: Fri, 29 Mar 2024 09:57:59 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:888:2000:56::19; envelope-from=csantosb@inventati.org; helo=latitanza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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.1 (/) * gnu/packages/python-xyz.scm (python-find-libpython): New variable. --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8a6ef23b58..7008ee6ae9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20886,6 +20886,29 @@ (define-public python-lark-parser some degree most natural languages too.") (license license:expat))) +(define-public python-find-libpython + (package + (name "python-find-libpython") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ktbarrett/find_libpython") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1z1r9nix2z75sv41j97pnl6jgj2lk6k8la23vavxjpprsc9ld1dd")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest)) + (home-page "https://github.com/ktbarrett/find_libpython") + (synopsis "Find the path to the @code{libpython} dynamic library") + (description "@code{find_libpython} helps find the path to the +@code{libpython} dynamic library for the current Python environment. It is +both a script and a Python package.") + (license license:expat))) + (define-public python-libcst (package (name "python-libcst") base-commit: 0ff72d105ca03a82de6bb5193266fd05fce72daf -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 28 10:12:21 2025 Received: (at 70067) by debbugs.gnu.org; 28 Feb 2025 15:12:21 +0000 Received: from localhost ([127.0.0.1]:50695 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1to22G-0000NQ-C4 for submit@debbugs.gnu.org; Fri, 28 Feb 2025 10:12:20 -0500 Received: from devianza.investici.org ([2c0f:f930:0:4::108]:50963) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1to22C-0000N0-Bc for 70067@debbugs.gnu.org; Fri, 28 Feb 2025 10:12:18 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1740755533; bh=iyXTKJkay1f0hikzN92YvscuY7cmUxoPFbsa0CXzdI4=; h=From:To:Cc:Subject:Date:From; b=L3q8mkDUebByWsbhuXVoKmFAnsgVzX0ViayTtTvmb/em0C0uyfUzPXgBfck/mOQ4m YYRRMRQWuET6X/7UCFsBlXVkxRzd+x2CiJksqx8GS2TvFf3dbPT/e+VdSoY2p8RMjY IoPqneump0mkF0uE59+aZ8G03vEZ4r7p90UufS/w= Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4Z4BWw750gz6vJ2; Fri, 28 Feb 2025 15:12:12 +0000 (UTC) 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 4Z4BWw5Qjpz6v39; Fri, 28 Feb 2025 15:12:12 +0000 (UTC) From: Cayetano Santos To: 70067@debbugs.gnu.org Subject: [PATCH v1] gnu: Add python-find-libpython. Date: Fri, 28 Feb 2025 16:11:40 +0100 Message-ID: <310da0d267e90bc558e6b4aa983508a310448395.1740755499.git.csantosb@inventati.org> X-Mailer: git-send-email 2.48.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 70067 Cc: Cayetano Santos 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.7 (-) * gnu/packages/python-xyz.scm (python-find-libpython): New variable. Change-Id: I167f640549a0baca5b378ddb84d33b12d71e2d9a --- gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c00a54066b..2d54cff9c5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -162,6 +162,7 @@ ;;; Copyright © 2025 Jordan Moore ;;; Copyright © 2025 Dariqq ;;; Copyright © 2025 Nguyễn Gia Phong +;;; Copyright © 2025, Cayetano Santos ;;; ;;; This file is part of GNU Guix. ;;; @@ -23290,6 +23291,31 @@ (define-public python-lark-parser some degree most natural languages too.") (license license:expat))) +(define-public python-find-libpython + (package + (name "python-find-libpython") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ktbarrett/find_libpython") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z1r9nix2z75sv41j97pnl6jgj2lk6k8la23vavxjpprsc9ld1dd")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel + ;; tests + python-pytest)) + (home-page "https://github.com/ktbarrett/find_libpython") + (synopsis "Find the path to the @code{libpython} dynamic library") + (description + "@code{find_libpython} helps find the path to the +@code{libpython} dynamic library for the current Python environment. It is +both a script and a Python package.") + (license license:expat))) + (define-public python-libcst (package (name "python-libcst") base-commit: 73ceab22af8c0c35b4f89d75740c6b745f8d9ba6 -- 2.48.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 01 18:00:30 2025 Received: (at submit) by debbugs.gnu.org; 1 Mar 2025 23:00:30 +0000 Received: from localhost ([127.0.0.1]:46190 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1toVos-0008Lp-AY for submit@debbugs.gnu.org; Sat, 01 Mar 2025 18:00:30 -0500 Received: from lists.gnu.org ([2001:470:142::17]:46872) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1toVoq-0008Ko-11 for submit@debbugs.gnu.org; Sat, 01 Mar 2025 18:00: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 1toVok-0005ps-6V for guix-patches@gnu.org; Sat, 01 Mar 2025 18:00:22 -0500 Received: from mira.cbaines.net ([212.71.252.8]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1toVoi-0003Cv-NV for guix-patches@gnu.org; Sat, 01 Mar 2025 18:00:21 -0500 Received: from localhost (unknown [IPv6:2a02:6b67:e390:8b00::1ce5]) by mira.cbaines.net (Postfix) with ESMTPSA id 0E12227BBE2; Sat, 1 Mar 2025 23:00:20 +0000 (GMT) Received: from fang (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 5b2bde32; Sat, 1 Mar 2025 23:00:19 +0000 (UTC) From: Christopher Baines To: Cayetano Santos via Guix-patches via Subject: Re: [bug#70067] [PATCH v1] gnu: Add python-find-libpython. In-Reply-To: <310da0d267e90bc558e6b4aa983508a310448395.1740755499.git.csantosb@inventati.org> (Cayetano Santos via Guix-patches via's message of "Fri, 28 Feb 2025 16:11:40 +0100") References: <310da0d267e90bc558e6b4aa983508a310448395.1740755499.git.csantosb@inventati.org> Date: Sat, 01 Mar 2025 23:00:19 +0000 Message-ID: <87plj0xsos.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=212.71.252.8; envelope-from=mail@cbaines.net; helo=mira.cbaines.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: 70067-done@debbugs.gnu.org, Cayetano Santos 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.1 (/) --=-=-= Content-Type: text/plain Cayetano Santos via Guix-patches via writes: > * gnu/packages/python-xyz.scm (python-find-libpython): New variable. > > Change-Id: I167f640549a0baca5b378ddb84d33b12d71e2d9a > --- > gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) Thanks, I've pushed this to master as de3954341b36325a6f908bd028d6cc379e9f26d2. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmfDkYNfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XdXOQ//enkL+EQ3QgSrts2ouEkmH/G5LyGuzEol vQ7zxKyahViEzIpyqghXOcimJMNfN2FE6MamYQQaRyugNngMapUVLPHeYIfsb7xZ 4sLx1wnsaK7cfKffloN1Dp5Kip+G0ZTgwuSugcRYlVynZVMckM0tP+/XCWeAeCTQ jEYkuppqvvvwnEhsRFXAX9H74GFurOb2YQPtAUeN3HpHeAW02f6fTfirtgg3ANU7 oIOM7EbXriSqq6gbGnldn0F0CeSHUvKU9wANPRixB/J6Jei2JKahtuJM0pyNxTHQ 0S73cKEo1T4l838CmYBUAmloUyhS+M47DL6CAuohMmeM1T9HrkzLLZ4HhorZQ+x4 FFn0pH0EZ8E/Ghi/4YpJzOmfD5gz11tyKFRjV0vhEV+AWLs/myH1EkECfumcIdqC 7aSOQzqEXjjJhWdIpVTTmhlUegXiUvAZ9KgovjjOm5SZuq8Sn1fYZV2IgSaPCm2Q DMbTIw5th47sNTi7rbi7IkRkqagnY6DpZgnpaGNH6C7q/WbTF6bMW7xMxOYJmAeW LdhrUjqGnwR47rvuKd7++7hzaSbCy85BLtVa7Z0YkWfBzxXhXjao2WnjCK15k67o jbwXuZzjeQIHcgveapuYk2MjhKI13XaAItVlHqGuFOczn/vtwOBHNtBtkcqVVmGJ wo5XUSfdHl8= =Zba/ -----END PGP SIGNATURE----- --=-=-=-- From unknown Thu Jun 19 14:03:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 30 Mar 2025 11:24:34 +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