diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2005-10-11 15:19:49 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2005-10-11 15:19:49 +0000 |
commit | d4d80a5b3e60b149db99b83c9b1f28c2600bd1d2 (patch) | |
tree | 435efdab2347db7a00c2e4949f8e7a0fa801c5a2 /dev-lisp/cl-store/files | |
parent | New release. (diff) | |
download | gentoo-2-d4d80a5b3e60b149db99b83c9b1f28c2600bd1d2.tar.gz gentoo-2-d4d80a5b3e60b149db99b83c9b1f28c2600bd1d2.tar.bz2 gentoo-2-d4d80a5b3e60b149db99b83c9b1f28c2600bd1d2.zip |
Initial port. Ebuild contributed by Matthew Kennedy <mkennedy@gentoo.org>.
(Portage version: 2.0.53_rc4)
Diffstat (limited to 'dev-lisp/cl-store/files')
-rw-r--r-- | dev-lisp/cl-store/files/0.6-custom.lisp-sbcl.patch | 21 | ||||
-rw-r--r-- | dev-lisp/cl-store/files/digest-cl-store-0.6 | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dev-lisp/cl-store/files/0.6-custom.lisp-sbcl.patch b/dev-lisp/cl-store/files/0.6-custom.lisp-sbcl.patch new file mode 100644 index 000000000000..e850abba1455 --- /dev/null +++ b/dev-lisp/cl-store/files/0.6-custom.lisp-sbcl.patch @@ -0,0 +1,21 @@ +=================================================================== +RCS file: /project/cl-store/cvsroot/cl-store/sbcl/custom.lisp,v +retrieving revision 1.8 +retrieving revision 1.10 +diff -u -r1.8 -r1.10 +--- cl-store/sbcl/custom.lisp 2005/05/05 12:58:57 1.8 ++++ cl-store/sbcl/custom.lisp 2005/10/04 08:14:02 1.10 +@@ -52,9 +52,10 @@ + (slot-value dd 'sb-kernel::name)) + + (defvar *sbcl-struct-inherits* +- (list (get-layout (find-class t)) +- (get-layout (find-class 'sb-kernel:instance)) +- (get-layout (find-class 'cl:structure-object)))) ++ `(,(get-layout (find-class t)) ++ ,@(when-let (class (find-class 'sb-kernel:instance nil)) ++ (list (get-layout class))) ++ ,(get-layout (find-class 'cl:structure-object)))) + + (defstruct (struct-def (:conc-name sdef-)) + (supers (required-arg :supers) :type list) diff --git a/dev-lisp/cl-store/files/digest-cl-store-0.6 b/dev-lisp/cl-store/files/digest-cl-store-0.6 new file mode 100644 index 000000000000..38e48df64843 --- /dev/null +++ b/dev-lisp/cl-store/files/digest-cl-store-0.6 @@ -0,0 +1 @@ +MD5 d143af0f1be7573e2ea49deb155fe7b7 cl-store_0.6.tgz 43882 |