summaryrefslogtreecommitdiff
path: root/gnu/packages/lisp.scm
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <janneke@gnu.org>2024-12-10 22:51:59 +0100
committerJanneke Nieuwenhuizen <janneke@gnu.org>2024-12-10 23:00:43 +0100
commitfbc5e7fc40919a66a24855430f7b32a304579d0d (patch)
treef0f7b71955229289d8adafc3f62e46626386cb5c /gnu/packages/lisp.scm
parent376d957291ba21bb500b252493d53253ddc4a165 (diff)
gnu: packages: Remove x86_64-gnu next to i586-gnu from supported-systems.
* gnu/packages/golang.scm (go-1.16)[supported-systems]: Remove "x86_64-gnu". * gnu/packages/linux.scm (proot)[supported-systems]: Likewise. * gnu/packages/valgrind.scm (valgrind)[supported-systems]: Likewise. * gnu/packages/virtualization.scm (qemu)[supported-systems]: Likewise. * gnu/packages/heads.scm (musl-cross)[supported-systems]: Delete target-hurd? instead of remove'ing "i586-gnu". * gnu/packages/linux.scm (net-tools)[supported-systems]: Likewise. (libcap)[supported-systems]: Likewise. (fuse)[supported-systems]: Likewise. (kmod)[supported-systems]: Likewise. (lvm2)[supported-systems]: Likewise. (mdadm)[supported-systems]: Likewise. (proot)[supported-systems]: Likewise. * gnu/packages/lisp.scm (ecl)[supported-systems]: Likewise. (sbcl)[supported-systems]: Likewise. * gnu/packages/virtualization.scm (qemu)[supported-systems]: Likewise. Change-Id: I506e056b7aeb40f004fcc31ee85962cb065eac29
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r--gnu/packages/lisp.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index d2e80faf119..82ab70fd70c 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -30,6 +30,7 @@
30;;; Copyright © 2024 bigbug <bigbookofbug@proton.me> 30;;; Copyright © 2024 bigbug <bigbookofbug@proton.me>
31;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se> 31;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
32;;; Copyright © 2024 David Pflug <david@pflug.io> 32;;; Copyright © 2024 David Pflug <david@pflug.io>
33;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
33;;; 34;;;
34;;; This file is part of GNU Guix. 35;;; This file is part of GNU Guix.
35;;; 36;;;
@@ -696,7 +697,7 @@ enough to play the original mainframe Zork all the way through.")
696 (files '("etc"))))) 697 (files '("etc")))))
697 (home-page "https://ecl.common-lisp.dev/") 698 (home-page "https://ecl.common-lisp.dev/")
698 (synopsis "Embeddable Common Lisp") 699 (synopsis "Embeddable Common Lisp")
699 (supported-systems (delete "i586-gnu" %supported-systems)) 700 (supported-systems (remove target-hurd? %supported-systems))
700 (description "ECL is an implementation of the Common Lisp language as 701 (description "ECL is an implementation of the Common Lisp language as
701defined by the ANSI X3J13 specification. Its most relevant features are: a 702defined by the ANSI X3J13 specification. Its most relevant features are: a
702bytecode compiler and interpreter, being able to compile Common Lisp with any 703bytecode compiler and interpreter, being able to compile Common Lisp with any
@@ -1506,7 +1507,7 @@ be built as a stand-alone REPL interpreter.")
1506 (variable "XDG_CONFIG_DIRS") 1507 (variable "XDG_CONFIG_DIRS")
1507 (files '("etc"))))) 1508 (files '("etc")))))
1508 (home-page "https://www.sbcl.org/") 1509 (home-page "https://www.sbcl.org/")
1509 (supported-systems (delete "i586-gnu" %supported-systems)) 1510 (supported-systems (remove target-hurd? %supported-systems))
1510 (synopsis "Common Lisp implementation") 1511 (synopsis "Common Lisp implementation")
1511 (description "Steel Bank Common Lisp (SBCL) is a high performance Common 1512 (description "Steel Bank Common Lisp (SBCL) is a high performance Common
1512Lisp compiler. In addition to the compiler and runtime system for ANSI Common 1513Lisp compiler. In addition to the compiler and runtime system for ANSI Common