r9058: disable attrib-class
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 18 Apr 2004 17:18:57 +0000 (17:18 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 18 Apr 2004 17:18:57 +0000 (17:18 +0000)
attrib-class.lisp
debian/changelog
kmrcl.asd
tests.lisp

index 378bae0f6fb832cfde0376b0985d81b331287aa5..12572a290e458f671d0ee2553589abbf32687349 100644 (file)
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
+;; Disable attrib class until understand changes in sbcl/cmucl
+;; using COMPUTE-SLOT-ACCESSOR-INFO and defining method
+;; for slot access of ALL-ATTRIBUTES. Does this work on Allegro/LW?
+
 ;;;; Defines a metaclass that allows the use of attributes (or subslots)
 ;;;; on slots. Based on example in AMOP, but modified to use ACL's MOP.
 
index b36936b2c30423c8147ea429d661686ba3ee5e80..dcc944f9e637d4701726f762ac83f69c1b8d1e37 100644 (file)
@@ -1,3 +1,9 @@
+cl-kmrcl (1.67-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 18 Apr 2004 11:17:36 -0600
+
 cl-kmrcl (1.66-1) unstable; urgency=low
 
   * New upstream
index 13d7442b32244c28f74fbd498eccf6c09110b06c..7a2ff95a0f62ae341a01396e318cd5701fa48944 100644 (file)
--- a/kmrcl.asd
+++ b/kmrcl.asd
@@ -50,7 +50,7 @@
      (:file "math" :depends-on ("macros"))
      (:file "color" :depends-on ("macros"))
      #+kmr-mop (:file "mop" :depends-on ("macros"))
-     #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop"))
+     ;; #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop"))
      (:file "equal" :depends-on ("macros" #+kmr-mop "mop"))
      (:file "web-utils" :depends-on ("macros" "strings"))
      (:file "xml-utils" :depends-on ("macros"))
index 483fcf164b37008ebccc7f00d9f02daaeefafd5a..774f0134acf2b6297be1f33f1fc068f7d3c25652 100644 (file)
 
  ;;; MOP Testing
 
+;; Disable attrib class until understand changes in sbcl/cmucl
+;; using COMPUTE-SLOT-ACCESSOR-INFO and defining method
+;; for slot access of ALL-ATTRIBUTES. Does this work on Allegro/LW?
+
+#+ignore
+(progn
 (eval-when (:compile-toplevel :load-toplevel :execute)
   (when (find-package '#:kmr-mop)
     (pushnew :kmrtest-mop cl:*features*)))
 #+kmrtest-mop
 (eval-when (:compile-toplevel :load-toplevel :execute)
   (setq cl:*features* (delete :kmrtest-mop cl:*features*)))
+
+) ;; progn