From 0cf78714ce70dade1c6621948a6f3a4e73312819 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 May 2026 03:15:08 +0000 Subject: [PATCH] Add metadata to ASDF system definitions Agent-Logs-Url: https://github.com/cl-sdk/cl-openapi/sessions/b650cdc4-129c-4ee5-b00e-9e30d90435ca Co-authored-by: diasbruno <362368+diasbruno@users.noreply.github.com> --- io.github.cl-sdk.openapi.asd | 11 +++++++++++ io.github.cl-sdk.openapi.test.asd | 5 +++++ 2 files changed, 16 insertions(+) diff --git a/io.github.cl-sdk.openapi.asd b/io.github.cl-sdk.openapi.asd index 1cd4164..6d9248a 100644 --- a/io.github.cl-sdk.openapi.asd +++ b/io.github.cl-sdk.openapi.asd @@ -1,8 +1,19 @@ (asdf:defsystem #:io.github.cl-sdk.openapi :description "Open API Specification for Common Lisp." + :long-description #.(let ((readme (merge-pathnames "README.md" + (or *load-pathname* + *compile-file-pathname*)))) + (when (probe-file readme) + (uiop:read-file-string readme))) + :author "cl-sdk" + :maintainer "cl-sdk" :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-openapi" + :bug-tracker "https://github.com/cl-sdk/cl-openapi/issues" + :source-control (:git "https://github.com/cl-sdk/cl-openapi") :version "0.0.1" :depends-on (#:cl-json) + :in-order-to ((test-op (load-op #:cl-openapi.test))) :serial t :components ((:file "package") (:file "types") diff --git a/io.github.cl-sdk.openapi.test.asd b/io.github.cl-sdk.openapi.test.asd index 03c3e29..9e82292 100644 --- a/io.github.cl-sdk.openapi.test.asd +++ b/io.github.cl-sdk.openapi.test.asd @@ -1,6 +1,11 @@ (asdf:defsystem #:io.github.cl-sdk.openapi.test :description "FiveAM test suite for io.github.cl-sdk.openapi." + :author "cl-sdk" + :maintainer "cl-sdk" :license "Unlicense" + :homepage "https://github.com/cl-sdk/cl-openapi" + :bug-tracker "https://github.com/cl-sdk/cl-openapi/issues" + :source-control (:git "https://github.com/cl-sdk/cl-openapi") :version "0.0.1" :depends-on (#:fiveam #:io.github.cl-sdk.openapi)