aboutsummaryrefslogtreecommitdiffstats
path: root/wajir.asd
diff options
context:
space:
mode:
authorTeddy Wing2022-05-07 17:06:25 +0200
committerTeddy Wing2022-05-07 17:46:46 +0200
commita7dfdc052a931cc0cabfeb85151bcdad782f08c8 (patch)
treed6a7fad2ce4083d1a54fb69b14db25d7cb1cb90b /wajir.asd
parent2087b8e3072041918c812ecad89cdbf81b025afe (diff)
downloadwajir-a7dfdc052a931cc0cabfeb85151bcdad782f08c8.tar.bz2
Parse JSON from Jira response
Parse the Jira response into a hash that we can interact with. Needed to do some finagling to get my "lib" submodule directory to be searched for systems.
Diffstat (limited to 'wajir.asd')
-rw-r--r--wajir.asd27
1 files changed, 23 insertions, 4 deletions
diff --git a/wajir.asd b/wajir.asd
index 2ebed6e..f283ad1 100644
--- a/wajir.asd
+++ b/wajir.asd
@@ -1,6 +1,25 @@
-(asdf:defsystem wajir
+; (push
+; (merge-pathnames "lib/" (asdf:system-source-directory :wajir))
+; asdf:*central-registry*)
+
+(in-package :asdf-user)
+
+; (initialize-source-registry
+; '(:source-registry
+; (:tree (merge-pathnames "lib/" (system-source-directory :wajir)))
+; :inherit-configuration))
+
+(initialize-source-registry
+ `(:source-registry
+ (:tree ,(make-pathname :directory
+ (append
+ (pathname-directory *load-pathname*)
+ '("lib"))))
+ :inherit-configuration))
+
+(defsystem wajir
:version "0.0.1"
- :depends-on (:cl-smtp
+ :depends-on (:com.inuoe.jzon
:dexador)
:components ((:module "src"
:serial t
@@ -12,5 +31,5 @@
:entry-point "wajir")
#+sb-core-compression
-(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
- (uiop:dump-image (asdf:output-file o c) :executable t :compression t))
+(defmethod perform ((o image-op) (c system))
+ (uiop:dump-image (output-file o c) :executable t :compression t))