[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: packages: Change the order of %SUPPORTED-SYSTEMS.
From: |
guix-commits |
Subject: |
01/06: packages: Change the order of %SUPPORTED-SYSTEMS. |
Date: |
Thu, 16 Jun 2022 17:58:41 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit c8e393ffe23529ab27225cd2e48eedc2c2c3d0ca
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Jun 16 23:55:31 2022 +0200
packages: Change the order of %SUPPORTED-SYSTEMS.
Commit 2a34333d0c238fa0983659ea71f0e1af4ff0ac7b led to a couple of test
failures in tests/packages.scm and tests/lint.scm due to the different
ordering.
* guix/packages.scm (%supported-systems): Move %64BIT-SUPPORTED-SYSTEMS
first.
---
guix/packages.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/packages.scm b/guix/packages.scm
index 715a6397ed..94e464cd01 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -414,7 +414,7 @@ from forcing GEXP-PROMISE."
(define %supported-systems
;; This is the list of system types that are supported. By default, we
;; expect all packages to build successfully here.
- (append %32bit-supported-systems %64bit-supported-systems))
+ (append %64bit-supported-systems %32bit-supported-systems))
(define %hurd-systems
;; The GNU/Hurd systems for which support is being developed.
- branch master updated (ab82dd3f58 -> c8803d89fe), guix-commits, 2022/06/16
- 01/06: packages: Change the order of %SUPPORTED-SYSTEMS.,
guix-commits <=
- 06/06: ui: Improve pager selection logic when less is not installed., guix-commits, 2022/06/16
- 02/06: shell: Do not auto-detect manifest when '-p' is used., guix-commits, 2022/06/16
- 04/06: gnu: hcxtools: Use gexps., guix-commits, 2022/06/16
- 03/06: shell: Fix '--export-manifest' for cached profiles and when '-p' is used., guix-commits, 2022/06/16
- 05/06: gnu: hcxtools: Update to 6.2.7., guix-commits, 2022/06/16