Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
alexandria
alexandria
Commits
9fabc172
Commit
9fabc172
authored
Nov 28, 2019
by
Philipp Marek
Browse files
Moved the source files into the "alexandria-1" directory.
parent
fab0e59c
Changes
20
Hide whitespace changes
Inline
Side-by-side
arrays.lisp
→
alexandria-1/
arrays.lisp
View file @
9fabc172
File moved
binding.lisp
→
alexandria-1/
binding.lisp
View file @
9fabc172
File moved
conditions.lisp
→
alexandria-1/
conditions.lisp
View file @
9fabc172
File moved
control-flow.lisp
→
alexandria-1/
control-flow.lisp
View file @
9fabc172
File moved
definitions.lisp
→
alexandria-1/
definitions.lisp
View file @
9fabc172
File moved
features.lisp
→
alexandria-1/
features.lisp
View file @
9fabc172
File moved
functions.lisp
→
alexandria-1/
functions.lisp
View file @
9fabc172
File moved
hash-tables.lisp
→
alexandria-1/
hash-tables.lisp
View file @
9fabc172
File moved
io.lisp
→
alexandria-1/
io.lisp
View file @
9fabc172
File moved
lists.lisp
→
alexandria-1/
lists.lisp
View file @
9fabc172
File moved
macros.lisp
→
alexandria-1/
macros.lisp
View file @
9fabc172
File moved
numbers.lisp
→
alexandria-1/
numbers.lisp
View file @
9fabc172
File moved
package.lisp
→
alexandria-1/
package.lisp
View file @
9fabc172
File moved
sequences.lisp
→
alexandria-1/
sequences.lisp
View file @
9fabc172
File moved
strings.lisp
→
alexandria-1/
strings.lisp
View file @
9fabc172
File moved
symbols.lisp
→
alexandria-1/
symbols.lisp
View file @
9fabc172
File moved
tests.lisp
→
alexandria-1/
tests.lisp
View file @
9fabc172
File moved
types.lisp
→
alexandria-1/
types.lisp
View file @
9fabc172
File moved
alexandria-tests.asd
View file @
9fabc172
...
...
@@ -3,7 +3,7 @@
:description
"Tests for Alexandria, which is a collection of portable public domain utilities."
:author
"Nikodemus Siivola <nikodemus@sb-studio.net>, and others."
:depends-on
(
:alexandria
#+
sbcl
:sb-rt
#-
sbcl
:rt
)
:components
((
:file
"tests"
))
:components
((
:file
"
alexandria-1/
tests"
))
:perform
(
test-op
(
o
c
)
(
flet
((
run-tests
(
&rest
args
)
(
apply
(
intern
(
string
'
#:run-tests
)
'
#:alexandria-tests
)
args
)))
...
...
alexandria.asd
View file @
9fabc172
...
...
@@ -41,22 +41,23 @@ the following constraints:
\"blessed\"."
:components
((
:static-file
"LICENCE"
)
(
:static-file
"tests.lisp"
)
(
:file
"package"
)
(
:file
"definitions"
:depends-on
(
"package"
))
(
:file
"binding"
:depends-on
(
"package"
))
(
:file
"strings"
:depends-on
(
"package"
))
(
:file
"conditions"
:depends-on
(
"package"
))
(
:file
"io"
:depends-on
(
"package"
"macros"
"lists"
"types"
))
(
:file
"macros"
:depends-on
(
"package"
"strings"
"symbols"
))
(
:file
"hash-tables"
:depends-on
(
"package"
"macros"
))
(
:file
"control-flow"
:depends-on
(
"package"
"definitions"
"macros"
))
(
:file
"symbols"
:depends-on
(
"package"
))
(
:file
"functions"
:depends-on
(
"package"
"symbols"
"macros"
))
(
:file
"lists"
:depends-on
(
"package"
"functions"
))
(
:file
"types"
:depends-on
(
"package"
"symbols"
"lists"
))
(
:file
"arrays"
:depends-on
(
"package"
"types"
))
(
:file
"sequences"
:depends-on
(
"package"
"lists"
"types"
))
(
:file
"numbers"
:depends-on
(
"package"
"sequences"
))
(
:file
"features"
:depends-on
(
"package"
"control-flow"
)))
(
:module
"alexandria-1"
:components
((
:static-file
"tests.lisp"
)
(
:file
"package"
)
(
:file
"definitions"
:depends-on
(
"package"
))
(
:file
"binding"
:depends-on
(
"package"
))
(
:file
"strings"
:depends-on
(
"package"
))
(
:file
"conditions"
:depends-on
(
"package"
))
(
:file
"io"
:depends-on
(
"package"
"macros"
"lists"
"types"
))
(
:file
"macros"
:depends-on
(
"package"
"strings"
"symbols"
))
(
:file
"hash-tables"
:depends-on
(
"package"
"macros"
))
(
:file
"control-flow"
:depends-on
(
"package"
"definitions"
"macros"
))
(
:file
"symbols"
:depends-on
(
"package"
))
(
:file
"functions"
:depends-on
(
"package"
"symbols"
"macros"
))
(
:file
"lists"
:depends-on
(
"package"
"functions"
))
(
:file
"types"
:depends-on
(
"package"
"symbols"
"lists"
))
(
:file
"arrays"
:depends-on
(
"package"
"types"
))
(
:file
"sequences"
:depends-on
(
"package"
"lists"
"types"
))
(
:file
"numbers"
:depends-on
(
"package"
"sequences"
))
(
:file
"features"
:depends-on
(
"package"
"control-flow"
)))))
:in-order-to
((
test-op
(
test-op
"alexandria-tests"
))))
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment