-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabstock.asd
87 lines (78 loc) · 2.52 KB
/
abstock.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
(require "asdf")
(asdf:defsystem "abstock"
:version "0.11" ; duplicated in src/abstock.lisp
:author "vindarel"
:license "GPL3"
:depends-on (
;; use CIEL !
:bordeaux-threads
:swank
;; web client
:dexador
:mito
:str
:cl-slug
:local-time
:cl-cron
:function-cache
;; :local-time-duration
:cl-ppcre
:parse-float
:jonathan
:defclass-std
:pythonic-string-reader
:group-by
;; web app
:hunchentoot
:easy-routes
:djula
;; web scraping
:lquery ;; datasources/dilicom
;; scripting
:unix-opts
:cl-ansi-text
;; utils
:arrows
:serapeum
;; dev
:log4cl
:sentry-client.async ;; ! not in Quicklisp
:sentry-client.hunchentoot
;; :cl-i18n
;; others
:uuid ;; already in dependencies of dependencies.
)
:components ((:module "src/loaders"
:components
((:file "package")
(:file "conditions")
(:file "txt-loader")))
(:module "src/datasources"
:components
((:file "packages")
(:file "librairiedeparis")))
(:module "src"
:components
((:file "abstock")
(:file "pagination")
(:file "currencies")
(:file "utils")
(:file "user-content")
(:file "parameters")
(:file "web")
(:file "email")
(:file "selection")
(:file "api")
(:file "system-utils"))))
:build-operation "program-op"
:build-pathname "abstock"
:entry-point "abstock::main"
:description "Abelujo's DB as a simple website for clients."
;; :long-description
;; #.(read-file-string
;; (subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op "abstock-test"))))
;; smaller binaries.
#+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))