forked from nixeagle/nisp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnisp.asd
102 lines (90 loc) · 3 KB
/
nisp.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
;; system definition file
(in-package :cl-user)
(defpackage #:nisp-safe-system
(:use :cl :asdf))
(in-package :nisp-safe-system)
#+old
(defsystem :nisp-safe
:version "0.0.12"
:author "James S <[email protected]>"
:maintainer "James S <[email protected]>"
:license "GPLv2 or later"
:depends-on (:lift
:hu.dwim.walker
:md5
:metabang-bind
:iterate)
:components
((:module "safe"
:serial t
:components
((:file "package")
(:file "nisp-introspect")
(:file "empty-package")
(:file "arithmetic")
(:file "readtable")
(:file "safe-package")
(:file "safe")
(:file "safe-tests")))))
(defpackage #:nisp-system
(:use :cl :asdf))
(in-package #:nisp-system)
(defsystem :nisp
:version "0.0.13"
:author "James S <[email protected]>"
:maintainer "James S <[email protected]>"
:license "GPLv2 or later"
:description "Nixeagle's random lisp experiments"
:depends-on (:cl-ppcre
:nisp.util
:cl-irc
:split-sequence
:iterate
:closer-mop
:alexandria
:trivial-timeout
:trivial-shell
:nisp.i
:nisp.www)
:serial t
:components
((:file "main-test-suite")
(:file "package")
(:file "nisp-asdf")
(:file "nisp-hello")
(:file "mop2")))
;; (defsystem :nispbot
;; :author "James S <[email protected]>"
;; :maintainer "James S <[email protected]>"
;; :license "GPLv2 or later"
;; :description "irc bot"
;; :depends-on (:lift
;; :cl-ppcre
;; :trivial-timeout
;; :nisp)
;; :serial t
;; :components
;; )
;; (defsystem #:nisp-dev-helper
;; :depends-on (:lift :nisp :nispbot :trivial-shell)
;; :components ((:file "nisp-dev-helper")))
;; :properties (((#:albert #:use-temporary-files) . nil)
;; ((#:albert #:output-dir) . "Docs-Nisp/")
;; ((#:albert #:formats) . ("html"))
;; ((#:albert #:docbook #:template) . "book")
;; ((#:albert #:html #:output-dir) . "HTMLDocs")
;; ((#:albert #:presentation #:funcallable #:calledby) t)
;; ; ((#:albert #:docbook #:cvs-viewurl) . "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/langband/langband/")
;; ; ((#:albert #:docbook #:cvs-tag) . "HEAD")
;; ; ((#:albert #:html #:cvs-viewurl) . "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/langband/langband/")
;; ; ((#:albert #:html #:cvs-tag) . "HEAD")
;; )
;; :properties ((#:author-email . "[email protected]")
;; (#:date . "Future")
;; ((#:albert #:output-dir) . "albert-docs/")
;; ((#:albert #:formats) . '("html"))
;; (("albert" "presentation" "class" "related-methods") . t)
;; ((#:albert #:docbook #:template) . "book")
;; ((#:albert #:docbook #:bgcolor) . "white")
;; ((#:albert #:docbook #:textcolor) . "black")
;; )