summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Huebner <hans.huebner@gmail.com>2015-05-28 07:33:49 +0200
committerHans Huebner <hans.huebner@gmail.com>2015-05-28 07:33:49 +0200
commit82b48a46edb3c14f093ba0bc037fff960cd27273 (patch)
treeb5e52448d52af696e97248aa7e43e97dd7254884
parentafe67e92772bd0220d63efa2670930eb3ea400dd (diff)
Add :author/:license/:description fields to .asd files
Closes #24
-rw-r--r--cl-ppcre-unicode.asd8
-rw-r--r--cl-ppcre.asd5
2 files changed, 12 insertions, 1 deletions
diff --git a/cl-ppcre-unicode.asd b/cl-ppcre-unicode.asd
index 0fcadc4..19fb827 100644
--- a/cl-ppcre-unicode.asd
+++ b/cl-ppcre-unicode.asd
@@ -37,6 +37,9 @@
(in-package :cl-ppcre-unicode-asd)
(defsystem :cl-ppcre-unicode
+ :description "Perl-compatible regular expression library (Unicode)"
+ :author "Dr. Edi Weitz"
+ :license "BSD"
:components ((:module "cl-ppcre-unicode"
:serial t
:components ((:file "packages")
@@ -44,6 +47,9 @@
:depends-on (:cl-ppcre :cl-unicode))
(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)
:components ((:module "test"
:serial t
@@ -55,4 +61,4 @@
(operate 'load-op :cl-ppcre)
(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)))) \ No newline at end of file
+ :more-tests (intern (symbol-name :unicode-test) (find-package :cl-ppcre-test))))
diff --git a/cl-ppcre.asd b/cl-ppcre.asd
index 7c90557..8e12ec7 100644
--- a/cl-ppcre.asd
+++ b/cl-ppcre.asd
@@ -39,6 +39,8 @@
(defsystem :cl-ppcre
:version "2.0.9"
:description "Perl-compatible regular expression library"
+ :author "Dr. Edi Weitz"
+ :license "BSD"
:serial t
:components ((:file "packages")
(:file "specials")
@@ -68,6 +70,9 @@
(:file "api")))
(defsystem :cl-ppcre-test
+ :description "Perl-compatible regular expression library tests"
+ :author "Dr. Edi Weitz"
+ :license "BSD"
:depends-on (:cl-ppcre :flexi-streams)
:components ((:module "test"
:serial t