aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-03 18:15:15 -0600
committerColin Okay <okay@toyful.space>2022-02-03 18:15:15 -0600
commit9a3b7ede7774a831f1669a3358322118c7348951 (patch)
tree0072e04d46fc45fc62319be3699f7a7750633933
parentd31778958e35c08d91fef19caa1d7acf986100c5 (diff)
explicitly depending on cl-ppcre
-rw-r--r--clpmfile.lock1
-rw-r--r--lazybones.asd2
-rw-r--r--package.lisp2
3 files changed, 3 insertions, 2 deletions
diff --git a/clpmfile.lock b/clpmfile.lock
index 4baaf5d..d63a8e6 100644
--- a/clpmfile.lock
+++ b/clpmfile.lock
@@ -96,6 +96,7 @@
("cl-ppcre" ((:system :name "str") (:system :name "cl-ppcre"))
((:system :name "str") (:system :name "cl-ppcre-unicode"))
+ ((:system :name "lazybones") (:system :name "cl-ppcre"))
((:system :name "hunchentoot") (:system :name "cl-ppcre"))
((:system :name "cl-unicode") (:system :name "cl-ppcre"))
((:system :name "cl-ppcre-unicode") (:system :name "cl-ppcre"))
diff --git a/lazybones.asd b/lazybones.asd
index 389dafd..3be3d94 100644
--- a/lazybones.asd
+++ b/lazybones.asd
@@ -6,6 +6,6 @@
:license "AGPLv3"
:version "0.2.0"
:serial t
- :depends-on (#:hunchentoot #:alexandria #:str)
+ :depends-on (#:hunchentoot #:alexandria #:str #:cl-ppcre)
:components ((:file "package")
(:file "lazybones")))
diff --git a/package.lisp b/package.lisp
index 3dd7595..343192d 100644
--- a/package.lisp
+++ b/package.lisp
@@ -3,7 +3,7 @@
(defpackage #:lazybones
(:use #:cl)
(:local-nicknames (#:a #:alexandria)
- (#:re #:cl-ppcre-asd )))
+ (#:re #:cl-ppcre)))
;; (defpackage #:lazybones.decoders
;; (:use #:cl)