talexandria.asd - clic - Clic is an command line interactive client for gopher written in Common LISP
HTML git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR LICENSE
---
talexandria.asd (3087B)
---
1 (defsystem "alexandria"
2 :version "0.0.0"
3 :licence "Public Domain / 0-clause MIT"
4 :description "Alexandria is a collection of portable public domain utilities."
5 :author "Nikodemus Siivola <nikodemus@sb-studio.net>, and others."
6 :long-description
7 "Alexandria is a project and a library.
8
9 As a project Alexandria's goal is to reduce duplication of effort and improve
10 portability of Common Lisp code according to its own idiosyncratic and rather
11 conservative aesthetic. What this actually means is open to debate, but each
12 project member has a veto on all project activities, so a degree of
13 conservativism is inevitable.
14
15 As a library Alexandria is one of the means by which the project strives for
16 its goals.
17
18 Alexandria is a collection of portable public domain utilities that meet
19 the following constraints:
20
21 * Utilities, not extensions: Alexandria will not contain conceptual
22 extensions to Common Lisp, instead limiting itself to tools and utilities
23 that fit well within the framework of standard ANSI Common Lisp.
24 Test-frameworks, system definitions, logging facilities, serialization
25 layers, etc. are all outside the scope of Alexandria as a library, though
26 well within the scope of Alexandria as a project.
27
28 * Conservative: Alexandria limits itself to what project members consider
29 conservative utilities. Alexandria does not and will not include anaphoric
30 constructs, loop-like binding macros, etc.
31
32 * Portable: Alexandria limits itself to portable parts of Common Lisp. Even
33 apparently conservative and useful functions remain outside the scope of
34 Alexandria if they cannot be implemented portably. Portability is here
35 defined as portable within a conforming implementation: implementation bugs
36 are not considered portability issues.
37
38 * Team player: Alexandria will not (initially, at least) subsume or provide
39 functionality for which good-quality special-purpose packages exist, like
40 split-sequence. Instead, third party packages such as that may be
41 \"blessed\"."
42 :components
43 ((:static-file "LICENCE")
44 (:static-file "tests.lisp")
45 (:file "package")
46 (:file "definitions" :depends-on ("package"))
47 (:file "binding" :depends-on ("package"))
48 (:file "strings" :depends-on ("package"))
49 (:file "conditions" :depends-on ("package"))
50 (:file "io" :depends-on ("package" "macros" "lists" "types"))
51 (:file "macros" :depends-on ("package" "strings" "symbols"))
52 (:file "hash-tables" :depends-on ("package" "macros"))
53 (:file "control-flow" :depends-on ("package" "definitions" "macros"))
54 (:file "symbols" :depends-on ("package"))
55 (:file "functions" :depends-on ("package" "symbols" "macros"))
56 (:file "lists" :depends-on ("package" "functions"))
57 (:file "types" :depends-on ("package" "symbols" "lists"))
58 (:file "arrays" :depends-on ("package" "types"))
59 (:file "sequences" :depends-on ("package" "lists" "types"))
60 (:file "numbers" :depends-on ("package" "sequences"))
61 (:file "features" :depends-on ("package" "control-flow")))
62 :in-order-to ((test-op (test-op "alexandria-tests"))))