From: Kevin M. Rosenberg Date: Tue, 17 Jan 2006 21:33:52 +0000 (+0000) Subject: r10872: Automated commit for Debian build of lml2 upstream-version-1.5.5 X-Git-Tag: v2.5.5~12 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=e857c0c9ec3a2a1564300f0be3bc5aca88f2cd66 r10872: Automated commit for Debian build of lml2 upstream-version-1.5.5 --- diff --git a/2/ChangeLog b/2/ChangeLog index 0e99056..dc8a5ce 100644 --- a/2/ChangeLog +++ b/2/ChangeLog @@ -1,3 +1,7 @@ +2006-01-17 Kevin M. Rosenberg + * cl-lml2.asd: Apply modified patch from Gary King + so that asdf:test-op always performs test. + 2005-09-03 Kevin M. Rosenberg * files.lisp: Apply patch from Gary King to identify output files diff --git a/2/debian/changelog b/2/debian/changelog index ebb8760..141fb8d 100644 --- a/2/debian/changelog +++ b/2/debian/changelog @@ -1,3 +1,9 @@ +cl-lml2 (1.5.5-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Tue, 17 Jan 2006 14:32:39 -0700 + cl-lml2 (1.5.4-2) unstable; urgency=low * New upstream URI diff --git a/2/lml2-tests.asd b/2/lml2-tests.asd index 9d220ba..1a1a603 100644 --- a/2/lml2-tests.asd +++ b/2/lml2-tests.asd @@ -16,8 +16,8 @@ (defsystem lml2-tests :depends-on (:rt :lml2) - :components - ((:file "tests"))) + :in-order-to ((test-op (load-op lml2-tests))) + :components ((:file "tests"))) (defmethod perform ((o test-op) (c (eql (find-system 'lml2-tests)))) (or (funcall (intern (symbol-name '#:do-tests) diff --git a/2/lml2.asd b/2/lml2.asd index 9d95bde..af200b9 100644 --- a/2/lml2.asd +++ b/2/lml2.asd @@ -30,7 +30,7 @@ :long-description "LML2 provides creation of XHTML for Lisp programs." :depends-on (kmrcl) - + :components ((:file "package") (:file "data" :depends-on ("package")) @@ -47,3 +47,6 @@ (defmethod perform ((o test-op) (c (eql (find-system 'lml2)))) (operate 'load-op 'lml2-tests) (operate 'test-op 'lml2-tests)) + +(defmethod operation-done-p ((o test-op) (c (eql (find-system 'lml2-tests)))) + (values nil))