From unknown Fri Jun 20 07:15:23 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#54106 <54106@debbugs.gnu.org> To: bug#54106 <54106@debbugs.gnu.org> Subject: Status: [PATCH] guix: packages: Add %32bit-supported-systems, %64bit-supported-systems. Reply-To: bug#54106 <54106@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:15:23 +0000 retitle 54106 [PATCH] guix: packages: Add %32bit-supported-systems, %64bit-= supported-systems. reassign 54106 guix-patches submitter 54106 Efraim Flashner severity 54106 normal tag 54106 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 22 06:15:25 2022 Received: (at submit) by debbugs.gnu.org; 22 Feb 2022 11:15:25 +0000 Received: from localhost ([127.0.0.1]:40149 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMT8e-0005Li-My for submit@debbugs.gnu.org; Tue, 22 Feb 2022 06:15:25 -0500 Received: from lists.gnu.org ([209.51.188.17]:52300) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMT8c-0005La-Fk for submit@debbugs.gnu.org; Tue, 22 Feb 2022 06:15:23 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37944) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nMT8Z-0005Cp-Tz for guix-patches@gnu.org; Tue, 22 Feb 2022 06:15:21 -0500 Received: from flashner.co.il ([178.62.234.194]:38792) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nMT8X-0005sS-DM for guix-patches@gnu.org; Tue, 22 Feb 2022 06:15:19 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id 0D56B402D4; Tue, 22 Feb 2022 11:15:15 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] guix: packages: Add %32bit-supported-systems, %64bit-supported-systems. Date: Tue, 22 Feb 2022 13:14:43 +0200 Message-Id: <6d2a5c7f72606293bb76ebb3e80d0b42634db21e.1645528396.git.efraim@flashner.co.il> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il 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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner 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: -2.3 (--) * guix/packages.scm (%32bit-supported-systems, %64bit-supported-systems): New variables. (%supported-systems): Rewrite using %32bit-supported-systems, %64bit-supported-systems. --- This allows us to do things like declare a package only supports 64-bit architectures, by adding: (supported-systems %64bit-supported-systems) instead of enumerating them specifically or removing them specifically. guix/packages.scm | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/guix/packages.scm b/guix/packages.scm index 3f0262602d..e2a5a58b8d 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014, 2015, 2017, 2018, 2019 Mark H Weaver ;;; Copyright © 2015 Eric Bavier ;;; Copyright © 2016 Alex Kost -;;; Copyright © 2017, 2019, 2020 Efraim Flashner +;;; Copyright © 2017, 2019, 2020, 2022 Efraim Flashner ;;; Copyright © 2019 Marius Bakke ;;; Copyright © 2020, 2021 Maxim Cournoyer ;;; Copyright © 2021 Chris Marusich @@ -148,6 +148,8 @@ (define-module (guix packages) transitive-input-references + %32bit-supported-systems + %64bit-supported-systems %supported-systems %hurd-systems %cuirass-supported-systems @@ -391,11 +393,19 @@ (define* (computed-origin-method gexp-promise hash-algo hash #:guile-for-build guile))) +(define %32bit-supported-systems + ;; This is the list of 32-bit system types that are supported. + '("i686-linux" "armhf-linux" "i586-gnu" "powerpc-linux")) + +(define %64bit-supported-systems + ;; This is the list of 64-bit system types that are supported. + '("x86_64-linux" "mips64el-linux" "aarch64-lixux" "powerpc64le-linux" + "riscv64-linux")) + (define %supported-systems ;; This is the list of system types that are supported. By default, we ;; expect all packages to build successfully here. - '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "mips64el-linux" "i586-gnu" - "powerpc64le-linux" "powerpc-linux" "riscv64-linux")) + (append %32bit-supported-systems %64bit-supported-systems)) (define %hurd-systems ;; The GNU/Hurd systems for which support is being developed. base-commit: e4779e061056b1a3a3ab56ef817353d86c482611 -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 17 14:27:07 2024 Received: (at 54106-done) by debbugs.gnu.org; 17 Sep 2024 18:27:08 +0000 Received: from localhost ([127.0.0.1]:55921 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqcup-0004lQ-L2 for submit@debbugs.gnu.org; Tue, 17 Sep 2024 14:27:07 -0400 Received: from mail-wm1-f43.google.com ([209.85.128.43]:61480) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqcun-0004kq-CF for 54106-done@debbugs.gnu.org; Tue, 17 Sep 2024 14:27:06 -0400 Received: by mail-wm1-f43.google.com with SMTP id 5b1f17b1804b1-42cafda818aso58174505e9.2 for <54106-done@debbugs.gnu.org>; Tue, 17 Sep 2024 11:26:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1726597544; x=1727202344; darn=debbugs.gnu.org; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:to:from:date:sender:from:to:cc :subject:date:message-id:reply-to; bh=PwCVTSzAuW1erfShj+P87ZCTexdeVUCd7bsO/W1RiUk=; b=hTpupATDTeRjC9tCC4hMr1jMRY7m+ys8v+/0l4g4f2ZnS5wGpbxjD+bvqW4Qzzfhfu 7sJHaGcjZ8i8rOwwMoRq9TH/io9sR9NqobrSgzF+HHbUcW9HHqAYrF0GkU9d6oa1SYTn 1GyVBii5t5DxomaUWJjJcnxyPaYyNmNvAbl+c+rrAzXJbzYqAxt8PVDqq+fft12H0wIC EcU0C/NMTu+eYDynUl5erC+HUxKOoPnPNJT3EfQXjpRTTcdMCEnBroXkX2x/dLfA+B3Q 8qfWXj49SP4a+VaOLjiY7QL7lR7FC1NPMhB5V8vs5QX7lxHl+41Mv7HZpL0/teYaKmaH m1Cw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1726597544; x=1727202344; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=PwCVTSzAuW1erfShj+P87ZCTexdeVUCd7bsO/W1RiUk=; b=roCvJPGwfenoH8wvZwDPBB+ScFDZESLAzefxV8YKzND5SPVy98nEjXRMi0Y1gXK8/9 yPw/3ufTkrfCmIL3F6xTS1EdP3da1GmzAisKin6oHfLRrLAu0QS0cUZ6cnWmtU2FD5RY rkrR61XJNHhwh0sQ4QwLeV6NRaSHmdI41gRfY97CxOaWxN09Yrfq066NxgxHA5SPFEKz w8i6dx65n6CerAd2k79A9M3pcxDczrr8p8g3qd4Bjgy4dL6m0CBnCgFrTdGEoOSv15CV iZK4HOjsPFXahRGLOxmhDEKjewbdOpOJEsgDD43V3bONVi/oq/OwLx/RO56DtZazWsNZ pXuA== X-Gm-Message-State: AOJu0YyhL7Rhs0yirydFQlypylQ75a5lO3eyTNGHAhAwQJRI2biKL413 ALl7t5BbnYCw+ZfS+Hh50dVHwianQqar3UhdwxUJHL5eRcvuoY2KNbmKDNXe X-Google-Smtp-Source: AGHT+IEEyQRbBLz20vouleppjCYBAkCzECO+5VqAf38DPHpDCFcVr5+N9W7gbqxHh+ctnqgmbFuiFg== X-Received: by 2002:a05:600c:4d06:b0:42c:acb0:ddb6 with SMTP id 5b1f17b1804b1-42cdb531b66mr149627115e9.9.1726597544076; Tue, 17 Sep 2024 11:25:44 -0700 (PDT) Received: from localhost ([141.226.162.35]) by smtp.gmail.com with ESMTPSA id 5b1f17b1804b1-42da24271besm109695515e9.41.2024.09.17.11.25.42 for <54106-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 17 Sep 2024 11:25:43 -0700 (PDT) Date: Tue, 17 Sep 2024 21:25:41 +0300 From: Efraim Flashner To: 54106-done@debbugs.gnu.org Subject: Re: bug#54106: Acknowledgement ([PATCH] guix: packages: Add %32bit-supported-systems, %64bit-supported-systems.) Message-ID: Mail-Followup-To: Efraim Flashner , 54106-done@debbugs.gnu.org References: <6d2a5c7f72606293bb76ebb3e80d0b42634db21e.1645528396.git.efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="2XXti4WnqjJx8KJT" Content-Disposition: inline In-Reply-To: X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: 54106-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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.8 (/) --2XXti4WnqjJx8KJT Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Looks like this was pushed in February 2022 --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --2XXti4WnqjJx8KJT Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmbpyaUACgkQQarn3Mo9 g1HXKw//YOlxAOv/hGXTXmQduw7/uaSIaw6nYsAT8Cisq/a7+dbs3e1ApgpP7lDs jHYK8YhShVWLDaAV+IM7VEGhqmZ3dOUQ3P6a9lsLeaXkedTu5C6m7GQ8i8TrwglZ AM4MR1EXW4G7wJbhV40VC68tdPrlpSeXxexlcWUlBc4GhuT9ARqVYVz1Fl47LK6Z 6er69eUb64xH1zxzFa8P9tRvOZvr4vlYMTyaKcr6RaZ2LHQQbQqMWRn6AHsjHc3b aWpXKeR2nAgzS6dDGlnxfFW9OEJOoKRjVw+Nc+87fxCXX+JC2sqwqV7VQNnqTAxS uSQGFJ9KF9BtcvA2aQC5BjFH0n3T4tmWGxkUlG52AT5zwvPpRp5mml5JxBLinUv8 RlLNS95i7vEL2rzZN40kw+vVYNh+dXu7ve143E/7gBU+t9O99f6yIj/iCQu61jJL wXYQbjrB4fHLOf6LQJYbD/znWOpQ+e6UMVsybW1JS7uKAjzk5DHUcMxA3B79XZSw 4i8uMs2kAtqWKd4tSo5c6PNWz9hd+H+jArClHu5XhknfFFC9GBKowVC/X2Z3E8y/ z/F5ogQVtSS2/5UljJBqzFWLEqT961sBZ52DjaF0Vl3a2fDX6j2BzzdCtpcaL1mT qJsmCLABgJ/WBkKg2hm4kK9fsV2bExVjsABMbJb7wxGxsmUHqvc= =OPxq -----END PGP SIGNATURE----- --2XXti4WnqjJx8KJT-- From unknown Fri Jun 20 07:15:23 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 16 Oct 2024 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