From 91bbdc276eb31051db87f70223ad6c2751a99efc Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Sat, 17 Mar 2018 14:12:55 +0100 Subject: [PATCH] Make system definitions ASDF3.3 compatible --- cl-ppcre-unicode.asd | 6 +++--- cl-ppcre.asd | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cl-ppcre-unicode.asd b/cl-ppcre-unicode.asd index 19fb827..b9ebf73 100644 --- a/cl-ppcre-unicode.asd +++ b/cl-ppcre-unicode.asd @@ -46,11 +46,11 @@ (:file "resolver")))) :depends-on (:cl-ppcre :cl-unicode)) -(defsystem :cl-ppcre-unicode-test +(defsystem :cl-ppcre-unicode/test :description "Perl-compatible regular expression library tests (Unicode)" :author "Dr. Edi Weitz" :license "BSD" - :depends-on (:cl-ppcre-unicode :cl-ppcre-test) + :depends-on (:cl-ppcre-unicode :cl-ppcre/test) :components ((:module "test" :serial t :components ((:file "unicode-tests"))))) @@ -59,6 +59,6 @@ ;; we must load CL-PPCRE explicitly so that the CL-PPCRE-TEST system ;; will be found (operate 'load-op :cl-ppcre) - (operate 'load-op :cl-ppcre-unicode-test) + (operate 'load-op :cl-ppcre-unicode/test) (funcall (intern (symbol-name :run-all-tests) (find-package :cl-ppcre-test)) :more-tests (intern (symbol-name :unicode-test) (find-package :cl-ppcre-test)))) diff --git a/cl-ppcre.asd b/cl-ppcre.asd index b1e3547..b2f5483 100644 --- a/cl-ppcre.asd +++ b/cl-ppcre.asd @@ -69,7 +69,7 @@ (:file "scanner") (:file "api"))) -(defsystem :cl-ppcre-test +(defsystem :cl-ppcre/test :description "Perl-compatible regular expression library tests" :author "Dr. Edi Weitz" :license "BSD" @@ -81,5 +81,5 @@ (:file "perl-tests"))))) (defmethod perform ((o test-op) (c (eql (find-system :cl-ppcre)))) - (operate 'load-op :cl-ppcre-test) + (operate 'load-op :cl-ppcre/test) (funcall (intern (symbol-name :run-all-tests) (find-package :cl-ppcre-test))))