Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal J. Bourguignon
asdf
Commits
0260a4cf
Commit
0260a4cf
authored
14 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
ssh://common-lisp.net/project/asdf/public_html/asdf
parents
b6cd33bc
c2b7fbaf
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
asdf.lisp
+10
-9
10 additions, 9 deletions
asdf.lisp
debian/changelog
+11
-0
11 additions, 0 deletions
debian/changelog
doc/index.html
+6
-0
6 additions, 0 deletions
doc/index.html
with
27 additions
and
9 deletions
asdf.lisp
+
10
−
9
View file @
0260a4cf
...
...
@@ -68,7 +68,7 @@
;;;; Create packages in a way that is compatible with hot-upgrade.
;;;; See https://bugs.launchpad.net/asdf/+bug/485687
;;;; See more
at
the end of the file.
;;;; See more
near
the end of the file.
(
eval-when
(
:load-toplevel
:compile-toplevel
:execute
)
(
defvar
*asdf-version*
nil
)
...
...
@@ -76,8 +76,9 @@
(
let*
(
;; For bug reporting sanity, please always bump this version when you modify this file.
;; "2.345" would be an official release
;; "2.345.6" would be a development version in the official upstream
;; "2.345.0.7" or "2.345.6.7" would be your local modification of one of the above.
(
asdf-version
"2.010.9"
)
;; "2.345.0.7" would be your local modification of an official release
;; "2.345.6.7" would be your local modification of a development version
(
asdf-version
"2.011"
)
(
existing-asdf
(
fboundp
'find-system
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
@@ -294,7 +295,7 @@
;; Utilities
#:absolute-pathname-p
;; #:aif #:it
;; #:aif #:it
;; #:appendf
#:coerce-name
#:directory-pathname-p
...
...
@@ -307,8 +308,8 @@
#:merge-pathnames*
#:pathname-directory-pathname
#:read-file-forms
;; #:remove-keys
;; #:remove-keyword
;; #:remove-keys
;; #:remove-keyword
#:resolve-symlinks
#:split-string
#:component-name-to-pathname-components
...
...
@@ -633,7 +634,7 @@ actually-existing directory."
(
defun*
get-uid
()
#+
allegro
(
excl.osi:getuid
)
#+
clisp
(
loop
:for
s
:in
'
(
"posix:uid"
"LINUX:getuid"
)
:for
f
=
(
ignore-errors
(
read-from-string
s
))
:for
f
=
(
ignore-errors
(
read-from-string
s
))
:when
f
:return
(
funcall
f
))
#+
(
or
cmu
scl
)
(
unix:unix-getuid
)
#+
ecl
#.
(
cl:if
(
cl:<
ext:+ecl-version-number+
100601
)
...
...
@@ -667,7 +668,7 @@ with given pathname and if it exists return its truename."
(
pathname
(
unless
(
wild-pathname-p
p
)
#.
(
or
#+
(
or
allegro
clozure
cmu
ecl
sbcl
scl
)
'
(
probe-file
p
)
#+
clisp
(
aif
(
find-symbol
(
string
'
#:probe-pathname
)
:ext
)
`
(
ignore-errors
(
,
it
p
)))
'
(
ignore-errors
(
truename
p
)))))))
'
(
ignore-errors
(
truename
p
)))))))
(
defun*
truenamize
(
p
)
"Resolve as much of a pathname as possible"
...
...
@@ -1333,7 +1334,7 @@ Going forward, we recommend new users should be using the source-registry.
(
let*
((
registered
(
cdr
(
gethash
fallback
*defined-systems*
)))
(
system
(
or
registered
(
apply
'make-instance
'system
:name
fallback
:source-file
source-file
keys
))))
:name
fallback
:source-file
source-file
keys
))))
(
unless
registered
(
register-system
fallback
system
))
(
throw
'find-system
system
))))
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
11
−
0
View file @
0260a4cf
cl-asdf (2:2.011-1) unstable; urgency=low
* Mostly same as 2.010.9: several minor tweaks and bug fixes since 2.010.
* Will be happier: users of implementations ACL, GCL; users of libraries
CL-Launch, XCVB; future former users of ASDF-Binary-Locations; people
with missing dependencies (in lieu of error-in-error); people extending
ASDF (notably Stelian Ionescu), who'd like to use keywords to name
component classes.
-- Francois-Rene Rideau <fare@tunes.org> Sun, 28 Nov 2010 13:21:34 -0500
cl-asdf (2:2.010-1) unstable; urgency=low
* same as 2.146
...
...
This diff is collapsed.
Click to expand it.
doc/index.html
+
6
−
0
View file @
0260a4cf
...
...
@@ -43,6 +43,12 @@
<p>
ASDF stands for
<em>
A
</em>
nother
<em>
S
</em>
ystem
<em>
D
</em>
efinition
<em>
F
</em>
acility,
in the continuity of the Lisp DEFSYSTEM of yore.
</p>
<a
id=
"what_it_is_not"
></a>
<h3>
What it is not
</h3>
<p>
ASDF will not download missing software components for you.
For that, you want
<a
href=
"http://quicklisp.org/"
>
quicklisp
</a>
.
(quicklisp builds upon ASDF.)
</p>
<a
id=
"documentation"
></a>
<h3>
Documentation
</h3>
<p>
You can read our manual:
</p>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment