From: Kevin M. Rosenberg Date: Mon, 31 Mar 2003 16:04:31 +0000 (+0000) Subject: r4300: Auto commit for Debian build X-Git-Tag: debian-2.11.0-2~173 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=fe08abdb44f449a2814aa1ffb0f8274c88e90e8c r4300: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 7b57f8b..94c60e7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-hyperobject (2.5.5-1) unstable; urgency=low + + * More SBCL 0.8pre MOP changes + + -- Kevin M. Rosenberg Mon, 31 Mar 2003 08:58:41 -0700 + cl-hyperobject (2.5.4-1) unstable; urgency=low * Use add-method where supported diff --git a/package.lisp b/package.lisp index dbc22cc..b91185c 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.37 2003/03/31 14:15:08 kevin Exp $ +;;;; $Id: package.lisp,v 1.38 2003/03/31 16:04:31 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -26,7 +26,10 @@ (defpackage #:hyperobject (:nicknames #:ho) - (:use #:common-lisp #:kmrcl #+kmr-sbcl-mop "SB-MOP") + (:use #:common-lisp #:kmrcl + #+kmr-sbcl-mop #:sb-mop + #+allegro #:mop + #+lispworks #:clos) (:export #:package #:hyperobject @@ -46,19 +49,13 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (shadowing-import #+allegro - '(mop::class-slots mop::slot-definition-name mop:finalize-inheritance - mop::standard-direct-slot-definition mop::standard-effective-slot-definition - mop:direct-slot-definition-class mop:compute-effective-slot-definition - excl::compute-effective-slot-definition-initargs - mop:slot-value-using-class - mop:class-prototype mop:generic-function-method-class mop:intern-eql-specializer - mop:make-method-lambda) + '(excl::compute-effective-slot-definition-initargs + ) #+lispworks - '(clos:class-slots clos::slot-definition-name clos:finalize-inheritance + '(clos:class-slots clos::slot-definition-name clos::standard-direct-slot-definition clos::standard-effective-slot-definition - clos:direct-slot-definition-class clos:compute-effective-slot-definition clos::compute-effective-slot-definition-initargs - clos:slot-value-using-class clos:make-method-lambda) + clos:make-method-lambda) #+kmr-sbcl-mop '(sb-pcl::compute-effective-slot-definition-initargs )