From ee06e1e80d8afcb1c199b8beb4a753840fdac2ce Mon Sep 17 00:00:00 2001 From: Jaidyn Ann <10477760+JadedCtrl@users.noreply.github.com> Date: Mon, 10 Jun 2024 19:28:18 -0500 Subject: [PATCH] Tweak system definitions --- activitypub-servist.asd | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/activitypub-servist.asd b/activitypub-servist.asd index 68e2d5d..d5e3668 100644 --- a/activitypub-servist.asd +++ b/activitypub-servist.asd @@ -1,9 +1,25 @@ -(defsystem "activitypub-servist" - :depends-on ("activitypub-servist/signatures" - "alexandria" "clack" "dexador" - "local-time" "purl" "str" "webtentacle" "yason") - :components ((:file "src/activitypub-servist"))) +(require "asdf") -(defsystem "activitypub-servist/signatures" - :depends-on ("cl-base64" "inferior-shell" "ironclad" "str") - :components ((:file "src/signatures"))) + +(asdf:defsystem "activitypub-servist" + :version "0.0" + :license "AGPLv3" + :description "ActitivyPub federated server framework." + :author "Jaidyn Ann " + :homepage "https://hak.xwx.moe/jadedctrl/activitypub-servist" + + :depends-on ("activitypub-servist/signatures" + "alexandria" "clack" "dexador" + "local-time" "purl" "str" "webtentacle" "yason") + :components ((:file "src/activitypub-servist"))) + + +(asdf:defsystem "activitypub-servist/signatures" + :version "0.0" + :license "AGPLv3" + :description "AP-S subpackage for handling HTTP signatures." + :author "Jaidyn Ann " + :homepage "https://hak.xwx.moe/jadedctrl/activitypub-servist" + + :depends-on ("cl-base64" "inferior-shell" "ironclad" "str") + :components ((:file "src/signatures")))