From 0e4e642e15d29d78bc35f0d0074c1edf0473d51d Mon Sep 17 00:00:00 2001 From: ellis Date: Sat, 3 May 2025 18:36:04 -0400 Subject: [PATCH] add system descriptions based on system definitions in hunchentoot (includes descriptions) - closes https://github.com/edicl/cl-interpol/issues/1 --- cl-interpol.asd | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cl-interpol.asd b/cl-interpol.asd index 4bebfe2..ef25b75 100644 --- a/cl-interpol.asd +++ b/cl-interpol.asd @@ -29,6 +29,11 @@ (defsystem "cl-interpol" :version "0.2.7" + :description "CL-INTERPOL is a library for Common Lisp which modifies + the reader so that you can have interpolation within strings similar + to Perl or Unix Shell scripts. It also provides various ways to insert + arbitrary characters into literal strings even if your editor/IDE + doesn't support them." :license "BSD-2-Clause" :serial t :depends-on ("cl-unicode" @@ -41,6 +46,7 @@ :in-order-to ((test-op (test-op "cl-interpol/test")))) (defsystem "cl-interpol/test" + :description "Self test functionality for the CL-INTERPOL library." :depends-on ("cl-interpol" "flexi-streams") :components ((:module "test"