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
Jan Moringen
asdf
Commits
ad19421f
Commit
ad19421f
authored
13 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
b2e4cc43
3af9573a
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+5
-0
5 additions, 0 deletions
Makefile
asdf.asd
+1
-1
1 addition, 1 deletion
asdf.asd
asdf.lisp
+11
-7
11 additions, 7 deletions
asdf.lisp
test/script-support.lisp
+2
-2
2 additions, 2 deletions
test/script-support.lisp
with
19 additions
and
10 deletions
Makefile
+
5
−
0
View file @
ad19421f
...
...
@@ -4,7 +4,12 @@ webhome_public := "http://common-lisp.net/project/asdf/"
clnet_home
:=
"/project/asdf/public_html/"
sourceDirectory
:=
$(
shell
pwd
)
ifdef
ASDF_TEST_LISPS
lisps
?=
${
ASDF_TEST_LISPS
}
else
lisps
?=
ccl clisp sbcl ecl cmucl abcl scl allegro
endif
## MINOR FAIL: ecl-bytecodes (failure in test-compile-file-failure.script)
## MINOR FAIL: xcl (logical pathname issue in asdf-pathname-test.script)
## OCCASIONALLY TESTED BY NOT ME: allegromodern (not in my free demo version)
...
...
This diff is collapsed.
Click to expand it.
asdf.asd
+
1
−
1
View file @
ad19421f
...
...
@@ -14,7 +14,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.017.2
2
"
;; to be automatically updated by bin/bump-revision
:version
"2.017.2
4
"
;; to be automatically updated by bin/bump-revision
:depends-on
()
:components
((
:file
"asdf"
)
...
...
This diff is collapsed.
Click to expand it.
asdf.lisp
+
11
−
7
View file @
ad19421f
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.017.2
2
: Another System Definition Facility.
;;; This is ASDF 2.017.2
4
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
@@ -110,7 +110,7 @@
;; "2.345.6" would be a development version in the official upstream
;; "2.345.0.7" would be your seventh local modification of official release 2.345
;; "2.345.6.7" would be your seventh local modification of development version 2.345.6
(
asdf-version
"2.017.2
2
"
)
(
asdf-version
"2.017.2
4
"
)
(
existing-asdf
(
find-class
'component
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
@@ -2368,9 +2368,9 @@ recursive calls to traverse.")
(
*compile-file-failure-behaviour*
(
operation-on-failure
operation
)))
(
multiple-value-bind
(
output
warnings-p
failure-p
)
(
call-with-around-compile-hook
c
(
lambda
()
(
apply
*compile-op-compile-file-function*
source-file
:output-file
output-file
(
compile-op-flags
operation
))))
c
#'
(
lambda
()
(
apply
*compile-op-compile-file-function*
source-file
:output-file
output-file
(
compile-op-flags
operation
))))
(
unless
output
(
error
'compile-error
:component
c
:operation
operation
))
(
when
failure-p
...
...
@@ -2476,7 +2476,7 @@ recursive calls to traverse.")
(
declare
(
ignorable
o
))
(
let
((
source
(
component-pathname
c
)))
(
setf
(
component-property
c
'last-loaded-as-source
)
(
and
(
call-with-around-compile-hook
c
(
lambda
()
(
load
source
)))
(
and
(
call-with-around-compile-hook
c
#'
(
lambda
()
(
load
source
)))
(
get-universal-time
)))))
(
defmethod
perform
((
operation
load-source-op
)
(
c
static-file
))
...
...
@@ -3116,6 +3116,9 @@ located."
ccl::*openmcl-minor-version*
(
logand
ccl::fasl-version
#xFF
))
#+
cmu
(
substitute
#\-
#\/
s
)
#+
scl
(
format
nil
"~A~A"
s
;; ANSI upper case vs lower case.
(
ecase
ext:*case-mode*
(
:upper
""
)
(
:lower
"l"
)))
#+
ecl
(
format
nil
"~A~@[-~A~]"
s
(
let
((
vcs-id
(
ext:lisp-implementation-vcs-id
)))
(
subseq
vcs-id
0
(
min
(
length
vcs-id
)
8
))))
...
...
@@ -4017,7 +4020,8 @@ with a different configuration, so the configuration would be re-read then."
`
(
:source-registry
#+
sbcl
(
:tree
,
(
truenamize
(
getenv
"SBCL_HOME"
)))
:inherit-configuration
#+
cmu
(
:tree
#p"modules:"
)))
#+
cmu
(
:tree
#p"modules:"
)
#+
scl
(
:tree
#p"file://modules/"
)))
(
defun*
default-source-registry
()
(
flet
((
try
(
x
sub
)
(
try-directory-subpath
x
sub
)))
`
(
:source-registry
...
...
This diff is collapsed.
Click to expand it.
test/script-support.lisp
+
2
−
2
View file @
ad19421f
...
...
@@ -46,9 +46,9 @@
#-
sbcl
(
defun
native-namestring
(
x
)
(
let
*
((
p
(
pathname
x
)))
(
let
((
p
(
pathname
x
)))
#+
clozure
(
ccl:native-translated-namestring
p
)
#+
(
or
cmu
scl
)
(
ext:unix-namestring
p
)
#+
(
or
cmu
scl
)
(
ext:unix-namestring
p
nil
)
#+
sbcl
(
sb-ext:native-namestring
p
)
#-
(
or
clozure
cmu
sbcl
scl
)
(
namestring
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