maint: Reduce the package set for "i586-gnu".
authorLudovic Courtès <ludo@gnu.org>
Sat, 7 Nov 2020 22:22:11 +0000 (23:22 +0100)
committerLudovic Courtès <ludo@gnu.org>
Sun, 8 Nov 2020 15:58:30 +0000 (16:58 +0100)
* etc/release-manifest.scm (%base-packages/hurd): New variable.
(%base-manifest): Use it when SYSTEM is "i586-gnu".

etc/release-manifest.scm

index 7f54fe8..da98d6e 100644 (file)
@@ -49,6 +49,12 @@ TARGET."
        '("bootstrap-tarballs" "gcc-toolchain" "nss-certs"
          "openssh" "emacs" "vim" "python" "guile" "guix")))
 
+(define %base-packages/hurd
+  ;; XXX: For now we are less demanding of "i586-gnu".
+  (map specification->package
+       '("coreutils" "grep" "findutils" "gawk" "make"
+         "gcc-toolchain" "tar" "xz")))
+
 (define %system-packages
   ;; Key packages proposed by the Guix System installer.
   (append (map specification->package
@@ -94,7 +100,9 @@ TARGET."
   (manifest
    (append-map (lambda (system)
                  (map (cut package->manifest-entry* <> system)
-                      %base-packages))
+                      (if (string=? system "i586-gnu")
+                          %base-packages/hurd
+                          %base-packages)))
                %hydra-supported-systems)))
 
 (define %system-manifest