From ba5ec37e6cc2412ed24a2814710ab1ae5f0bc306 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 May 2026 02:32:17 +0000 Subject: [PATCH] chore: enrich ASDF system definitions with metadata Agent-Logs-Url: https://github.com/cl-sdk/cl-xml/sessions/669d71da-3243-4f31-8010-dd6f2922ab61 Co-authored-by: diasbruno <362368+diasbruno@users.noreply.github.com> --- cl-soap.asd | 7 ++++++- cl-soap.test.asd | 7 ++++++- cl-wsdl.asd | 7 ++++++- cl-wsdl.test.asd | 7 ++++++- cl-xml.asd | 9 ++++++++- cl-xml.test.asd | 7 ++++++- cl-xsd.asd | 7 ++++++- cl-xsd.test.asd | 7 ++++++- 8 files changed, 50 insertions(+), 8 deletions(-) diff --git a/cl-soap.asd b/cl-soap.asd index 9c0aef5..b6345b9 100644 --- a/cl-soap.asd +++ b/cl-soap.asd @@ -1,7 +1,12 @@ (defsystem #:cl-soap :description "SOAP 1.1/1.2 support for cl-xml." :version "0.1.0" - :license "MIT" + :author "Bruno Dias " + :maintainer "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml) :components ((:file "soap-package") (:file "soap" :depends-on ("soap-package")))) diff --git a/cl-soap.test.asd b/cl-soap.test.asd index 367f591..897e20c 100644 --- a/cl-soap.test.asd +++ b/cl-soap.test.asd @@ -1,6 +1,11 @@ (defsystem #:cl-soap.test :description "Tests for cl-soap." - :license "MIT" + :version "0.1.0" + :author "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml #:cl-soap #:fiveam) :components ((:module "t" :components diff --git a/cl-wsdl.asd b/cl-wsdl.asd index ad8ea25..284c841 100644 --- a/cl-wsdl.asd +++ b/cl-wsdl.asd @@ -1,7 +1,12 @@ (defsystem #:cl-wsdl :description "WSDL 2.0 support for cl-xml." :version "0.1.0" - :license "MIT" + :author "Bruno Dias " + :maintainer "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml) :components ((:file "wsdl-package") (:file "wsdl" :depends-on ("wsdl-package")))) diff --git a/cl-wsdl.test.asd b/cl-wsdl.test.asd index 62aed54..da3a91e 100644 --- a/cl-wsdl.test.asd +++ b/cl-wsdl.test.asd @@ -1,6 +1,11 @@ (defsystem #:cl-wsdl.test :description "Tests for cl-wsdl." - :license "MIT" + :version "0.1.0" + :author "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml #:cl-wsdl #:fiveam) :components ((:module "t" :components diff --git a/cl-xml.asd b/cl-xml.asd index f0a3183..e096d7f 100644 --- a/cl-xml.asd +++ b/cl-xml.asd @@ -1,7 +1,14 @@ (defsystem #:cl-xml :description "A Common Lisp XML reader, writer, and custom parser." + :long-description #.(uiop:read-file-string + (uiop:subpathname *load-pathname* "README.md")) :version "0.1.0" - :license "MIT" + :author "Bruno Dias " + :maintainer "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:trivial-gray-streams) :components ((:file "package") (:file "structures" :depends-on ("package")) diff --git a/cl-xml.test.asd b/cl-xml.test.asd index b356cd8..063b473 100644 --- a/cl-xml.test.asd +++ b/cl-xml.test.asd @@ -1,6 +1,11 @@ (defsystem #:cl-xml.test :description "Tests for cl-xml." - :license "MIT" + :version "0.1.0" + :author "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml #:fiveam #:trivial-gray-streams) :components ((:module "t" :components diff --git a/cl-xsd.asd b/cl-xsd.asd index fd050f6..8f1094e 100644 --- a/cl-xsd.asd +++ b/cl-xsd.asd @@ -1,7 +1,12 @@ (defsystem #:cl-xsd :description "XSD (XML Schema Definition) support for cl-xml." :version "0.1.0" - :license "MIT" + :author "Bruno Dias " + :maintainer "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml) :components ((:file "xsd-package") (:file "xsd" :depends-on ("xsd-package")))) diff --git a/cl-xsd.test.asd b/cl-xsd.test.asd index 937186e..957f96e 100644 --- a/cl-xsd.test.asd +++ b/cl-xsd.test.asd @@ -1,6 +1,11 @@ (defsystem #:cl-xsd.test :description "Tests for cl-xsd." - :license "MIT" + :version "0.1.0" + :author "Bruno Dias " + :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-xml" + :source-control (:git "https://github.com/cl-sdk/cl-xml") + :bug-tracker "https://github.com/cl-sdk/cl-xml/issues" :depends-on (#:cl-xml #:cl-xsd #:fiveam) :components ((:module "t" :components