X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=hyperobject.asd;h=4ba98e77267b32d749ecb83e5f4de0d0f0b0cb8e;hb=7b3ca1025e0b572b6511c044e948aeab2147af45;hp=3c47f1687768688683c66892321dabefae02cb6c;hpb=f45b5a177039ec999d3fd43ddf2f7bad8e8e4fd3;p=hyperobject.git diff --git a/hyperobject.asd b/hyperobject.asd index 3c47f16..4ba98e7 100644 --- a/hyperobject.asd +++ b/hyperobject.asd @@ -4,21 +4,21 @@ ;;;; ;;;; Name: hyperobject.asd ;;;; Purpose: ASDF system definition for hyperobject package -;;;; Programmer: Kevin M. Rosenberg +;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: hyperobject.asd,v 1.21 2003/04/28 16:07:11 kevin Exp $ -;;;; -;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg +;;;; $Id: hyperobject.asd,v 1.22 2003/04/28 19:06:13 kevin Exp $ ;;;; ************************************************************************* -(in-package :asdf) +(defpackage hyperobject-system + (:use #:asdf #:cl)) +(in-package :hyperobject-system) #+(or allegro lispworks sbcl cmu scl) (defsystem hyperobject - :name "cl-hyperobject" + :name "hyperobject" :author "Kevin M. Rosenberg " - :version "2.6.x" + :version "2.7.x" :maintainer "Kevin M. Rosenberg " :licence "BSD-like License" @@ -35,15 +35,9 @@ ) :depends-on (:kmrcl :clsql)) +#+(or allegro lispworks sbcl cmu scl) (defmethod perform ((o test-op) (c (eql (find-system :hyperobject)))) (oos 'load-op 'hyperobject-tests) (oos 'test-op 'hyperobject-tests)) -(defsystem hyperobject-tests - :depends-on (rt) - :components ((:file "tests"))) -(defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl-tests)))) - (or (funcall (intern (symbol-name '#:do-tests) - (find-package '#:sb))) - (error "test-op failed")))