-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.lisp
More file actions
21 lines (20 loc) · 775 Bytes
/
package.lisp
File metadata and controls
21 lines (20 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defpackage #:quickdist-reader
(:use #:cl)
(:shadowing-import-from #:com.informatimago.common-lisp.lisp-reader.reader
#:*readtable* #:copy-readtable
#:set-dispatch-macro-character
#:read
#:symbol-in-missing-package-error #:intern-here
#:symbol-missing-in-package-error #:make-symbol)
(:export #:safe-read))
(defpackage #:quickdist
(:use #:cl #:alexandria)
(:import-from #:quicklisp
#:file-size)
(:export #:quickdist
#:*distinfo-template*
#:*distinfo-file-template*
#:*dist-dir-template*
#:*archive-dir-template*
#:*archive-url-template*
#:*gnutar*))