X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph.asd;h=13b3e114624ce3f1b459ac190e6960ad4c9847bb;hb=ab8f73e171400db205508617907da24c71eb9d10;hp=6ef0b94d72b5fcfe2c850d682b47c0d37af760c5;hpb=25d9c9819ce0bb610c024c3ef760660e76653c21;p=cl-graph.git diff --git a/cl-graph.asd b/cl-graph.asd index 6ef0b94..13b3e11 100644 --- a/cl-graph.asd +++ b/cl-graph.asd @@ -1,28 +1,25 @@ ;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*- (in-package #:common-lisp-user) -(defpackage #:asdf-cl-graph (:use #:cl #:asdf)) -(in-package #:asdf-cl-graph) +(defpackage #:cl-graph-system (:use #:cl #:asdf)) +(in-package #:cl-graph-system) (unless (find-system 'asdf-system-connections nil) - (when (find-package 'asdf-install) - (print "Trying to install asdf-system-connections with ASDF-Install...") - (funcall (intern (symbol-name :install) :asdf-install) 'asdf-system-connections))) -;; give up with a useful (?) error message -(unless (find-system 'asdf-system-connections nil) - (error "The CL-Graph system requires ASDF-SYSTEM-CONNECTIONS. See + (warn "The CL-Graph system would enjoy having asdf-system-connections +around. See http://www.cliki.net/asdf-system-connections for details and download instructions.")) - -(asdf:operate 'asdf:load-op 'asdf-system-connections) +(when (find-system 'asdf-system-connections nil) + (operate 'load-op 'asdf-system-connections)) (defsystem cl-graph - :version "0.8.1" + :version "0.8.4" :author "Gary Warren King " :maintainer "Gary Warren King " :licence "MIT Style License" :description "Graph manipulation utilities for Common Lisp" - :components ((:module + :components ((:static-file "COPYING") + (:module "dev" :components ((:file "package") @@ -50,17 +47,17 @@ instructions.")) :components ((:module "source" :components ((:static-file "index.lml")))))) - :in-order-to ((test-op (load-op cl-graph-test))) + :in-order-to ((test-op (load-op :cl-graph-test))) :perform (test-op :after (op c) - (describe - (funcall (intern (symbol-name '#:run-tests) :lift) - :suite '#:cl-graph-test))) - :depends-on (metatilities - cl-containers - metabang-bind - cl-mathstats + (funcall + (intern (symbol-name '#:run-tests) :lift) + :config :generic)) + :depends-on (:metatilities + :cl-containers + :metabang-bind + :cl-mathstats ;; makes ASDF-Install get this automatically - asdf-system-connections + :asdf-system-connections )) (defmethod operation-done-p