diff options
Diffstat (limited to 'dev-lisp/sbcl')
73 files changed, 49 insertions, 2952 deletions
diff --git a/dev-lisp/sbcl/ChangeLog b/dev-lisp/sbcl/ChangeLog index 0773acf90c97..35766aa4f95f 100644 --- a/dev-lisp/sbcl/ChangeLog +++ b/dev-lisp/sbcl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lisp/sbcl # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.63 2005/05/30 08:28:30 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.64 2005/06/01 03:24:45 mkennedy Exp $ + + 31 May 2005; Matthew Kennedy <mkennedy@gentoo.org> + files/0.9.1/README.Gentoo, sbcl-0.9.1.ebuild: + No longer supporting callbacks in USE; Removed old ebuilds. *sbcl-0.9.1 (30 May 2005) diff --git a/dev-lisp/sbcl/files/0.8.14/README.Gentoo b/dev-lisp/sbcl/files/0.8.14/README.Gentoo deleted file mode 100644 index 817114d4416a..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/README.Gentoo +++ /dev/null @@ -1,25 +0,0 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2004/09/03 08:20:03 mkennedy Exp $ - -Gentoo GNU/Linux specific notes for SBCL ----------------------------------------- - -This is the README.Gentoo file from /usr/share/doc/@PF@/ -directory. - - * The Gentoo port uses patches from the Debian project's SBCL port. - - * An SBCL with support for multi-threading on GNU/Linux for x86 is - available with 'USE="threads" emerge dev-lisp/sbcl' - - * asdf-install is installed as sbcl-asdf-install (the man-page is - similarly named). - - * Support for the Common Lisp Controller is available. - - * If "nosource" is not in your USE flags, then SBCL's source will - also be installed (in /usr/lib/sbcl/src). This is handy with - ILISP or SLIME's `edit-definition' functions. - -If you encounter any problems or have suggestions, use -http://bugs.gentoo.org. Please don't bother the upstream authors -unless you are absolutely certain it is not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.8.14/customize-target-features.lisp b/dev-lisp/sbcl/files/0.8.14/customize-target-features.lisp deleted file mode 100644 index 7663f4802619..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/customize-target-features.lisp +++ /dev/null @@ -1,19 +0,0 @@ -;;;; -*- Lisp -*- - -;;;; This is the features customization lambda form we will use if the -;;;; user has "threads" in USE *and* they are building for the x86 -;;;; architecture. - -;;;; :sb-futex is dependent on the presence of a Linux 2.6.x kernel. -;;;; For users of Linux 2.4.x kernels, this is still okay to enable, -;;;; as SBCL will fall back if the futex system-call is not present. - -(lambda (list) - (flet ((enable (x) - (pushnew x list)) - (disable (x) - (setf list (remove x list)))) - (enable :sb-thread) - (enable :sb-futex) - (disable :sb-test)) - list) diff --git a/dev-lisp/sbcl/files/0.8.14/customize-target-features.lisp.no-threads b/dev-lisp/sbcl/files/0.8.14/customize-target-features.lisp.no-threads deleted file mode 100644 index 100d84059509..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/customize-target-features.lisp.no-threads +++ /dev/null @@ -1,19 +0,0 @@ -;;;; -*- Lisp -*- - -;;;; This is the features customization lambda form we will use if the -;;;; user has "threads" in USE *and* they are building for the x86 -;;;; architecture. - -;;;; :sb-futex is dependent on the presence of a Linux 2.6.x kernel. -;;;; For users of Linux 2.4.x kernels, this is still okay to enable, -;;;; as SBCL will fall back if the futex system-call is not present. - -(lambda (list) - (flet ((enable (x) - (pushnew x list)) - (disable (x) - (setf list (remove x list)))) - (disable :sb-thread) - (disable :sb-futex) - (disable :sb-test)) - list) diff --git a/dev-lisp/sbcl/files/0.8.14/install-clc.lisp b/dev-lisp/sbcl/files/0.8.14/install-clc.lisp deleted file mode 100644 index 98bf4f548b65..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/install-clc.lisp +++ /dev/null @@ -1,64 +0,0 @@ -;;; -*- Mode: LISP; Package: CL-USER -*- -;;; -;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 -;;; -;;; License: LGPL v2 -;;; -;;; Some modifications for Gentoo, Matthew Kennedy <mkennedy@gentoo.org> -;;; - -(in-package "COMMON-LISP-USER") - -(unless (ignore-errors - (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp")) - (sb-unix:unix-exit 1)) - -(unless (ignore-errors - (common-lisp-controller:init-common-lisp-controller - "/usr/lib/common-lisp/sbcl/" - :version 3) - t) - (format t "~%Error during init of common-lisp-controller~%") - (sb-unix:unix-exit 1)) - -(in-package :common-lisp-controller) - -(defun send-clc-command (command package) - (let ((process - (sb-ext:run-program "/usr/bin/clc-send-command" - (list (ecase command - (:recompile "recompile") - (:remove "remove")) - (format nil "~A" package) - "sbcl" - "--quiet") - :wait t))) - (if (= (sb-ext:process-exit-code process) 0) - (values) - (error "An error happened during ~A of ~A for ~A" - (ecase command - (:recompile "recompilation") - (:remove "removal")) - package - "sbcl")))) - -(in-package :common-lisp-user) - -(progn - (format t "~%Saving to sbcl-new.core...") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die "sbcl-new.core" :purify t)) - - - - - - - - - - - - - - diff --git a/dev-lisp/sbcl/files/0.8.14/sbcl-gentoo.patch b/dev-lisp/sbcl/files/0.8.14/sbcl-gentoo.patch deleted file mode 100644 index e2c70286a9dd..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/sbcl-gentoo.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -ru sbcl-0.8.14.orig/contrib/sb-posix/posix-tests.lisp sbcl-0.8.14/contrib/sb-posix/posix-tests.lisp ---- sbcl-0.8.14.orig/contrib/sb-posix/posix-tests.lisp 2004-03-15 09:24:53.000000000 -0600 -+++ sbcl-0.8.14/contrib/sb-posix/posix-tests.lisp 2004-04-28 14:47:50.179460512 -0500 -@@ -96,7 +96,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::eexist) - --(deftest mkdir.error.2 -+#+nil (deftest mkdir.error.2 - (handler-case - (sb-posix:mkdir "/" 0) - (sb-posix:syscall-error (c) -@@ -149,7 +149,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::enotdir) - --(deftest rmdir.error.3 -+#+nil (deftest rmdir.error.3 - (handler-case - (sb-posix:rmdir "/") - (sb-posix:syscall-error (c) -diff -ru sbcl-0.8.14.orig/src/runtime/GNUmakefile sbcl-0.8.14/src/runtime/GNUmakefile ---- sbcl-0.8.14.orig/src/runtime/GNUmakefile 2004-04-10 08:37:23.000000000 -0500 -+++ sbcl-0.8.14/src/runtime/GNUmakefile 2004-04-28 14:46:29.556717032 -0500 -@@ -33,6 +33,7 @@ - # symlink to Config-foo. - include Config - -+CFLAGS += -DSBCL_HOME='"/usr/lib/sbcl"' - - C_SRCS = alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c gc-common.c globals.c interr.c interrupt.c \ diff --git a/dev-lisp/sbcl/files/0.8.14/sbcl-no-tests-gentoo.patch b/dev-lisp/sbcl/files/0.8.14/sbcl-no-tests-gentoo.patch deleted file mode 100644 index 35f78923ae28..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/sbcl-no-tests-gentoo.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -ur sbcl-0.8.14.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.8.14/contrib/sb-bsd-sockets/sb-bsd-sockets.asd ---- sbcl-0.8.14.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-02-11 05:00:40.000000000 -0600 -+++ sbcl-0.8.14/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-07-11 15:30:52.230966464 -0500 -@@ -103,14 +103,3 @@ - (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) - (provide 'sb-bsd-sockets)) - --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets)))) -- (operate 'load-op 'sb-bsd-sockets-tests) -- (operate 'test-op 'sb-bsd-sockets-tests)) -- --(defsystem sb-bsd-sockets-tests -- :depends-on (sb-rt sb-bsd-sockets sb-posix) -- :components ((:file "tests"))) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests)))) -- (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (error "test-op failed"))) -Only in sbcl-0.8.14/contrib/sb-bsd-sockets: sb-bsd-sockets.asd~ -diff -ur sbcl-0.8.14.orig/contrib/sb-posix/sb-posix.asd sbcl-0.8.14/contrib/sb-posix/sb-posix.asd ---- sbcl-0.8.14.orig/contrib/sb-posix/sb-posix.asd 2003-11-29 14:41:47.000000000 -0600 -+++ sbcl-0.8.14/contrib/sb-posix/sb-posix.asd 2004-07-11 15:52:38.766342896 -0500 -@@ -86,34 +86,3 @@ - "constants" - :package :sb-posix :depends-on ("defpackage")) - (:file "interface" :depends-on ("constants" "macros" "designator" "alien")))) -- --(defsystem sb-posix-tests -- :depends-on (sb-rt) -- :components ((:file "posix-tests"))) -- --(defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix)))) -- (provide 'sb-posix)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix)))) -- (operate 'load-op 'sb-posix-tests) -- (operate 'test-op 'sb-posix-tests)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests)))) -- (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT"))) -- (ignored-failures (loop for sym being the symbols of :sb-posix-tests -- if (search ".ERROR" (symbol-name sym)) -- collect sym))) -- (cond -- ((null failures) -- t) -- ((null (set-difference failures ignored-failures)) -- (warn "~@<some POSIX implementations return incorrect error values for ~ -- failing calls, but there is legitimate variation between ~ -- implementations too. If you think the errno ~ -- from your platform is valid, please contact the sbcl ~ -- developers; otherwise, please submit a bug report to your ~ -- kernel distributor~@:>") -- t) -- (t -- (error "non-errno tests failed!"))))) -Only in sbcl-0.8.14/contrib/sb-posix: sb-posix.asd~ diff --git a/dev-lisp/sbcl/files/0.8.14/sbcl.sh b/dev-lisp/sbcl/files/0.8.14/sbcl.sh deleted file mode 100644 index d0ebaf86fa5d..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/sbcl.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (c-l-c:compile-library (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/usr/lib/common-lisp/sbcl/$1" - shift - done - ;; - install-defsystem | install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-defsystem | remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - make-user-image) - if [ ! -f "$2" ] ; then - echo "Trying to make-user image, but can not find file $2" >&2 - exit 1 - fi - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /dev/null --userinit /dev/null \ - --eval \ -"(handler-case - (progn - (load \"$2\") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die \"/usr/lib/sbcl/sbcl-new.core\" :purify t)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"make-user-image error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, make-user-image, install-clc and remove-clc - exit 1 - ;; -esac - -exit 0 diff --git a/dev-lisp/sbcl/files/0.8.14/sbclrc b/dev-lisp/sbcl/files/0.8.14/sbclrc deleted file mode 100644 index 91f31720d896..000000000000 --- a/dev-lisp/sbcl/files/0.8.14/sbclrc +++ /dev/null @@ -1,18 +0,0 @@ -;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*- - -;;; This file is installed as /etc/sbcl.rc and run on every invocation -;;; of SBCL - -(if (probe-file "/etc/lisp-config.lisp") - (load "/etc/lisp-config.lisp") - (format t "~%;;; Warning: there is no /etc/lisp-config.lisp file")) - -;;; The following is required if you want source location functions to -;;; work (such as those called when you use M-. (edit definition) in -;;; ILISP or SLIME) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*"))) - -;;; sbclrc ends here diff --git a/dev-lisp/sbcl/files/0.8.15/README.Gentoo b/dev-lisp/sbcl/files/0.8.15/README.Gentoo deleted file mode 100644 index 8f9a278f8072..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/README.Gentoo +++ /dev/null @@ -1,25 +0,0 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2004/10/05 01:44:19 mkennedy Exp $ - -Gentoo GNU/Linux specific notes for SBCL ----------------------------------------- - -This is the README.Gentoo file from /usr/share/doc/@PF@/ -directory. - - * The Gentoo port uses patches from the Debian project's SBCL port. - - * An SBCL with support for multi-threading on GNU/Linux for x86 is - available with 'USE="threads" emerge dev-lisp/sbcl' - - * asdf-install is installed as sbcl-asdf-install (the man-page is - similarly named). - - * Support for the Common Lisp Controller is available. - - * If "nosource" is not in your USE flags, then SBCL's source will - also be installed (in /usr/lib/sbcl/src). This is handy with - ILISP or SLIME's `edit-definition' functions. - -If you encounter any problems or have suggestions, use -http://bugs.gentoo.org. Please don't bother the upstream authors -unless you are absolutely certain it is not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.8.15/customize-target-features.lisp b/dev-lisp/sbcl/files/0.8.15/customize-target-features.lisp deleted file mode 100644 index 7663f4802619..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/customize-target-features.lisp +++ /dev/null @@ -1,19 +0,0 @@ -;;;; -*- Lisp -*- - -;;;; This is the features customization lambda form we will use if the -;;;; user has "threads" in USE *and* they are building for the x86 -;;;; architecture. - -;;;; :sb-futex is dependent on the presence of a Linux 2.6.x kernel. -;;;; For users of Linux 2.4.x kernels, this is still okay to enable, -;;;; as SBCL will fall back if the futex system-call is not present. - -(lambda (list) - (flet ((enable (x) - (pushnew x list)) - (disable (x) - (setf list (remove x list)))) - (enable :sb-thread) - (enable :sb-futex) - (disable :sb-test)) - list) diff --git a/dev-lisp/sbcl/files/0.8.15/customize-target-features.lisp.no-threads b/dev-lisp/sbcl/files/0.8.15/customize-target-features.lisp.no-threads deleted file mode 100644 index 100d84059509..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/customize-target-features.lisp.no-threads +++ /dev/null @@ -1,19 +0,0 @@ -;;;; -*- Lisp -*- - -;;;; This is the features customization lambda form we will use if the -;;;; user has "threads" in USE *and* they are building for the x86 -;;;; architecture. - -;;;; :sb-futex is dependent on the presence of a Linux 2.6.x kernel. -;;;; For users of Linux 2.4.x kernels, this is still okay to enable, -;;;; as SBCL will fall back if the futex system-call is not present. - -(lambda (list) - (flet ((enable (x) - (pushnew x list)) - (disable (x) - (setf list (remove x list)))) - (disable :sb-thread) - (disable :sb-futex) - (disable :sb-test)) - list) diff --git a/dev-lisp/sbcl/files/0.8.15/install-clc.lisp b/dev-lisp/sbcl/files/0.8.15/install-clc.lisp deleted file mode 100644 index 98bf4f548b65..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/install-clc.lisp +++ /dev/null @@ -1,64 +0,0 @@ -;;; -*- Mode: LISP; Package: CL-USER -*- -;;; -;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 -;;; -;;; License: LGPL v2 -;;; -;;; Some modifications for Gentoo, Matthew Kennedy <mkennedy@gentoo.org> -;;; - -(in-package "COMMON-LISP-USER") - -(unless (ignore-errors - (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp")) - (sb-unix:unix-exit 1)) - -(unless (ignore-errors - (common-lisp-controller:init-common-lisp-controller - "/usr/lib/common-lisp/sbcl/" - :version 3) - t) - (format t "~%Error during init of common-lisp-controller~%") - (sb-unix:unix-exit 1)) - -(in-package :common-lisp-controller) - -(defun send-clc-command (command package) - (let ((process - (sb-ext:run-program "/usr/bin/clc-send-command" - (list (ecase command - (:recompile "recompile") - (:remove "remove")) - (format nil "~A" package) - "sbcl" - "--quiet") - :wait t))) - (if (= (sb-ext:process-exit-code process) 0) - (values) - (error "An error happened during ~A of ~A for ~A" - (ecase command - (:recompile "recompilation") - (:remove "removal")) - package - "sbcl")))) - -(in-package :common-lisp-user) - -(progn - (format t "~%Saving to sbcl-new.core...") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die "sbcl-new.core" :purify t)) - - - - - - - - - - - - - - diff --git a/dev-lisp/sbcl/files/0.8.15/sbcl-gentoo.patch b/dev-lisp/sbcl/files/0.8.15/sbcl-gentoo.patch deleted file mode 100644 index ce11957dd0c5..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/sbcl-gentoo.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -ru sbcl-0.8.15.orig/contrib/sb-posix/posix-tests.lisp sbcl-0.8.15/contrib/sb-posix/posix-tests.lisp ---- sbcl-0.8.15.orig/contrib/sb-posix/posix-tests.lisp 2004-03-15 09:24:53.000000000 -0600 -+++ sbcl-0.8.15/contrib/sb-posix/posix-tests.lisp 2004-04-28 14:47:50.179460512 -0500 -@@ -96,7 +96,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::eexist) - --(deftest mkdir.error.2 -+#+nil (deftest mkdir.error.2 - (handler-case - (sb-posix:mkdir "/" 0) - (sb-posix:syscall-error (c) -@@ -149,7 +149,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::enotdir) - --(deftest rmdir.error.3 -+#+nil (deftest rmdir.error.3 - (handler-case - (sb-posix:rmdir "/") - (sb-posix:syscall-error (c) -diff -ru sbcl-0.8.15.orig/src/runtime/GNUmakefile sbcl-0.8.15/src/runtime/GNUmakefile ---- sbcl-0.8.15.orig/src/runtime/GNUmakefile 2004-04-10 08:37:23.000000000 -0500 -+++ sbcl-0.8.15/src/runtime/GNUmakefile 2004-04-28 14:46:29.556717032 -0500 -@@ -33,6 +33,7 @@ - # symlink to Config-foo. - include Config - -+CFLAGS += -DSBCL_HOME='"/usr/lib/sbcl"' - - C_SRCS = alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c gc-common.c globals.c interr.c interrupt.c \ diff --git a/dev-lisp/sbcl/files/0.8.15/sbcl-no-tests-gentoo.patch b/dev-lisp/sbcl/files/0.8.15/sbcl-no-tests-gentoo.patch deleted file mode 100644 index e2527c142c50..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/sbcl-no-tests-gentoo.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff -ur sbcl-0.8.15.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.8.15/contrib/sb-bsd-sockets/sb-bsd-sockets.asd ---- sbcl-0.8.15.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-02-11 05:00:40.000000000 -0600 -+++ sbcl-0.8.15/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-07-11 15:30:52.230966464 -0500 -@@ -103,14 +103,3 @@ - (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) - (provide 'sb-bsd-sockets)) - --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets)))) -- (operate 'load-op 'sb-bsd-sockets-tests) -- (operate 'test-op 'sb-bsd-sockets-tests)) -- --(defsystem sb-bsd-sockets-tests -- :depends-on (sb-rt sb-bsd-sockets sb-posix) -- :components ((:file "tests"))) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests)))) -- (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (error "test-op failed"))) -diff -ur sbcl-0.8.15.orig/contrib/sb-posix/sb-posix.asd sbcl-0.8.15/contrib/sb-posix/sb-posix.asd ---- sbcl-0.8.15.orig/contrib/sb-posix/sb-posix.asd 2003-11-29 14:41:47.000000000 -0600 -+++ sbcl-0.8.15/contrib/sb-posix/sb-posix.asd 2004-07-11 15:52:38.766342896 -0500 -@@ -86,34 +86,3 @@ - "constants" - :package :sb-posix :depends-on ("defpackage")) - (:file "interface" :depends-on ("constants" "macros" "designator" "alien")))) -- --(defsystem sb-posix-tests -- :depends-on (sb-rt) -- :components ((:file "posix-tests"))) -- --(defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix)))) -- (provide 'sb-posix)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix)))) -- (operate 'load-op 'sb-posix-tests) -- (operate 'test-op 'sb-posix-tests)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests)))) -- (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT"))) -- (ignored-failures (loop for sym being the symbols of :sb-posix-tests -- if (search ".ERROR" (symbol-name sym)) -- collect sym))) -- (cond -- ((null failures) -- t) -- ((null (set-difference failures ignored-failures)) -- (warn "~@<some POSIX implementations return incorrect error values for ~ -- failing calls, but there is legitimate variation between ~ -- implementations too. If you think the errno ~ -- from your platform is valid, please contact the sbcl ~ -- developers; otherwise, please submit a bug report to your ~ -- kernel distributor~@:>") -- t) -- (t -- (error "non-errno tests failed!"))))) diff --git a/dev-lisp/sbcl/files/0.8.15/sbcl.sh b/dev-lisp/sbcl/files/0.8.15/sbcl.sh deleted file mode 100644 index d0ebaf86fa5d..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/sbcl.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (c-l-c:compile-library (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/usr/lib/common-lisp/sbcl/$1" - shift - done - ;; - install-defsystem | install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-defsystem | remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - make-user-image) - if [ ! -f "$2" ] ; then - echo "Trying to make-user image, but can not find file $2" >&2 - exit 1 - fi - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /dev/null --userinit /dev/null \ - --eval \ -"(handler-case - (progn - (load \"$2\") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die \"/usr/lib/sbcl/sbcl-new.core\" :purify t)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"make-user-image error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, make-user-image, install-clc and remove-clc - exit 1 - ;; -esac - -exit 0 diff --git a/dev-lisp/sbcl/files/0.8.15/sbclrc b/dev-lisp/sbcl/files/0.8.15/sbclrc deleted file mode 100644 index 91f31720d896..000000000000 --- a/dev-lisp/sbcl/files/0.8.15/sbclrc +++ /dev/null @@ -1,18 +0,0 @@ -;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*- - -;;; This file is installed as /etc/sbcl.rc and run on every invocation -;;; of SBCL - -(if (probe-file "/etc/lisp-config.lisp") - (load "/etc/lisp-config.lisp") - (format t "~%;;; Warning: there is no /etc/lisp-config.lisp file")) - -;;; The following is required if you want source location functions to -;;; work (such as those called when you use M-. (edit definition) in -;;; ILISP or SLIME) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*"))) - -;;; sbclrc ends here diff --git a/dev-lisp/sbcl/files/0.8.16/README.Gentoo b/dev-lisp/sbcl/files/0.8.16/README.Gentoo deleted file mode 100644 index 045bf81820ac..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/README.Gentoo +++ /dev/null @@ -1,25 +0,0 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2004/11/01 08:07:25 mkennedy Exp $ - -Gentoo GNU/Linux specific notes for SBCL ----------------------------------------- - -This is the README.Gentoo file from /usr/share/doc/@PF@/ -directory. - - * The Gentoo port uses patches from the Debian project's SBCL port. - - * An SBCL with support for multi-threading on GNU/Linux for x86 is - available with 'USE="threads" emerge dev-lisp/sbcl' - - * asdf-install is installed as sbcl-asdf-install (the man-page is - similarly named). - - * Support for the Common Lisp Controller is available. - - * If "nosource" is not in your USE flags, then SBCL's source will - also be installed (in /usr/lib/sbcl/src). This is handy with - ILISP or SLIME's `edit-definition' functions. - -If you encounter any problems or have suggestions, use -http://bugs.gentoo.org. Please don't bother the upstream authors -unless you are absolutely certain it is not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.8.16/customize-target-features.lisp b/dev-lisp/sbcl/files/0.8.16/customize-target-features.lisp deleted file mode 100644 index 7663f4802619..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/customize-target-features.lisp +++ /dev/null @@ -1,19 +0,0 @@ -;;;; -*- Lisp -*- - -;;;; This is the features customization lambda form we will use if the -;;;; user has "threads" in USE *and* they are building for the x86 -;;;; architecture. - -;;;; :sb-futex is dependent on the presence of a Linux 2.6.x kernel. -;;;; For users of Linux 2.4.x kernels, this is still okay to enable, -;;;; as SBCL will fall back if the futex system-call is not present. - -(lambda (list) - (flet ((enable (x) - (pushnew x list)) - (disable (x) - (setf list (remove x list)))) - (enable :sb-thread) - (enable :sb-futex) - (disable :sb-test)) - list) diff --git a/dev-lisp/sbcl/files/0.8.16/customize-target-features.lisp.no-threads b/dev-lisp/sbcl/files/0.8.16/customize-target-features.lisp.no-threads deleted file mode 100644 index 100d84059509..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/customize-target-features.lisp.no-threads +++ /dev/null @@ -1,19 +0,0 @@ -;;;; -*- Lisp -*- - -;;;; This is the features customization lambda form we will use if the -;;;; user has "threads" in USE *and* they are building for the x86 -;;;; architecture. - -;;;; :sb-futex is dependent on the presence of a Linux 2.6.x kernel. -;;;; For users of Linux 2.4.x kernels, this is still okay to enable, -;;;; as SBCL will fall back if the futex system-call is not present. - -(lambda (list) - (flet ((enable (x) - (pushnew x list)) - (disable (x) - (setf list (remove x list)))) - (disable :sb-thread) - (disable :sb-futex) - (disable :sb-test)) - list) diff --git a/dev-lisp/sbcl/files/0.8.16/install-clc.lisp b/dev-lisp/sbcl/files/0.8.16/install-clc.lisp deleted file mode 100644 index 98bf4f548b65..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/install-clc.lisp +++ /dev/null @@ -1,64 +0,0 @@ -;;; -*- Mode: LISP; Package: CL-USER -*- -;;; -;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 -;;; -;;; License: LGPL v2 -;;; -;;; Some modifications for Gentoo, Matthew Kennedy <mkennedy@gentoo.org> -;;; - -(in-package "COMMON-LISP-USER") - -(unless (ignore-errors - (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp")) - (sb-unix:unix-exit 1)) - -(unless (ignore-errors - (common-lisp-controller:init-common-lisp-controller - "/usr/lib/common-lisp/sbcl/" - :version 3) - t) - (format t "~%Error during init of common-lisp-controller~%") - (sb-unix:unix-exit 1)) - -(in-package :common-lisp-controller) - -(defun send-clc-command (command package) - (let ((process - (sb-ext:run-program "/usr/bin/clc-send-command" - (list (ecase command - (:recompile "recompile") - (:remove "remove")) - (format nil "~A" package) - "sbcl" - "--quiet") - :wait t))) - (if (= (sb-ext:process-exit-code process) 0) - (values) - (error "An error happened during ~A of ~A for ~A" - (ecase command - (:recompile "recompilation") - (:remove "removal")) - package - "sbcl")))) - -(in-package :common-lisp-user) - -(progn - (format t "~%Saving to sbcl-new.core...") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die "sbcl-new.core" :purify t)) - - - - - - - - - - - - - - diff --git a/dev-lisp/sbcl/files/0.8.16/sbcl-gentoo.patch b/dev-lisp/sbcl/files/0.8.16/sbcl-gentoo.patch deleted file mode 100644 index c07d82d22226..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/sbcl-gentoo.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -ru sbcl-0.8.16.orig/contrib/sb-posix/posix-tests.lisp sbcl-0.8.16/contrib/sb-posix/posix-tests.lisp ---- sbcl-0.8.16.orig/contrib/sb-posix/posix-tests.lisp 2004-03-15 09:24:53.000000000 -0600 -+++ sbcl-0.8.16/contrib/sb-posix/posix-tests.lisp 2004-04-28 14:47:50.179460512 -0500 -@@ -96,7 +96,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::eexist) - --(deftest mkdir.error.2 -+#+nil (deftest mkdir.error.2 - (handler-case - (sb-posix:mkdir "/" 0) - (sb-posix:syscall-error (c) -@@ -149,7 +149,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::enotdir) - --(deftest rmdir.error.3 -+#+nil (deftest rmdir.error.3 - (handler-case - (sb-posix:rmdir "/") - (sb-posix:syscall-error (c) -diff -ru sbcl-0.8.16.orig/src/runtime/GNUmakefile sbcl-0.8.16/src/runtime/GNUmakefile ---- sbcl-0.8.16.orig/src/runtime/GNUmakefile 2004-04-10 08:37:23.000000000 -0500 -+++ sbcl-0.8.16/src/runtime/GNUmakefile 2004-04-28 14:46:29.556717032 -0500 -@@ -33,6 +33,7 @@ - # symlink to Config-foo. - include Config - -+CFLAGS += -DSBCL_HOME='"/usr/lib/sbcl"' - - C_SRCS = alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c gc-common.c globals.c interr.c interrupt.c \ diff --git a/dev-lisp/sbcl/files/0.8.16/sbcl-no-tests-gentoo.patch b/dev-lisp/sbcl/files/0.8.16/sbcl-no-tests-gentoo.patch deleted file mode 100644 index 4eee8a341459..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/sbcl-no-tests-gentoo.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff -ur sbcl-0.8.16.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.8.16/contrib/sb-bsd-sockets/sb-bsd-sockets.asd ---- sbcl-0.8.16.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-02-11 05:00:40.000000000 -0600 -+++ sbcl-0.8.16/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-07-11 15:30:52.230966464 -0500 -@@ -103,14 +103,3 @@ - (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) - (provide 'sb-bsd-sockets)) - --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets)))) -- (operate 'load-op 'sb-bsd-sockets-tests) -- (operate 'test-op 'sb-bsd-sockets-tests)) -- --(defsystem sb-bsd-sockets-tests -- :depends-on (sb-rt sb-bsd-sockets sb-posix) -- :components ((:file "tests"))) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests)))) -- (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (error "test-op failed"))) -diff -ur sbcl-0.8.16.orig/contrib/sb-posix/sb-posix.asd sbcl-0.8.16/contrib/sb-posix/sb-posix.asd ---- sbcl-0.8.16.orig/contrib/sb-posix/sb-posix.asd 2003-11-29 14:41:47.000000000 -0600 -+++ sbcl-0.8.16/contrib/sb-posix/sb-posix.asd 2004-07-11 15:52:38.766342896 -0500 -@@ -86,34 +86,3 @@ - "constants" - :package :sb-posix :depends-on ("defpackage")) - (:file "interface" :depends-on ("constants" "macros" "designator" "alien")))) -- --(defsystem sb-posix-tests -- :depends-on (sb-rt) -- :components ((:file "posix-tests"))) -- --(defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix)))) -- (provide 'sb-posix)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix)))) -- (operate 'load-op 'sb-posix-tests) -- (operate 'test-op 'sb-posix-tests)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests)))) -- (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT"))) -- (ignored-failures (loop for sym being the symbols of :sb-posix-tests -- if (search ".ERROR" (symbol-name sym)) -- collect sym))) -- (cond -- ((null failures) -- t) -- ((null (set-difference failures ignored-failures)) -- (warn "~@<some POSIX implementations return incorrect error values for ~ -- failing calls, but there is legitimate variation between ~ -- implementations too. If you think the errno ~ -- from your platform is valid, please contact the sbcl ~ -- developers; otherwise, please submit a bug report to your ~ -- kernel distributor~@:>") -- t) -- (t -- (error "non-errno tests failed!"))))) diff --git a/dev-lisp/sbcl/files/0.8.16/sbcl.sh b/dev-lisp/sbcl/files/0.8.16/sbcl.sh deleted file mode 100644 index d0ebaf86fa5d..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/sbcl.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (c-l-c:compile-library (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/usr/lib/common-lisp/sbcl/$1" - shift - done - ;; - install-defsystem | install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-defsystem | remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - make-user-image) - if [ ! -f "$2" ] ; then - echo "Trying to make-user image, but can not find file $2" >&2 - exit 1 - fi - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /dev/null --userinit /dev/null \ - --eval \ -"(handler-case - (progn - (load \"$2\") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die \"/usr/lib/sbcl/sbcl-new.core\" :purify t)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"make-user-image error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, make-user-image, install-clc and remove-clc - exit 1 - ;; -esac - -exit 0 diff --git a/dev-lisp/sbcl/files/0.8.16/sbclrc b/dev-lisp/sbcl/files/0.8.16/sbclrc deleted file mode 100644 index 91f31720d896..000000000000 --- a/dev-lisp/sbcl/files/0.8.16/sbclrc +++ /dev/null @@ -1,18 +0,0 @@ -;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*- - -;;; This file is installed as /etc/sbcl.rc and run on every invocation -;;; of SBCL - -(if (probe-file "/etc/lisp-config.lisp") - (load "/etc/lisp-config.lisp") - (format t "~%;;; Warning: there is no /etc/lisp-config.lisp file")) - -;;; The following is required if you want source location functions to -;;; work (such as those called when you use M-. (edit definition) in -;;; ILISP or SLIME) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*"))) - -;;; sbclrc ends here diff --git a/dev-lisp/sbcl/files/0.8.18/README.Gentoo b/dev-lisp/sbcl/files/0.8.18/README.Gentoo deleted file mode 100644 index 49524b77e022..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/README.Gentoo +++ /dev/null @@ -1,29 +0,0 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2005/01/07 21:52:19 mkennedy Exp $ - -Gentoo GNU/Linux specific notes for SBCL ----------------------------------------- - -This is the README.Gentoo file from /usr/share/doc/@PF@/ directory. - - * The Gentoo port uses patches from the Debian project's SBCL port. - - * An SBCL with support for multi-threading on GNU/Linux for x86 is available - with 'USE="threads" emerge dev-lisp/sbcl' - - * asdf-install is installed as sbcl-asdf-install (the man-page is similarly - named). - - * Support for the Common Lisp Controller is available. - - * If "nosource" is in your USE flags, then SBCL's source will not be installed - (in /usr/lib/sbcl/src). - - * If "unicode" is in your USE flags, then support for SBCL - Unicode will be included. - - * If "ldb" is in you USE flags, then support for the SBCL low-level debugger - will be included. - -If you encounter any problems or have suggestions, use http://bugs.gentoo.org. -Please don't bother the upstream authors unless you are absolutely certain it is -not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.8.18/customize-target-features.lisp-prefix b/dev-lisp/sbcl/files/0.8.18/customize-target-features.lisp-prefix deleted file mode 100644 index 40f9a4fc85fa..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/customize-target-features.lisp-prefix +++ /dev/null @@ -1,5 +0,0 @@ -(lambda (list) -(flet ((enable (x) -(pushnew x list)) -(disable (x) -(setf list (remove x list)))) diff --git a/dev-lisp/sbcl/files/0.8.18/customize-target-features.lisp-suffix b/dev-lisp/sbcl/files/0.8.18/customize-target-features.lisp-suffix deleted file mode 100644 index dbbde7adc44e..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/customize-target-features.lisp-suffix +++ /dev/null @@ -1,2 +0,0 @@ -) -list) diff --git a/dev-lisp/sbcl/files/0.8.18/install-clc.lisp b/dev-lisp/sbcl/files/0.8.18/install-clc.lisp deleted file mode 100644 index 98bf4f548b65..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/install-clc.lisp +++ /dev/null @@ -1,64 +0,0 @@ -;;; -*- Mode: LISP; Package: CL-USER -*- -;;; -;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 -;;; -;;; License: LGPL v2 -;;; -;;; Some modifications for Gentoo, Matthew Kennedy <mkennedy@gentoo.org> -;;; - -(in-package "COMMON-LISP-USER") - -(unless (ignore-errors - (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp")) - (sb-unix:unix-exit 1)) - -(unless (ignore-errors - (common-lisp-controller:init-common-lisp-controller - "/usr/lib/common-lisp/sbcl/" - :version 3) - t) - (format t "~%Error during init of common-lisp-controller~%") - (sb-unix:unix-exit 1)) - -(in-package :common-lisp-controller) - -(defun send-clc-command (command package) - (let ((process - (sb-ext:run-program "/usr/bin/clc-send-command" - (list (ecase command - (:recompile "recompile") - (:remove "remove")) - (format nil "~A" package) - "sbcl" - "--quiet") - :wait t))) - (if (= (sb-ext:process-exit-code process) 0) - (values) - (error "An error happened during ~A of ~A for ~A" - (ecase command - (:recompile "recompilation") - (:remove "removal")) - package - "sbcl")))) - -(in-package :common-lisp-user) - -(progn - (format t "~%Saving to sbcl-new.core...") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die "sbcl-new.core" :purify t)) - - - - - - - - - - - - - - diff --git a/dev-lisp/sbcl/files/0.8.18/sbcl-gentoo.patch b/dev-lisp/sbcl/files/0.8.18/sbcl-gentoo.patch deleted file mode 100644 index 2b0dd38510e1..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/sbcl-gentoo.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -ru sbcl-0.8.18.orig/contrib/sb-posix/posix-tests.lisp sbcl-0.8.18/contrib/sb-posix/posix-tests.lisp ---- sbcl-0.8.18.orig/contrib/sb-posix/posix-tests.lisp 2004-03-15 09:24:53.000000000 -0600 -+++ sbcl-0.8.18/contrib/sb-posix/posix-tests.lisp 2004-04-28 14:47:50.179460512 -0500 -@@ -96,7 +96,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::eexist) - --(deftest mkdir.error.2 -+#+nil (deftest mkdir.error.2 - (handler-case - (sb-posix:mkdir "/" 0) - (sb-posix:syscall-error (c) -@@ -149,7 +149,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::enotdir) - --(deftest rmdir.error.3 -+#+nil (deftest rmdir.error.3 - (handler-case - (sb-posix:rmdir "/") - (sb-posix:syscall-error (c) -diff -ru sbcl-0.8.18.orig/src/runtime/GNUmakefile sbcl-0.8.18/src/runtime/GNUmakefile ---- sbcl-0.8.18.orig/src/runtime/GNUmakefile 2004-04-10 08:37:23.000000000 -0500 -+++ sbcl-0.8.18/src/runtime/GNUmakefile 2004-04-28 14:46:29.556717032 -0500 -@@ -33,6 +33,7 @@ - # symlink to Config-foo. - include Config - -+CFLAGS += -DSBCL_HOME='"/usr/lib/sbcl"' - - C_SRCS = alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c gc-common.c globals.c interr.c interrupt.c \ diff --git a/dev-lisp/sbcl/files/0.8.18/sbcl-no-tests-gentoo.patch b/dev-lisp/sbcl/files/0.8.18/sbcl-no-tests-gentoo.patch deleted file mode 100644 index 72ec2fc81a2b..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/sbcl-no-tests-gentoo.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff -ur sbcl-0.8.18.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.8.18/contrib/sb-bsd-sockets/sb-bsd-sockets.asd ---- sbcl-0.8.18.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-02-11 05:00:40.000000000 -0600 -+++ sbcl-0.8.18/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-07-11 15:30:52.230966464 -0500 -@@ -103,14 +103,3 @@ - (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) - (provide 'sb-bsd-sockets)) - --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets)))) -- (operate 'load-op 'sb-bsd-sockets-tests) -- (operate 'test-op 'sb-bsd-sockets-tests)) -- --(defsystem sb-bsd-sockets-tests -- :depends-on (sb-rt sb-bsd-sockets sb-posix) -- :components ((:file "tests"))) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests)))) -- (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (error "test-op failed"))) -diff -ur sbcl-0.8.18.orig/contrib/sb-posix/sb-posix.asd sbcl-0.8.18/contrib/sb-posix/sb-posix.asd ---- sbcl-0.8.18.orig/contrib/sb-posix/sb-posix.asd 2003-11-29 14:41:47.000000000 -0600 -+++ sbcl-0.8.18/contrib/sb-posix/sb-posix.asd 2004-07-11 15:52:38.766342896 -0500 -@@ -86,34 +86,3 @@ - "constants" - :package :sb-posix :depends-on ("defpackage")) - (:file "interface" :depends-on ("constants" "macros" "designator" "alien")))) -- --(defsystem sb-posix-tests -- :depends-on (sb-rt) -- :components ((:file "posix-tests"))) -- --(defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix)))) -- (provide 'sb-posix)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix)))) -- (operate 'load-op 'sb-posix-tests) -- (operate 'test-op 'sb-posix-tests)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests)))) -- (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT"))) -- (ignored-failures (loop for sym being the symbols of :sb-posix-tests -- if (search ".ERROR" (symbol-name sym)) -- collect sym))) -- (cond -- ((null failures) -- t) -- ((null (set-difference failures ignored-failures)) -- (warn "~@<some POSIX implementations return incorrect error values for ~ -- failing calls, but there is legitimate variation between ~ -- implementations too. If you think the errno ~ -- from your platform is valid, please contact the sbcl ~ -- developers; otherwise, please submit a bug report to your ~ -- kernel distributor~@:>") -- t) -- (t -- (error "non-errno tests failed!"))))) diff --git a/dev-lisp/sbcl/files/0.8.18/sbcl.sh b/dev-lisp/sbcl/files/0.8.18/sbcl.sh deleted file mode 100644 index d0ebaf86fa5d..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/sbcl.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (c-l-c:compile-library (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/usr/lib/common-lisp/sbcl/$1" - shift - done - ;; - install-defsystem | install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-defsystem | remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - make-user-image) - if [ ! -f "$2" ] ; then - echo "Trying to make-user image, but can not find file $2" >&2 - exit 1 - fi - sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /dev/null --userinit /dev/null \ - --eval \ -"(handler-case - (progn - (load \"$2\") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die \"/usr/lib/sbcl/sbcl-new.core\" :purify t)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"make-user-image error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, make-user-image, install-clc and remove-clc - exit 1 - ;; -esac - -exit 0 diff --git a/dev-lisp/sbcl/files/0.8.18/sbclrc b/dev-lisp/sbcl/files/0.8.18/sbclrc deleted file mode 100644 index 91f31720d896..000000000000 --- a/dev-lisp/sbcl/files/0.8.18/sbclrc +++ /dev/null @@ -1,18 +0,0 @@ -;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*- - -;;; This file is installed as /etc/sbcl.rc and run on every invocation -;;; of SBCL - -(if (probe-file "/etc/lisp-config.lisp") - (load "/etc/lisp-config.lisp") - (format t "~%;;; Warning: there is no /etc/lisp-config.lisp file")) - -;;; The following is required if you want source location functions to -;;; work (such as those called when you use M-. (edit definition) in -;;; ILISP or SLIME) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*"))) - -;;; sbclrc ends here diff --git a/dev-lisp/sbcl/files/0.8.19/README.Gentoo b/dev-lisp/sbcl/files/0.8.19/README.Gentoo deleted file mode 100644 index b1243827a6e6..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/README.Gentoo +++ /dev/null @@ -1,29 +0,0 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2005/02/10 09:18:30 mkennedy Exp $ - -Gentoo GNU/Linux specific notes for SBCL ----------------------------------------- - -This is the README.Gentoo file from /usr/share/doc/@PF@/ directory. - - * The Gentoo port uses patches from the Debian project's SBCL port. - - * An SBCL with support for multi-threading on GNU/Linux for x86 is available - with 'USE="threads" emerge dev-lisp/sbcl' - - * asdf-install is installed as sbcl-asdf-install (the man-page is similarly - named). - - * Support for the Common Lisp Controller is available. - - * If "nosource" is in your USE flags, then SBCL's source will not be installed - (in /usr/lib/sbcl/src). - - * If "unicode" is in your USE flags, then support for SBCL - Unicode will be included. - - * If "ldb" is in you USE flags, then support for the SBCL low-level debugger - will be included. - -If you encounter any problems or have suggestions, use http://bugs.gentoo.org. -Please don't bother the upstream authors unless you are absolutely certain it is -not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.8.19/customize-target-features.lisp-prefix b/dev-lisp/sbcl/files/0.8.19/customize-target-features.lisp-prefix deleted file mode 100644 index 40f9a4fc85fa..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/customize-target-features.lisp-prefix +++ /dev/null @@ -1,5 +0,0 @@ -(lambda (list) -(flet ((enable (x) -(pushnew x list)) -(disable (x) -(setf list (remove x list)))) diff --git a/dev-lisp/sbcl/files/0.8.19/customize-target-features.lisp-suffix b/dev-lisp/sbcl/files/0.8.19/customize-target-features.lisp-suffix deleted file mode 100644 index dbbde7adc44e..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/customize-target-features.lisp-suffix +++ /dev/null @@ -1,2 +0,0 @@ -) -list) diff --git a/dev-lisp/sbcl/files/0.8.19/install-clc.lisp b/dev-lisp/sbcl/files/0.8.19/install-clc.lisp deleted file mode 100644 index c8e0a93a729f..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/install-clc.lisp +++ /dev/null @@ -1,34 +0,0 @@ -;;; -*- Mode: LISP; Package: CL-USER -*- -;;; -;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 -;;; -;;; License: LGPL v2 -;;; -(in-package "COMMON-LISP-USER") - -(handler-case - (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp") - (error (e) - (format t "~%Error during load of common-lisp-controller.lisp: ~A~%" e) - (sb-unix:unix-exit 1))) - -(handler-case - (common-lisp-controller:init-common-lisp-controller-v4 "sbcl") - (error (e) - (format t "~%Error running init-common-lisp-controller-v4: ~A~%" e) - (sb-unix:unix-exit 1))) - -(when (probe-file #p"/etc/lisp.config") - (load #p"/etc/lisp.config")) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" - #P"/usr/share/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" - #P"/usr/share/sbcl/**/*.*"))) - -(ignore-errors - (format t "~%Saving to sbcl-new.core...") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die "sbcl-new.core" - :purify t)) diff --git a/dev-lisp/sbcl/files/0.8.19/sbcl-gentoo.patch b/dev-lisp/sbcl/files/0.8.19/sbcl-gentoo.patch deleted file mode 100644 index 190d678aa3db..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/sbcl-gentoo.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -ru sbcl-0.8.19.orig/contrib/sb-posix/posix-tests.lisp sbcl-0.8.19/contrib/sb-posix/posix-tests.lisp ---- sbcl-0.8.19.orig/contrib/sb-posix/posix-tests.lisp 2004-03-15 09:24:53.000000000 -0600 -+++ sbcl-0.8.19/contrib/sb-posix/posix-tests.lisp 2004-04-28 14:47:50.179460512 -0500 -@@ -96,7 +96,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::eexist) - --(deftest mkdir.error.2 -+#+nil (deftest mkdir.error.2 - (handler-case - (sb-posix:mkdir "/" 0) - (sb-posix:syscall-error (c) -@@ -149,7 +149,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::enotdir) - --(deftest rmdir.error.3 -+#+nil (deftest rmdir.error.3 - (handler-case - (sb-posix:rmdir "/") - (sb-posix:syscall-error (c) -diff -ru sbcl-0.8.19.orig/src/runtime/GNUmakefile sbcl-0.8.19/src/runtime/GNUmakefile ---- sbcl-0.8.19.orig/src/runtime/GNUmakefile 2004-04-10 08:37:23.000000000 -0500 -+++ sbcl-0.8.19/src/runtime/GNUmakefile 2004-04-28 14:46:29.556717032 -0500 -@@ -33,6 +33,7 @@ - # symlink to Config-foo. - include Config - -+CFLAGS += -DSBCL_HOME='"/usr/lib/sbcl"' - - C_SRCS = alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c gc-common.c globals.c interr.c interrupt.c \ diff --git a/dev-lisp/sbcl/files/0.8.19/sbcl-no-tests-gentoo.patch b/dev-lisp/sbcl/files/0.8.19/sbcl-no-tests-gentoo.patch deleted file mode 100644 index 8ea79ce8d824..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/sbcl-no-tests-gentoo.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff -ur sbcl-0.8.19.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.8.19/contrib/sb-bsd-sockets/sb-bsd-sockets.asd ---- sbcl-0.8.19.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-02-11 05:00:40.000000000 -0600 -+++ sbcl-0.8.19/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-07-11 15:30:52.230966464 -0500 -@@ -103,14 +103,3 @@ - (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) - (provide 'sb-bsd-sockets)) - --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets)))) -- (operate 'load-op 'sb-bsd-sockets-tests) -- (operate 'test-op 'sb-bsd-sockets-tests)) -- --(defsystem sb-bsd-sockets-tests -- :depends-on (sb-rt sb-bsd-sockets sb-posix) -- :components ((:file "tests"))) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests)))) -- (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (error "test-op failed"))) -diff -ur sbcl-0.8.19.orig/contrib/sb-posix/sb-posix.asd sbcl-0.8.19/contrib/sb-posix/sb-posix.asd ---- sbcl-0.8.19.orig/contrib/sb-posix/sb-posix.asd 2003-11-29 14:41:47.000000000 -0600 -+++ sbcl-0.8.19/contrib/sb-posix/sb-posix.asd 2004-07-11 15:52:38.766342896 -0500 -@@ -86,34 +86,3 @@ - "constants" - :package :sb-posix :depends-on ("defpackage")) - (:file "interface" :depends-on ("constants" "macros" "designator" "alien")))) -- --(defsystem sb-posix-tests -- :depends-on (sb-rt) -- :components ((:file "posix-tests"))) -- --(defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix)))) -- (provide 'sb-posix)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix)))) -- (operate 'load-op 'sb-posix-tests) -- (operate 'test-op 'sb-posix-tests)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests)))) -- (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT"))) -- (ignored-failures (loop for sym being the symbols of :sb-posix-tests -- if (search ".ERROR" (symbol-name sym)) -- collect sym))) -- (cond -- ((null failures) -- t) -- ((null (set-difference failures ignored-failures)) -- (warn "~@<some POSIX implementations return incorrect error values for ~ -- failing calls, but there is legitimate variation between ~ -- implementations too. If you think the errno ~ -- from your platform is valid, please contact the sbcl ~ -- developers; otherwise, please submit a bug report to your ~ -- kernel distributor~@:>") -- t) -- (t -- (error "non-errno tests failed!"))))) diff --git a/dev-lisp/sbcl/files/0.8.19/sbcl.sh b/dev-lisp/sbcl/files/0.8.19/sbcl.sh deleted file mode 100644 index 66253874d2a3..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/sbcl.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - /usr/bin/sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - /usr/bin/sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (asdf:operate 'asdf:compile-op (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/var/cache/common-lisp-controller/*/sbcl/${1}" - shift - done - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, install-clc, and remove-clc - exit 1 - ;; -esac - -exit 0 diff --git a/dev-lisp/sbcl/files/0.8.19/sbclrc b/dev-lisp/sbcl/files/0.8.19/sbclrc deleted file mode 100644 index 91f31720d896..000000000000 --- a/dev-lisp/sbcl/files/0.8.19/sbclrc +++ /dev/null @@ -1,18 +0,0 @@ -;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*- - -;;; This file is installed as /etc/sbcl.rc and run on every invocation -;;; of SBCL - -(if (probe-file "/etc/lisp-config.lisp") - (load "/etc/lisp-config.lisp") - (format t "~%;;; Warning: there is no /etc/lisp-config.lisp file")) - -;;; The following is required if you want source location functions to -;;; work (such as those called when you use M-. (edit definition) in -;;; ILISP or SLIME) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*"))) - -;;; sbclrc ends here diff --git a/dev-lisp/sbcl/files/0.8.20/README.Gentoo b/dev-lisp/sbcl/files/0.8.20/README.Gentoo deleted file mode 100644 index 2b88b338d257..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/README.Gentoo +++ /dev/null @@ -1,44 +0,0 @@ --*- outline -*- $Id: README.Gentoo,v 1.2 2005/04/07 02:58:58 mkennedy Exp $ - -Gentoo GNU/Linux specific notes for SBCL ----------------------------------------- - -This is the README.Gentoo file from /usr/share/doc/@PF@/ directory. - - * The Gentoo port uses patches from the Debian project's SBCL port. - - * An SBCL with support for multi-threading on GNU/Linux for x86 is available - with 'USE="threads" emerge dev-lisp/sbcl' - - * asdf-install is installed as sbcl-asdf-install (the man-page is similarly - named). - - * Support for the Common Lisp Controller is available. - - * If "nosource" is in your USE flags, then SBCL's source will not be installed - (in /usr/lib/sbcl/src). - - * If "unicode" is in your USE flags, then support for SBCL - Unicode will be included. - - * If "ldb" is in your USE flags, then support for the SBCL low-level debugger - will be included. - - * If "callbacks" is in your USE flags, then support for foreign callbacks will - be included. This is useful for libraries such as Lambda-GTK. - - NOTE: callback support is implemented using Thomas Burdick's SBCL-AF patch - which is distributed outside of SBCL. This will NOT be the final API SBCL - uses. See also: - - http://article.gmane.org/gmane.lisp.steel-bank.devel/4279 - http://article.gmane.org/gmane.lisp.steel-bank.devel/4341 - - Ports which require callbacks in SBCL: - - cl-zeroconf - lambda-gtk - -If you encounter any problems or have suggestions, use http://bugs.gentoo.org. -Please don't bother the upstream authors unless you are absolutely certain it is -not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.8.20/customize-target-features.lisp-prefix b/dev-lisp/sbcl/files/0.8.20/customize-target-features.lisp-prefix deleted file mode 100644 index 40f9a4fc85fa..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/customize-target-features.lisp-prefix +++ /dev/null @@ -1,5 +0,0 @@ -(lambda (list) -(flet ((enable (x) -(pushnew x list)) -(disable (x) -(setf list (remove x list)))) diff --git a/dev-lisp/sbcl/files/0.8.20/customize-target-features.lisp-suffix b/dev-lisp/sbcl/files/0.8.20/customize-target-features.lisp-suffix deleted file mode 100644 index dbbde7adc44e..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/customize-target-features.lisp-suffix +++ /dev/null @@ -1,2 +0,0 @@ -) -list) diff --git a/dev-lisp/sbcl/files/0.8.20/install-clc.lisp b/dev-lisp/sbcl/files/0.8.20/install-clc.lisp deleted file mode 100644 index c8e0a93a729f..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/install-clc.lisp +++ /dev/null @@ -1,34 +0,0 @@ -;;; -*- Mode: LISP; Package: CL-USER -*- -;;; -;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 -;;; -;;; License: LGPL v2 -;;; -(in-package "COMMON-LISP-USER") - -(handler-case - (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp") - (error (e) - (format t "~%Error during load of common-lisp-controller.lisp: ~A~%" e) - (sb-unix:unix-exit 1))) - -(handler-case - (common-lisp-controller:init-common-lisp-controller-v4 "sbcl") - (error (e) - (format t "~%Error running init-common-lisp-controller-v4: ~A~%" e) - (sb-unix:unix-exit 1))) - -(when (probe-file #p"/etc/lisp.config") - (load #p"/etc/lisp.config")) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" - #P"/usr/share/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" - #P"/usr/share/sbcl/**/*.*"))) - -(ignore-errors - (format t "~%Saving to sbcl-new.core...") - (sb-ext:gc :full t) - (sb-ext:save-lisp-and-die "sbcl-new.core" - :purify t)) diff --git a/dev-lisp/sbcl/files/0.8.20/sbcl-gentoo.patch b/dev-lisp/sbcl/files/0.8.20/sbcl-gentoo.patch deleted file mode 100644 index ec7f47e63f3a..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/sbcl-gentoo.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -ru sbcl-0.8.20.orig/contrib/sb-posix/posix-tests.lisp sbcl-0.8.20/contrib/sb-posix/posix-tests.lisp ---- sbcl-0.8.20.orig/contrib/sb-posix/posix-tests.lisp 2004-03-15 09:24:53.000000000 -0600 -+++ sbcl-0.8.20/contrib/sb-posix/posix-tests.lisp 2004-04-28 14:47:50.179460512 -0500 -@@ -96,7 +96,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::eexist) - --(deftest mkdir.error.2 -+#+nil (deftest mkdir.error.2 - (handler-case - (sb-posix:mkdir "/" 0) - (sb-posix:syscall-error (c) -@@ -149,7 +149,7 @@ - (sb-posix:syscall-errno c))) - #.sb-posix::enotdir) - --(deftest rmdir.error.3 -+#+nil (deftest rmdir.error.3 - (handler-case - (sb-posix:rmdir "/") - (sb-posix:syscall-error (c) -diff -ru sbcl-0.8.20.orig/src/runtime/GNUmakefile sbcl-0.8.20/src/runtime/GNUmakefile ---- sbcl-0.8.20.orig/src/runtime/GNUmakefile 2004-04-10 08:37:23.000000000 -0500 -+++ sbcl-0.8.20/src/runtime/GNUmakefile 2004-04-28 14:46:29.556717032 -0500 -@@ -33,6 +33,7 @@ - # symlink to Config-foo. - include Config - -+CFLAGS += -DSBCL_HOME='"/usr/lib/sbcl"' - - C_SRCS = alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c gc-common.c globals.c interr.c interrupt.c \ diff --git a/dev-lisp/sbcl/files/0.8.20/sbcl-no-tests-gentoo.patch b/dev-lisp/sbcl/files/0.8.20/sbcl-no-tests-gentoo.patch deleted file mode 100644 index 868b84f5c2a2..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/sbcl-no-tests-gentoo.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff -ur sbcl-0.8.20.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.8.20/contrib/sb-bsd-sockets/sb-bsd-sockets.asd ---- sbcl-0.8.20.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-02-11 05:00:40.000000000 -0600 -+++ sbcl-0.8.20/contrib/sb-bsd-sockets/sb-bsd-sockets.asd 2004-07-11 15:30:52.230966464 -0500 -@@ -103,14 +103,3 @@ - (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) - (provide 'sb-bsd-sockets)) - --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets)))) -- (operate 'load-op 'sb-bsd-sockets-tests) -- (operate 'test-op 'sb-bsd-sockets-tests)) -- --(defsystem sb-bsd-sockets-tests -- :depends-on (sb-rt sb-bsd-sockets sb-posix) -- :components ((:file "tests"))) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests)))) -- (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (error "test-op failed"))) -diff -ur sbcl-0.8.20.orig/contrib/sb-posix/sb-posix.asd sbcl-0.8.20/contrib/sb-posix/sb-posix.asd ---- sbcl-0.8.20.orig/contrib/sb-posix/sb-posix.asd 2003-11-29 14:41:47.000000000 -0600 -+++ sbcl-0.8.20/contrib/sb-posix/sb-posix.asd 2004-07-11 15:52:38.766342896 -0500 -@@ -86,34 +86,3 @@ - "constants" - :package :sb-posix :depends-on ("defpackage")) - (:file "interface" :depends-on ("constants" "macros" "designator" "alien")))) -- --(defsystem sb-posix-tests -- :depends-on (sb-rt) -- :components ((:file "posix-tests"))) -- --(defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix)))) -- (provide 'sb-posix)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix)))) -- (operate 'load-op 'sb-posix-tests) -- (operate 'test-op 'sb-posix-tests)) -- --(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests)))) -- (funcall (intern "DO-TESTS" (find-package "SB-RT"))) -- (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT"))) -- (ignored-failures (loop for sym being the symbols of :sb-posix-tests -- if (search ".ERROR" (symbol-name sym)) -- collect sym))) -- (cond -- ((null failures) -- t) -- ((null (set-difference failures ignored-failures)) -- (warn "~@<some POSIX implementations return incorrect error values for ~ -- failing calls, but there is legitimate variation between ~ -- implementations too. If you think the errno ~ -- from your platform is valid, please contact the sbcl ~ -- developers; otherwise, please submit a bug report to your ~ -- kernel distributor~@:>") -- t) -- (t -- (error "non-errno tests failed!"))))) diff --git a/dev-lisp/sbcl/files/0.8.20/sbcl.sh b/dev-lisp/sbcl/files/0.8.20/sbcl.sh deleted file mode 100644 index 66253874d2a3..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/sbcl.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - /usr/bin/sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - /usr/bin/sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (asdf:operate 'asdf:compile-op (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/var/cache/common-lisp-controller/*/sbcl/${1}" - shift - done - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, install-clc, and remove-clc - exit 1 - ;; -esac - -exit 0 diff --git a/dev-lisp/sbcl/files/0.8.20/sbclrc b/dev-lisp/sbcl/files/0.8.20/sbclrc deleted file mode 100644 index 91f31720d896..000000000000 --- a/dev-lisp/sbcl/files/0.8.20/sbclrc +++ /dev/null @@ -1,18 +0,0 @@ -;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*- - -;;; This file is installed as /etc/sbcl.rc and run on every invocation -;;; of SBCL - -(if (probe-file "/etc/lisp-config.lisp") - (load "/etc/lisp-config.lisp") - (format t "~%;;; Warning: there is no /etc/lisp-config.lisp file")) - -;;; The following is required if you want source location functions to -;;; work (such as those called when you use M-. (edit definition) in -;;; ILISP or SLIME) - -(setf (logical-pathname-translations "SYS") - '(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*") - ("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*"))) - -;;; sbclrc ends here diff --git a/dev-lisp/sbcl/files/0.8.21/README.Gentoo b/dev-lisp/sbcl/files/0.8.21/README.Gentoo index 3f208bcfbbd1..6f4f84da9289 100644 --- a/dev-lisp/sbcl/files/0.8.21/README.Gentoo +++ b/dev-lisp/sbcl/files/0.8.21/README.Gentoo @@ -1,4 +1,4 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2005/04/07 02:58:58 mkennedy Exp $ +-*- outline -*- $Id: README.Gentoo,v 1.2 2005/06/01 03:24:45 mkennedy Exp $ Gentoo GNU/Linux specific notes for SBCL ---------------------------------------- @@ -24,21 +24,6 @@ This is the README.Gentoo file from /usr/share/doc/@PF@/ directory. * If "ldb" is in your USE flags, then support for the SBCL low-level debugger will be included. - * If "callbacks" is in your USE flags, then support for foreign callbacks will - be included. This is useful for libraries such as Lambda-GTK. - - NOTE: callback support is implemented using Thomas Burdick's SBCL-AF patch - which is distributed outside of SBCL. This will NOT be the final API SBCL - uses. See also: - - http://article.gmane.org/gmane.lisp.steel-bank.devel/4279 - http://article.gmane.org/gmane.lisp.steel-bank.devel/4341 - - Ports which require callbacks in SBCL: - - cl-zeroconf - lambda-gtk - If you encounter any problems or have suggestions, use http://bugs.gentoo.org. Please don't bother the upstream authors unless you are absolutely certain it is not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.9.0/README.Gentoo b/dev-lisp/sbcl/files/0.9.0/README.Gentoo index 55b87ccf52d8..6f4f84da9289 100644 --- a/dev-lisp/sbcl/files/0.9.0/README.Gentoo +++ b/dev-lisp/sbcl/files/0.9.0/README.Gentoo @@ -1,4 +1,4 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2005/05/11 07:47:09 mkennedy Exp $ +-*- outline -*- $Id: README.Gentoo,v 1.2 2005/06/01 03:24:45 mkennedy Exp $ Gentoo GNU/Linux specific notes for SBCL ---------------------------------------- @@ -24,21 +24,6 @@ This is the README.Gentoo file from /usr/share/doc/@PF@/ directory. * If "ldb" is in your USE flags, then support for the SBCL low-level debugger will be included. - * If "callbacks" is in your USE flags, then support for foreign callbacks will - be included. This is useful for libraries such as Lambda-GTK. - - NOTE: callback support is implemented using Thomas Burdick's SBCL-AF patch - which is distributed outside of SBCL. This will NOT be the final API SBCL - uses. See also: - - http://article.gmane.org/gmane.lisp.steel-bank.devel/4279 - http://article.gmane.org/gmane.lisp.steel-bank.devel/4341 - - Ports which require callbacks in SBCL: - - cl-zeroconf - lambda-gtk - If you encounter any problems or have suggestions, use http://bugs.gentoo.org. Please don't bother the upstream authors unless you are absolutely certain it is not Gentoo-related. diff --git a/dev-lisp/sbcl/files/0.9.1/README.Gentoo b/dev-lisp/sbcl/files/0.9.1/README.Gentoo index 0f589b5e9d07..6f4f84da9289 100644 --- a/dev-lisp/sbcl/files/0.9.1/README.Gentoo +++ b/dev-lisp/sbcl/files/0.9.1/README.Gentoo @@ -1,4 +1,4 @@ --*- outline -*- $Id: README.Gentoo,v 1.1 2005/05/30 08:28:30 mkennedy Exp $ +-*- outline -*- $Id: README.Gentoo,v 1.2 2005/06/01 03:24:45 mkennedy Exp $ Gentoo GNU/Linux specific notes for SBCL ---------------------------------------- @@ -24,21 +24,6 @@ This is the README.Gentoo file from /usr/share/doc/@PF@/ directory. * If "ldb" is in your USE flags, then support for the SBCL low-level debugger will be included. - * If "callbacks" is in your USE flags, then support for foreign callbacks will - be included. This is useful for libraries such as Lambda-GTK. - - NOTE: callback support is implemented using Thomas Burdick's SBCL-AF patch - which is distributed outside of SBCL. This will NOT be the final API SBCL - uses. See also: - - http://article.gmane.org/gmane.lisp.steel-bank.devel/4279 - http://article.gmane.org/gmane.lisp.steel-bank.devel/4341 - - Ports which require callbacks in SBCL: - - cl-zeroconf - lambda-gtk - If you encounter any problems or have suggestions, use http://bugs.gentoo.org. Please don't bother the upstream authors unless you are absolutely certain it is not Gentoo-related. diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.14 b/dev-lisp/sbcl/files/digest-sbcl-0.8.14 deleted file mode 100644 index 2b70bb6c5566..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.14 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 ab8e0ccc6a85bc189a51b9f8b79b8f00 sbcl-0.8.14-source.tar.bz2 2229124 -MD5 d85f2b76b8c6829b88c85a56cdea33f6 sbcl-0.8.14-html.tar.bz2 42976 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.15 b/dev-lisp/sbcl/files/digest-sbcl-0.8.15 deleted file mode 100644 index 9ec027b0af9c..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.15 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 4c5e1732c884d831707de3257bdcbee3 sbcl-0.8.15-source.tar.bz2 2334930 -MD5 1a3f76537e7aaaafe7f9e5a4ee923e2d sbcl-0.8.15-html.tar.bz2 108172 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.16 b/dev-lisp/sbcl/files/digest-sbcl-0.8.16 deleted file mode 100644 index ced0b0ebd884..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.16 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 ae305cbc7a018f45c119282aebf43c90 sbcl-0.8.16-source.tar.bz2 2342519 -MD5 096adea4e54463761e4d08f8067611ff sbcl-0.8.16-html.tar.bz2 108443 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.18 b/dev-lisp/sbcl/files/digest-sbcl-0.8.18 deleted file mode 100644 index 4afc6ceb8e55..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.18 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 23d3d60e921d0c5498feed47cfcf436f sbcl-0.8.18-source.tar.bz2 2492978 -MD5 9e3030e991d57b0ae40c197d4307b176 sbcl-0.8.18-html.tar.bz2 108955 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.19 b/dev-lisp/sbcl/files/digest-sbcl-0.8.19 deleted file mode 100644 index e7cb4d93444b..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.19 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 5f1fad48bc9136e3225f55097dd3d306 sbcl-0.8.19-source.tar.bz2 2428120 -MD5 278acbe1c580103a62aba663e4e12ba5 sbcl-0.8.19-html.tar.bz2 109317 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.20 b/dev-lisp/sbcl/files/digest-sbcl-0.8.20 deleted file mode 100644 index 9900190540ff..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.20 +++ /dev/null @@ -1,8 +0,0 @@ -MD5 7107b31b2408673c56729825ee92a8e6 sbcl-0.8.20-source.tar.bz2 2435919 -MD5 0fb1ab20e77953b0d6e17df568eede46 sbcl-0.8.20-html.tar.bz2 109229 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 -MD5 beba4861dc8de0a2420c483f15a93c05 sbcl-0.8.19-x86-64-linux-binary.tar.bz2 7466117 -MD5 d964b7ddca50b23815cd9bd6891108f0 sbcl-af-2004-10-22.tgz 12408 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.21 b/dev-lisp/sbcl/files/digest-sbcl-0.8.21 deleted file mode 100644 index 0dcc7f76a0ce..000000000000 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.21 +++ /dev/null @@ -1,8 +0,0 @@ -MD5 61a7e7c3c6be55e3155a901e67ff987a sbcl-0.8.21-source.tar.bz2 2448354 -MD5 a2e4c0e99428a16524669798bf479b14 sbcl-0.8.21-html.tar.bz2 12496 -MD5 6c193e328cdb472787ef78401ee5294c sbcl-0.8.1-x86-linux-binary.tar.bz2 6348098 -MD5 b5a5c93185ae03392ff6000a4a425222 sbcl-0.8.8-ppc-linux-binary.tar.bz2 6831954 -MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 -MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 -MD5 beba4861dc8de0a2420c483f15a93c05 sbcl-0.8.19-x86-64-linux-binary.tar.bz2 7466117 -MD5 d964b7ddca50b23815cd9bd6891108f0 sbcl-af-2004-10-22.tgz 12408 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.8.21-r1 b/dev-lisp/sbcl/files/digest-sbcl-0.8.21-r1 index becf31638d32..bd51ed3f8590 100644 --- a/dev-lisp/sbcl/files/digest-sbcl-0.8.21-r1 +++ b/dev-lisp/sbcl/files/digest-sbcl-0.8.21-r1 @@ -5,4 +5,3 @@ MD5 3a72d0785ce0a8e02f9af632c2a4f217 sbcl-0.8.15-powerpc-linux-binary.tar.bz2 66 MD5 7cb56cd42b1f5797d26316e79aaccb06 sbcl-0.7.13-sparc-linux-binary.tar.bz2 5670293 MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 MD5 beba4861dc8de0a2420c483f15a93c05 sbcl-0.8.19-x86-64-linux-binary.tar.bz2 7466117 -MD5 d964b7ddca50b23815cd9bd6891108f0 sbcl-af-2004-10-22.tgz 12408 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.9.0 b/dev-lisp/sbcl/files/digest-sbcl-0.9.0 index 4e89d14a050f..2efa0496f6f9 100644 --- a/dev-lisp/sbcl/files/digest-sbcl-0.9.0 +++ b/dev-lisp/sbcl/files/digest-sbcl-0.9.0 @@ -5,4 +5,3 @@ MD5 3a72d0785ce0a8e02f9af632c2a4f217 sbcl-0.8.15-powerpc-linux-binary.tar.bz2 66 MD5 029b85186984d0bfc8b49c4de1e8e45e sbcl-0.8.15-sparc-linux-binary.tar.bz2 6903090 MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 MD5 beba4861dc8de0a2420c483f15a93c05 sbcl-0.8.19-x86-64-linux-binary.tar.bz2 7466117 -MD5 d964b7ddca50b23815cd9bd6891108f0 sbcl-af-2004-10-22.tgz 12408 diff --git a/dev-lisp/sbcl/files/digest-sbcl-0.9.1 b/dev-lisp/sbcl/files/digest-sbcl-0.9.1 index 7f097d3a4fa4..e6b3bad98edd 100644 --- a/dev-lisp/sbcl/files/digest-sbcl-0.9.1 +++ b/dev-lisp/sbcl/files/digest-sbcl-0.9.1 @@ -5,4 +5,3 @@ MD5 3a72d0785ce0a8e02f9af632c2a4f217 sbcl-0.8.15-powerpc-linux-binary.tar.bz2 66 MD5 029b85186984d0bfc8b49c4de1e8e45e sbcl-0.8.15-sparc-linux-binary.tar.bz2 6903090 MD5 29ad145f1fc45c65b8d65b39013bc43f sbcl-0.7.10-mips-linux-binary.tar.gz 7473873 MD5 beba4861dc8de0a2420c483f15a93c05 sbcl-0.8.19-x86-64-linux-binary.tar.bz2 7466117 -MD5 d964b7ddca50b23815cd9bd6891108f0 sbcl-af-2004-10-22.tgz 12408 diff --git a/dev-lisp/sbcl/metadata.xml b/dev-lisp/sbcl/metadata.xml new file mode 100644 index 000000000000..d806d206463b --- /dev/null +++ b/dev-lisp/sbcl/metadata.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>common-lisp</herd> +<longdescription> +Steel Bank Common Lisp is an open source Common Lisp +implementation. It provides an integrated native compiler, +interpreter, and debugger. + +SBCL is a fork off of the main branch of CMUCL. SBCL is distinguished +from CMUCL by a greater emphasis on maintainability. In particular, +the SBCL system can be built directly from its source code, so that +the output corresponds to the source code in a controlled, verifiable +way, and arbitrary changes can be made to the system without causing +bootstrapping problems. SBCL also places less emphasis than CMU CL +does on new non-ANSI extensions, or on backward compatibility with old +non-ANSI features. + +Support for native threading on GNU/Linux is available for the x86 +platform, including support for the new futex system call available in +2.6.x kernels. + +SBCL 0.8.17 and later support Unicode. +</longdescription> +</pkgmetadata> diff --git a/dev-lisp/sbcl/sbcl-0.8.14.ebuild b/dev-lisp/sbcl/sbcl-0.8.14.ebuild deleted file mode 100644 index 8d1ad1594390..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.14.ebuild +++ /dev/null @@ -1,131 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.14.ebuild,v 1.3 2005/01/07 21:52:19 mkennedy Exp $ - -inherit common-lisp-common eutils - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz )" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="x86 ~ppc ~sparc ~mips" -IUSE="threads doc nosource" - -DEPEND=">=dev-lisp/common-lisp-controller-3.91 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz - mv ${PN}-${BV_SPARC}-mips-linux mips-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - # Currently, thread support is only available for x86. These - # features expressions also disable :sb-test. - if use x86 && use threads; then - cp ${FILESDIR}/${PV}/customize-target-features.lisp \ - ${S}/customize-target-features.lisp - else - cp ${FILESDIR}/${PV}/customize-target-features.lisp.no-threads \ - ${S}/customize-target-features.lisp - fi - - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -type d -name CVS \) -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; -} - -src_compile() { - local bindir - use x86 && bindir=../x86-binary - use ppc && bindir=../ppc-binary - use sparc && bindir=../sparc-binary - use mips && bindir=../mips-binary - - # TODO: allow the user to chose between SBCL, CMUCL and CLISP for bootstrapping - # build with previous SBCL - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl --sysinit /dev/null --userinit /dev/null --noprogrammer --core ${bindir}/output/sbcl.core' \ - || die - - # build with CMUCL -# GNUMAKE=make ./make.sh 'lisp -batch' - - # Generation texinfo documentation - cd ${S}/doc/manual - make info - use doc && make ps pdf - -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - INSTALL_ROOT=${D}/usr sh install.sh - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl -} diff --git a/dev-lisp/sbcl/sbcl-0.8.15.ebuild b/dev-lisp/sbcl/sbcl-0.8.15.ebuild deleted file mode 100644 index bdca9af8decc..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.15.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.15.ebuild,v 1.5 2005/01/07 21:52:19 mkennedy Exp $ - -inherit common-lisp-common eutils - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz )" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="x86 ~ppc ~sparc ~mips" -IUSE="threads doc nosource" - -DEPEND=">=dev-lisp/common-lisp-controller-3.91 - >=dev-lisp/cl-defsystem3-3.3i-r3 - >=dev-lisp/cl-asdf-1.84 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz - mv ${PN}-${BV_SPARC}-mips-linux mips-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - # Currently, thread support is only available for x86. These - # features expressions also disable :sb-test. - if use x86 && use threads; then - cp ${FILESDIR}/${PV}/customize-target-features.lisp \ - ${S}/customize-target-features.lisp - else - cp ${FILESDIR}/${PV}/customize-target-features.lisp.no-threads \ - ${S}/customize-target-features.lisp - fi - - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -type d -name CVS \) -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; -} - -src_compile() { - local bindir - use x86 && bindir=../x86-binary - use ppc && bindir=../ppc-binary - use sparc && bindir=../sparc-binary - use mips && bindir=../mips-binary - - # TODO: allow the user to chose between SBCL, CMUCL and CLISP for bootstrapping - # build with previous SBCL - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl --sysinit /dev/null --userinit /dev/null --noprogrammer --core ${bindir}/output/sbcl.core' \ - || die - - # build with CMUCL -# GNUMAKE=make ./make.sh 'lisp -batch' - - # Generation texinfo documentation - cd ${S}/doc/manual - make info - use doc && make ps pdf - -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - INSTALL_ROOT=${D}/usr sh install.sh - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl -} diff --git a/dev-lisp/sbcl/sbcl-0.8.16.ebuild b/dev-lisp/sbcl/sbcl-0.8.16.ebuild deleted file mode 100644 index 933041675cb8..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.16.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.16.ebuild,v 1.5 2005/01/07 21:52:19 mkennedy Exp $ - -inherit common-lisp-common eutils - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz )" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="x86 ~ppc ~sparc ~mips" -IUSE="threads doc nosource" - -DEPEND=">=dev-lisp/common-lisp-controller-3.91 - >=dev-lisp/cl-defsystem3-3.3i-r3 - >=dev-lisp/cl-asdf-1.84 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz - mv ${PN}-${BV_SPARC}-mips-linux mips-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - # Currently, thread support is only available for x86. These - # features expressions also disable :sb-test. - if use x86 && use threads; then - cp ${FILESDIR}/${PV}/customize-target-features.lisp \ - ${S}/customize-target-features.lisp - else - cp ${FILESDIR}/${PV}/customize-target-features.lisp.no-threads \ - ${S}/customize-target-features.lisp - fi - - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -type d -name CVS \) -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; -} - -src_compile() { - local bindir - use x86 && bindir=../x86-binary - use ppc && bindir=../ppc-binary - use sparc && bindir=../sparc-binary - use mips && bindir=../mips-binary - - # TODO: allow the user to chose between SBCL, CMUCL and CLISP for bootstrapping - # build with previous SBCL - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl --sysinit /dev/null --userinit /dev/null --no-debugger --core ${bindir}/output/sbcl.core' \ - || die - - # build with CMUCL -# GNUMAKE=make ./make.sh 'lisp -batch' - - # Generation texinfo documentation - cd ${S}/doc/manual - make info - use doc && make ps pdf - -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - INSTALL_ROOT=${D}/usr sh install.sh - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl -} diff --git a/dev-lisp/sbcl/sbcl-0.8.18.ebuild b/dev-lisp/sbcl/sbcl-0.8.18.ebuild deleted file mode 100644 index b3099f2105ee..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.18.ebuild +++ /dev/null @@ -1,140 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.18.ebuild,v 1.4 2005/03/16 07:36:15 mkennedy Exp $ - -inherit common-lisp-common eutils - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz )" - -LICENSE="MIT" -SLOT="0" - -KEYWORDS="x86 ~ppc ~sparc ~mips" -IUSE="threads doc nosource unicode ldb" - -DEPEND=">=dev-lisp/common-lisp-controller-3.91 - >=dev-lisp/cl-defsystem3-3.3i-r3 - >=dev-lisp/cl-asdf-1.84 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -pkg_setup() { - if use hardened; then - die 'So-called "hardened" USE features are incompatible with SBCL.' - fi -} - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz - mv ${PN}-${BV_SPARC}-mips-linux mips-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - cp ${FILESDIR}/${PV}/customize-target-features.lisp-prefix \ - ${S}/customize-target-features.lisp - use x86 && use threads \ - && echo '(enable :sb-thread)' \ - >>${S}/customize-target-features.lisp - use ldb \ - && echo '(enable :sb-ldb)' \ - >>${S}/customize-target-features.lisp - echo '(enable :sb-futex)' >>${S}/customize-target-features.lisp - echo '(disable :sb-test)' >>${S}/customize-target-features.lisp - ! use unicode \ - && echo '(disable :sb-unicode)' \ - >>${S}/customize-target-features.lisp - cat ${FILESDIR}/${PV}/customize-target-features.lisp-suffix \ - >>${S}/customize-target-features.lisp - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -type d -name CVS \) -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; -} - -src_compile() { - local bindir - use x86 && bindir=../x86-binary - use ppc && bindir=../ppc-binary - use sparc && bindir=../sparc-binary - use mips && bindir=../mips-binary - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl - --sysinit /dev/null - --userinit /dev/null - --no-debugger - --core ${bindir}/output/sbcl.core' \ - || die - cd ${S}/doc/manual - make info - use doc && make ps pdf -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - INSTALL_ROOT=${D}/usr sh install.sh - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl -} diff --git a/dev-lisp/sbcl/sbcl-0.8.19.ebuild b/dev-lisp/sbcl/sbcl-0.8.19.ebuild deleted file mode 100644 index 40917b1486a0..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.19.ebuild +++ /dev/null @@ -1,145 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.19.ebuild,v 1.3 2005/03/16 07:36:15 mkennedy Exp $ - -inherit common-lisp-common-2 eutils - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz )" - -LICENSE="MIT" -SLOT="0" - -KEYWORDS="~x86 ~ppc ~sparc ~mips" -IUSE="threads doc nosource unicode ldb" - -DEPEND="=dev-lisp/common-lisp-controller-4* - >=dev-lisp/cl-asdf-1.84 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -pkg_setup() { - if use hardened; then - die 'So-called "hardened" USE features are incompatible with SBCL.' - fi -} - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_SPARC}-mips-linux-binary.tar.gz - mv ${PN}-${BV_SPARC}-mips-linux mips-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - cp ${FILESDIR}/${PV}/customize-target-features.lisp-prefix \ - ${S}/customize-target-features.lisp - use x86 && use threads \ - && echo '(enable :sb-thread)' \ - >>${S}/customize-target-features.lisp - use ldb \ - && echo '(enable :sb-ldb)' \ - >>${S}/customize-target-features.lisp - echo '(enable :sb-futex)' >>${S}/customize-target-features.lisp - echo '(disable :sb-test)' >>${S}/customize-target-features.lisp - ! use unicode \ - && echo '(disable :sb-unicode)' \ - >>${S}/customize-target-features.lisp - cat ${FILESDIR}/${PV}/customize-target-features.lisp-suffix \ - >>${S}/customize-target-features.lisp - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -type d -name CVS \) -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; -} - -src_compile() { - local bindir - use x86 && bindir=../x86-binary - use ppc && bindir=../ppc-binary - use sparc && bindir=../sparc-binary - use mips && bindir=../mips-binary - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl - --sysinit /dev/null - --userinit /dev/null - --no-debugger - --core ${bindir}/output/sbcl.core' \ - || die - cd ${S}/doc/manual - make info - use doc && make ps pdf -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - INSTALL_ROOT=${D}/usr sh install.sh - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl -} - -pkg_postrm() { - if [ ! -x /usr/bin/sbcl ]; then - rm -rf /usr/lib/sbcl/ || die - fi -} diff --git a/dev-lisp/sbcl/sbcl-0.8.20.ebuild b/dev-lisp/sbcl/sbcl-0.8.20.ebuild deleted file mode 100644 index e21f765d8fa8..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.20.ebuild +++ /dev/null @@ -1,190 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.20.ebuild,v 1.4 2005/04/25 05:55:06 mkennedy Exp $ - -inherit common-lisp-common-2 eutils - -SBCL_AF_PV=2004-10-22 - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -BV_AMD64=0.8.19 - -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz ) - amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 ) - callbacks? ( http://pinhead.music.uiuc.edu/~hkt/sbcl-af-${SBCL_AF_PV}.tgz )" - -LICENSE="MIT" -SLOT="0" - -KEYWORDS="x86 ~ppc ~sparc ~mips ~amd64" -IUSE="threads doc nosource unicode ldb callbacks" - -DEPEND="=dev-lisp/common-lisp-controller-4* - >=dev-lisp/cl-asdf-1.84 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -pkg_setup() { - if gcc-config -c |grep hardened; then - while read line; do einfo "${line}"; done <<EOF - -So-called "hardened" compiler features are incompatible with SBCL. You must use -gcc-config to select a profile with non-hardened features and "source -/etc/profile" before continuing. - -EOF - die - fi -} - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_MIPS}-mips-linux-binary.tar.gz - mv ${PN}-${BV_MIPS}-mips-linux mips-binary - elif use amd64; then - unpack ${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 - mv ${PN}-${BV_AMD64}-x86-64-linux x86-64-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - cp ${FILESDIR}/${PV}/customize-target-features.lisp-prefix \ - ${S}/customize-target-features.lisp - use x86 && use threads \ - && echo '(enable :sb-thread)' \ - >>${S}/customize-target-features.lisp - use ldb \ - && echo '(enable :sb-ldb)' \ - >>${S}/customize-target-features.lisp - use x86 \ - && echo '(enable :sb-futex)' \ - >>${S}/customize-target-features.lisp - echo '(disable :sb-test)' >>${S}/customize-target-features.lisp - ! use unicode \ - && echo '(disable :sb-unicode)' \ - >>${S}/customize-target-features.lisp - cat ${FILESDIR}/${PV}/customize-target-features.lisp-suffix \ - >>${S}/customize-target-features.lisp - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -depth -type d -name CVS -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; - - if use callbacks; then - einfo "You have specified the \"callbacks\" USE flag. Callbacks may only work for x86." - einfo "Please refer to README.Gentoo for more information." - unpack sbcl-af-${SBCL_AF_PV}.tgz - fi -} - -src_compile() { - local bindir="" - - if use x86; then - bindir=../x86-binary - elif use ppc; then - bindir=../ppc-binary - elif use sparc; then - bindir=../sparc-binary - elif use mips; then - bindir=../mips-binary - elif use amd64; then - bindir=../x86-64-binary - fi - - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl - --sysinit /dev/null - --userinit /dev/null - --no-debugger - --core ${bindir}/output/sbcl.core' \ - || die - cd ${S}/doc/manual - make info - use doc && make ps pdf -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - dodir /usr/share/doc/${PF} - INSTALL_ROOT=${D}/usr DOC_DIR=${D}/usr/share/doc/${PF} sh install.sh || die - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core || die - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl - if use callbacks; then - mv /usr/lib/sbcl/sbcl.core /usr/lib/sbcl/sbcl-nocallbacks.core || die - pushd ${WORKDIR}/sbcl-af - sbcl --core /usr/lib/sbcl/sbcl-nocallbacks.core \ - --load 'system' \ - --eval '(sb-ext:save-lisp-and-die "/usr/lib/sbcl/sbcl.core")' || die - popd - fi -# Image Summary -# ------------- -# /usr/lib/sbcl/sbcl-dist.core - Plain SBCL image -# /usr/lib/sbcl/sbcl-nocallbacks.core - CLC (Common Lisp Controller) image -# /usr/lib/sbcl/sbcl.core - CLC image w/ callbacks support - -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl - if [ ! -x /usr/bin/sbcl ]; then - rm -rf /usr/lib/sbcl/ || die - fi -} diff --git a/dev-lisp/sbcl/sbcl-0.8.21-r1.ebuild b/dev-lisp/sbcl/sbcl-0.8.21-r1.ebuild index d306f56654d6..7cee2af0961e 100644 --- a/dev-lisp/sbcl/sbcl-0.8.21-r1.ebuild +++ b/dev-lisp/sbcl/sbcl-0.8.21-r1.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.21-r1.ebuild,v 1.1 2005/04/25 05:55:06 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.21-r1.ebuild,v 1.2 2005/06/01 03:24:45 mkennedy Exp $ inherit common-lisp-common-2 eutils -SBCL_AF_PV=2004-10-22 - BV_X86=0.8.1 BV_PPC=0.8.15 BV_SPARC=0.7.13 @@ -20,14 +18,13 @@ SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz ) - amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 ) - callbacks? ( http://pinhead.music.uiuc.edu/~hkt/sbcl-af-${SBCL_AF_PV}.tgz )" + amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 )" LICENSE="MIT" SLOT="0" KEYWORDS="x86 ~ppc ~sparc ~mips ~amd64" -IUSE="threads doc nosource unicode ldb callbacks" +IUSE="threads doc nosource unicode ldb" DEPEND="=dev-lisp/common-lisp-controller-4* >=dev-lisp/cl-asdf-1.84 @@ -39,15 +36,15 @@ PROVIDE="virtual/commonlisp" MY_WORK=${S}/my_work pkg_setup() { - if gcc-config -c |grep hardened; then - while read line; do einfo "${line}"; done <<EOF + if use hardened && gcc-config -c |grep -qv vanilla; then + while read line; do einfo "${line}"; done <<'EOF' -So-called "hardened" compiler features are incompatible with SBCL. You must use -gcc-config to select a profile with non-hardened features and "source -/etc/profile" before continuing. +So-called "hardened" compiler features are incompatible with SBCL. You +must use gcc-config to select a profile with non-hardened features +(the "vanilla" profile) and "source /etc/profile" before continuing. EOF - die + die fi } @@ -97,12 +94,6 @@ src_unpack() { find ${S} -type f -name .cvsignore -exec rm -f '{}' \; find ${S} -depth -type d -name CVS -exec rm -rf '{}' \; find ${S} -type f -name \*.c -exec chmod 644 '{}' \; - - if use callbacks; then - einfo "You have specified the \"callbacks\" USE flag. Callbacks may only work for x86." - einfo "Please refer to README.Gentoo for more information." - unpack sbcl-af-${SBCL_AF_PV}.tgz - fi } src_compile() { @@ -171,19 +162,6 @@ src_install() { pkg_postinst() { standard-impl-postinst sbcl - if use callbacks; then - mv /usr/$(get_libdir)/sbcl/sbcl.core /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core || die - pushd ${WORKDIR}/sbcl-af - sbcl --core /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core \ - --load 'system' \ - --eval "(sb-ext:save-lisp-and-die \"/usr/$(get_libdir)/sbcl/sbcl.core\")" || die - popd - fi -# Image Summary -# ------------- -# /usr/$(get_libdir)/sbcl/sbcl-dist.core - Plain SBCL image -# /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core - CLC (Common Lisp Controller) image -# /usr/$(get_libdir)/sbcl/sbcl.core - CLC image w/ callbacks support } pkg_postrm() { diff --git a/dev-lisp/sbcl/sbcl-0.8.21.ebuild b/dev-lisp/sbcl/sbcl-0.8.21.ebuild deleted file mode 100644 index 0ee603615518..000000000000 --- a/dev-lisp/sbcl/sbcl-0.8.21.ebuild +++ /dev/null @@ -1,182 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.8.21.ebuild,v 1.1 2005/04/07 02:58:58 mkennedy Exp $ - -inherit common-lisp-common-2 eutils - -SBCL_AF_PV=2004-10-22 - -BV_X86=0.8.1 -BV_PPC=0.8.8 -BV_SPARC=0.7.13 -BV_MIPS=0.7.10 -BV_AMD64=0.8.19 - -DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp." -HOMEPAGE="http://sbcl.sourceforge.net/" -SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 - mirror://sourceforge/sbcl/${P}-html.tar.bz2 - x86? ( mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 ) - ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 ) - sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) - mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz ) - amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 ) - callbacks? ( http://pinhead.music.uiuc.edu/~hkt/sbcl-af-${SBCL_AF_PV}.tgz )" - -LICENSE="MIT" -SLOT="0" - -KEYWORDS="~x86 ~ppc ~sparc ~mips ~amd64" -IUSE="threads doc nosource unicode ldb callbacks" - -DEPEND="=dev-lisp/common-lisp-controller-4* - >=dev-lisp/cl-asdf-1.84 - sys-apps/texinfo - doc? ( virtual/tetex )" - -PROVIDE="virtual/commonlisp" - -pkg_setup() { - if use hardened; then - die 'So-called "hardened" USE features are incompatible with SBCL.' - fi -} - -src_unpack() { - if use x86; then - unpack ${PN}-${BV_X86}-x86-linux-binary.tar.bz2 - mv ${PN}-${BV_X86} x86-binary - elif use ppc; then - unpack ${PN}-${BV_PPC}-ppc-linux-binary.tar.bz2 - mv ${PN}-${BV_PPC}-ppc-linux ppc-binary - elif use sparc; then - unpack ${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 - echo mv ${PN}-${BV_SPARC} sparc-binary || die - mv ${PN}-${BV_SPARC} sparc-binary || die - elif use mips; then - unpack ${PN}-${BV_MIPS}-mips-linux-binary.tar.gz - mv ${PN}-${BV_MIPS}-mips-linux mips-binary - elif use amd64; then - unpack ${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 - mv ${PN}-${BV_AMD64}-x86-64-linux x86-64-binary - fi - - unpack ${P}-source.tar.bz2 - epatch ${FILESDIR}/${PV}/sbcl-gentoo.patch - epatch ${FILESDIR}/${PV}/sbcl-no-tests-gentoo.patch - - cp ${FILESDIR}/${PV}/customize-target-features.lisp-prefix \ - ${S}/customize-target-features.lisp - use x86 && use threads \ - && echo '(enable :sb-thread)' \ - >>${S}/customize-target-features.lisp - use ldb \ - && echo '(enable :sb-ldb)' \ - >>${S}/customize-target-features.lisp - use x86 \ - && echo '(enable :sb-futex)' \ - >>${S}/customize-target-features.lisp - echo '(disable :sb-test)' >>${S}/customize-target-features.lisp - ! use unicode \ - && echo '(disable :sb-unicode)' \ - >>${S}/customize-target-features.lisp - cat ${FILESDIR}/${PV}/customize-target-features.lisp-suffix \ - >>${S}/customize-target-features.lisp - find ${S} -type f -name .cvsignore -exec rm -f '{}' \; - find ${S} -depth -type d -name CVS -exec rm -rf '{}' \; - find ${S} -type f -name \*.c -exec chmod 644 '{}' \; - - if use callbacks; then - einfo "You have specified the \"callbacks\" USE flag. Callbacks may only work for x86." - einfo "Please refer to README.Gentoo for more information." - unpack sbcl-af-${SBCL_AF_PV}.tgz - fi -} - -src_compile() { - local bindir="" - - if use x86; then - bindir=../x86-binary - elif use ppc; then - bindir=../ppc-binary - elif use sparc; then - bindir=../sparc-binary - elif use mips; then - bindir=../mips-binary - elif use amd64; then - bindir=../x86-64-binary - fi - - PATH=${bindir}/src/runtime:${PATH} SBCL_HOME=${bindir}/output GNUMAKE=make \ - ./make.sh 'sbcl - --sysinit /dev/null - --userinit /dev/null - --no-debugger - --core ${bindir}/output/sbcl.core' \ - || die - cd ${S}/doc/manual - make info - use doc && make ps pdf -} - -src_install() { - unset SBCL_HOME - - insinto /etc/ - doins ${FILESDIR}/${PV}/sbclrc # Gentoo specific (from Debian) - - exeinto /usr/lib/common-lisp/bin - doexe ${FILESDIR}/${PV}/sbcl.sh # Gentoo specific (from Debian) - - dodir /usr/share/man - dodir /usr/share/doc/${PF} - INSTALL_ROOT=${D}/usr DOC_DIR=${D}/usr/share/doc/${PF} sh install.sh || die - mv ${D}/usr/lib/sbcl/sbcl.core ${D}/usr/lib/sbcl/sbcl-dist.core || die - - insinto /usr/lib/sbcl - doins ${FILESDIR}/${PV}/install-clc.lisp # Gentoo specific (from Debian) - - doman doc/sbcl-asdf-install.1 - - dodoc BUGS COPYING CREDITS INSTALL NEWS OPTIMIZATIONS PRINCIPLES README STYLE SUPPORT TLA TODO - dodoc ${FILESDIR}/${PV}/README.Gentoo - dohtml doc/html/* - - doinfo ${S}/doc/manual/*.info - use doc && dodoc ${S}/doc/manual/*.{pdf,ps} - - keepdir /usr/lib/common-lisp/sbcl - - if ! use nosource; then - # install the SBCL source - find ${S}/src -type f -name \*.fasl |xargs rm -f - mv ${S}/src ${D}/usr/lib/sbcl/ - fi - - impl-save-timestamp-hack sbcl || die -} - -pkg_postinst() { - standard-impl-postinst sbcl - if use callbacks; then - mv /usr/lib/sbcl/sbcl.core /usr/lib/sbcl/sbcl-nocallbacks.core || die - pushd ${WORKDIR}/sbcl-af - sbcl --core /usr/lib/sbcl/sbcl-nocallbacks.core \ - --load 'system' \ - --eval '(sb-ext:save-lisp-and-die "/usr/lib/sbcl/sbcl.core")' || die - popd - fi -# Image Summary -# ------------- -# /usr/lib/sbcl/sbcl-dist.core - Plain SBCL image -# /usr/lib/sbcl/sbcl-nocallbacks.core - CLC (Common Lisp Controller) image -# /usr/lib/sbcl/sbcl.core - CLC image w/ callbacks support -} - -pkg_postrm() { - standard-impl-postrm sbcl /usr/bin/sbcl - if [ ! -x /usr/bin/sbcl ]; then - rm -rf /usr/lib/sbcl/ || die - fi -} diff --git a/dev-lisp/sbcl/sbcl-0.9.0.ebuild b/dev-lisp/sbcl/sbcl-0.9.0.ebuild index c5aefec2e9aa..fcf40ae38f9e 100644 --- a/dev-lisp/sbcl/sbcl-0.9.0.ebuild +++ b/dev-lisp/sbcl/sbcl-0.9.0.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.9.0.ebuild,v 1.2 2005/05/21 19:34:12 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.9.0.ebuild,v 1.3 2005/06/01 03:24:45 mkennedy Exp $ inherit common-lisp-common-2 eutils -SBCL_AF_PV=2004-10-22 - BV_X86=0.8.1 BV_PPC=0.8.15 BV_SPARC=0.8.15 @@ -20,14 +18,12 @@ SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz ) - amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 ) - callbacks? ( http://pinhead.music.uiuc.edu/~hkt/sbcl-af-${SBCL_AF_PV}.tgz )" - + amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 )" LICENSE="MIT" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~mips ~amd64" -IUSE="threads doc nosource unicode ldb callbacks" +IUSE="threads doc nosource unicode ldb" DEPEND="=dev-lisp/common-lisp-controller-4* >=dev-lisp/cl-asdf-1.84 @@ -47,11 +43,8 @@ gcc-config to select a profile with non-hardened features and "source /etc/profile" before continuing. EOF - die + die fi - - # FIXME Maybe something should be done in the case where a user requests - # threads on a non-NPTL system } src_unpack() { @@ -98,12 +91,6 @@ src_unpack() { find ${S} -type f -name .cvsignore -exec rm -f '{}' \; find ${S} -depth -type d -name CVS -exec rm -rf '{}' \; find ${S} -type f -name \*.c -exec chmod 644 '{}' \; - - if use callbacks; then - einfo "You have specified the \"callbacks\" USE flag. Callbacks may only work for x86." - einfo "Please refer to README.Gentoo for more information." - unpack sbcl-af-${SBCL_AF_PV}.tgz - fi } src_compile() { @@ -172,19 +159,6 @@ src_install() { pkg_postinst() { standard-impl-postinst sbcl - if use callbacks; then - mv /usr/$(get_libdir)/sbcl/sbcl.core /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core || die - pushd ${WORKDIR}/sbcl-af - sbcl --core /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core \ - --load 'system' \ - --eval "(sb-ext:save-lisp-and-die \"/usr/$(get_libdir)/sbcl/sbcl.core\")" || die - popd - fi -# Image Summary -# ------------- -# /usr/$(get_libdir)/sbcl/sbcl-dist.core - Plain SBCL image -# /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core - CLC (Common Lisp Controller) image -# /usr/$(get_libdir)/sbcl/sbcl.core - CLC image w/ callbacks support } pkg_postrm() { diff --git a/dev-lisp/sbcl/sbcl-0.9.1.ebuild b/dev-lisp/sbcl/sbcl-0.9.1.ebuild index 4fdfd96edcf0..9c4da24f155e 100644 --- a/dev-lisp/sbcl/sbcl-0.9.1.ebuild +++ b/dev-lisp/sbcl/sbcl-0.9.1.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.9.1.ebuild,v 1.2 2005/05/30 08:29:31 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-0.9.1.ebuild,v 1.3 2005/06/01 03:24:45 mkennedy Exp $ inherit common-lisp-common-2 eutils -SBCL_AF_PV=2004-10-22 - BV_X86=0.8.1 BV_PPC=0.8.15 BV_SPARC=0.8.15 @@ -20,14 +18,13 @@ SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2 ppc? ( mirror://sourceforge/sbcl/${PN}-${BV_PPC}-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 ) mips? ( mirror://sourceforge/sbcl/${PN}-${BV_MIPS}-mips-linux-binary.tar.gz ) - amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 ) - callbacks? ( http://pinhead.music.uiuc.edu/~hkt/sbcl-af-${SBCL_AF_PV}.tgz )" + amd64? ( mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 )" LICENSE="MIT" SLOT="0" KEYWORDS="x86 ~ppc ~sparc ~mips ~amd64" -IUSE="threads doc nosource unicode ldb callbacks" +IUSE="threads doc nosource unicode ldb" DEPEND="=dev-lisp/common-lisp-controller-4* >=dev-lisp/cl-asdf-1.84 @@ -99,12 +96,6 @@ src_unpack() { find ${S} -type f -name .cvsignore -exec rm -f '{}' \; find ${S} -depth -type d -name CVS -exec rm -rf '{}' \; find ${S} -type f -name \*.c -exec chmod 644 '{}' \; - - if use callbacks; then - einfo "You have specified the \"callbacks\" USE flag. Callbacks may only work for x86." - einfo "Please refer to README.Gentoo for more information." - unpack sbcl-af-${SBCL_AF_PV}.tgz - fi } src_compile() { @@ -173,19 +164,6 @@ src_install() { pkg_postinst() { standard-impl-postinst sbcl - if use callbacks; then - mv /usr/$(get_libdir)/sbcl/sbcl.core /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core || die - pushd ${WORKDIR}/sbcl-af - sbcl --core /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core \ - --load 'system' \ - --eval "(sb-ext:save-lisp-and-die \"/usr/$(get_libdir)/sbcl/sbcl.core\")" || die - popd - fi -# Image Summary -# ------------- -# /usr/$(get_libdir)/sbcl/sbcl-dist.core - Plain SBCL image -# /usr/$(get_libdir)/sbcl/sbcl-nocallbacks.core - CLC (Common Lisp Controller) image -# /usr/$(get_libdir)/sbcl/sbcl.core - CLC image w/ callbacks support } pkg_postrm() { |