-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.lisp
33 lines (31 loc) · 1.12 KB
/
package.lisp
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
;;;; package.lisp
(defpackage #:quicklisp-controller
(:use #:cl
#:westbrook)
(:export #:setup-directories)
(:shadowing-import-from #:sb-ext
#:run-program
#:process-exit-code
#:process-output
#:process-close)
(:shadowing-import-from #:sb-ext
#:native-namestring)
(:shadowing-import-from #:sb-posix
#:chdir)
(:shadowing-import-from #:ql-gunzipper
#:gunzip)
(:shadowing-import-from #:ql-http
#:fetch)
(:shadowing-import-from #:quicklisp-tarhash
#:content-hash)
(:shadowing-import-from #:alexandria
#:when-let)
(:shadowing-import-from #:ql-dist
#:provided-systems
#:required-systems
#:provided-releases
#:system-file-name
#:name
#:dist
#:release))
(in-package #:quicklisp-controller)