-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathquicklisp-controller.asd
71 lines (68 loc) · 2.27 KB
/
quicklisp-controller.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
;;;; quicklisp-controller.asd
(asdf:defsystem #:quicklisp-controller
:description "Build Quicklisp dists."
:license "BSD"
:author "Zachary Beane <[email protected]>"
:depends-on (#:quicklisp
#:zs3
#:zcdb
#:cl-ppcre
#:alexandria
#:drakma
#:yason
#:function-cache
#:trivial-utf-8
#:ironclad
#:lparallel
#:cl-who
#:githappy
#:project-info
#:westbrook)
:serial t
:components ((:file "tarhash")
(:file "github-issues")
(:file "package")
(:file "config")
(:file "logical-host")
(:file "commands")
(:file "utils")
(:file "setup")
(:file "upstream")
(:file "system-file-magic-cache")
(:file "dist-cache")
(:file "upstream-vcs")
(:file "upstream-http")
(:file "upstream-file")
(:file "upstream-cvs")
(:file "upstream-darcs")
(:file "upstream-git")
(:file "upstream-github")
(:file "upstream-gitlab")
(:file "upstream-mercurial")
(:file "upstream-svn")
(:file "upstream-bzr")
(:file "upstream-misc")
(:file "mail")
(:file "indexes")
(:file "misc")
(:file "client-uploader")
(:file "fail-dwim")
(:file "map-systems")
(:file "update-client-version")
(:file "descriptions")
(:file "ng-indexes")
(:file "git")
(:file "html-failure-report")
(:file "rss-failure-feeds")
(:file "recrank")
(:file "irepl")
(:file "submit-bug-report")))
(defpackage #:quicklisp-controller-config
(:use)
(:export #:*base-directory*))
(defvar quicklisp-controller-config:*base-directory*
(make-pathname :name nil
:type nil
:version nil
:defaults (or *load-truename*
*compile-file-truename*)))