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
38490d2c
Commit
38490d2c
authored
15 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
1.654: normalize directories earlier. Makes for nicer code for XCVB.
parent
f3c080cc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
asdf.lisp
+17
-20
17 additions, 20 deletions
asdf.lisp
with
17 additions
and
20 deletions
asdf.lisp
+
17
−
20
View file @
38490d2c
...
@@ -262,7 +262,7 @@
...
@@ -262,7 +262,7 @@
;; This parameter isn't actually user-visible
;; This parameter isn't actually user-visible
;; -- please use the exported function ASDF:ASDF-VERSION below.
;; -- please use the exported function ASDF:ASDF-VERSION below.
;; the 1+ hair is to ensure that we don't do an inadvertent find and replace
;; the 1+ hair is to ensure that we don't do an inadvertent find and replace
(
subseq
"VERSION:1.65
3
"
(
1+
(
length
"VERSION"
))))
(
subseq
"VERSION:1.65
4
"
(
1+
(
length
"VERSION"
))))
(
defun
asdf-version
()
(
defun
asdf-version
()
"Exported interface to the version of ASDF currently installed. A string.
"Exported interface to the version of ASDF currently installed. A string.
...
@@ -297,8 +297,6 @@ Defaults to `t`.")
...
@@ -297,8 +297,6 @@ Defaults to `t`.")
;;;; Cleanups before hot-upgrade.
;;;; Cleanups before hot-upgrade.
;;;; Things to do in case we're upgrading from a previous version of ASDF.
;;;; Things to do in case we're upgrading from a previous version of ASDF.
;;;; See https://bugs.launchpad.net/asdf/+bug/485687
;;;; See https://bugs.launchpad.net/asdf/+bug/485687
;;;; * fmakunbound functions that once (in previous version of ASDF)
;;;; were simple DEFUNs but now are generic functions.
;;;; * define methods on UPDATE-INSTANCE-FOR-REDEFINED-CLASS
;;;; * define methods on UPDATE-INSTANCE-FOR-REDEFINED-CLASS
;;;; for each of the classes we define that has changed incompatibly.
;;;; for each of the classes we define that has changed incompatibly.
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
...
@@ -2634,7 +2632,7 @@ return the configuration"
...
@@ -2634,7 +2632,7 @@ return the configuration"
;;;; -----------------------------------------------------------------
;;;; -----------------------------------------------------------------
;;;; Source Registry Configuration, by Francois-Rene Rideau
;;;; Source Registry Configuration, by Francois-Rene Rideau
;;;; See
README.source-registry
and https://bugs.launchpad.net/asdf/+bug/485918
;;;; See
the Manual
and https://bugs.launchpad.net/asdf/+bug/485918
;; Using ack 1.2 exclusions
;; Using ack 1.2 exclusions
(
defvar
*default-exclusions*
(
defvar
*default-exclusions*
...
@@ -2745,20 +2743,19 @@ with a different configuration, so the configuration would be re-read then."
...
@@ -2745,20 +2743,19 @@ with a different configuration, so the configuration would be re-read then."
(
return
`
(
:source-registry
,@
(
nreverse
directives
)))))))))
(
return
`
(
:source-registry
,@
(
nreverse
directives
)))))))))
(
defun
register-asd-directory
(
directory
&key
recurse
exclude
collect
)
(
defun
register-asd-directory
(
directory
&key
recurse
exclude
collect
)
(
let
((
directory
(
ensure-directory-pathname
directory
)))
(
if
(
not
recurse
)
(
if
(
not
recurse
)
(
funcall
collect
directory
)
(
funcall
collect
directory
)
(
let*
((
files
(
ignore-errors
(
let*
((
files
(
ignore-errors
(
directory
(
merge-pathnames*
*wild-asd*
directory
)
(
directory
(
merge-pathnames*
*wild-asd*
directory
)
#+
sbcl
#+
sbcl
:resolve-symlinks
nil
#+
sbcl
#+
sbcl
:resolve-symlinks
nil
#+
clisp
#+
clisp
:circle
t
)))
#+
clisp
#+
clisp
:circle
t
)))
(
dirs
(
remove-duplicates
(
mapcar
#'
pathname-directory-pathname
files
)
(
dirs
(
remove-duplicates
(
mapcar
#'
pathname-directory-pathname
files
)
:test
#'
equal
:from-end
t
)))
:test
#'
equal
:from-end
t
)))
(
loop
(
loop
:for
dir
:in
dirs
:for
dir
:in
dirs
:unless
(
loop
:for
x
:in
exclude
:unless
(
loop
:for
x
:in
exclude
:thereis
(
find
x
(
pathname-directory
dir
)
:test
#'
equal
))
:thereis
(
find
x
(
pathname-directory
dir
)
:test
#'
equal
))
:do
(
funcall
collect
dir
)))))
:do
(
funcall
collect
dir
))))))
(
defparameter
*default-source-registries*
(
defparameter
*default-source-registries*
'
(
environment-source-registry
'
(
environment-source-registry
...
@@ -2850,11 +2847,11 @@ with a different configuration, so the configuration would be re-read then."
...
@@ -2850,11 +2847,11 @@ with a different configuration, so the configuration would be re-read then."
((
:directory
)
((
:directory
)
(
destructuring-bind
(
pathname
)
rest
(
destructuring-bind
(
pathname
)
rest
(
when
pathname
(
when
pathname
(
funcall
register
(
pathname
pathname
)))))
(
funcall
register
(
ensure-directory-
pathname
pathname
)))))
((
:tree
)
((
:tree
)
(
destructuring-bind
(
pathname
)
rest
(
destructuring-bind
(
pathname
)
rest
(
when
pathname
(
when
pathname
(
funcall
register
(
pathname
pathname
)
:recurse
t
:exclude
*default-exclusions*
))))
(
funcall
register
(
ensure-directory-
pathname
pathname
)
:recurse
t
:exclude
*default-exclusions*
))))
((
:exclude
)
((
:exclude
)
(
setf
*default-exclusions*
rest
))
(
setf
*default-exclusions*
rest
))
((
:default-registry
)
((
:default-registry
)
...
...
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