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
asdf
asdf
Commits
76f2f42a
Commit
76f2f42a
authored
Feb 23, 2013
by
Francois-Rene Rideau
Browse files
2.30.7: get ready to build SBCL contribs the ASDF3 way.
parent
b9376714
Changes
11
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
76f2f42a
...
...
@@ -200,3 +200,7 @@ release: TODO test-all test-on-other-machines-too debian-changelog debian-packag
# dput mentors ../*.changes
# send debian mentors request
# send announcement to asdf-announce, asdf-devel, etc.
#
## Users don't release as above, only maintainers do.
## Users, all you need to do is: make
## Vendors, you may want to test your implementation with: make test l=sbcl
asdf.asd
View file @
76f2f42a
...
...
@@ -74,7 +74,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.30.
6
"
;; to be automatically updated by make bump-version
:version
"2.30.
7
"
;; to be automatically updated by make bump-version
:depends-on
()
#+
asdf3
:encoding
#+
asdf3
:utf-8
;; For most purposes, asdf itself specially counts as a builtin system.
...
...
bin/prelude.lisp
View file @
76f2f42a
...
...
@@ -8,6 +8,7 @@
(
or
(
symbol-value
(
or
(
find-symbol
(
string
:*asdf-version*
)
:asdf
)
(
find-symbol
(
string
:*asdf-revision*
)
:asdf
)))
(
string
:1.x
))))
#-
asdf2
(
load
(
merge-pathnames
"../build/asdf.lisp"
*load-pathname*
))
#-
asdf2
(
error
"Not ASDF2, you lose!"
)
(
in-package
:asdf
)
...
...
bundle.lisp
View file @
76f2f42a
...
...
@@ -143,7 +143,7 @@
(
unless
name-suffix-p
(
setf
(
slot-value
instance
'name-suffix
)
(
unless
(
typep
instance
'program-op
)
(
if
(
operation-monolithic-p
instance
)
"
.
all-systems"
#-
ecl
"
.
system"
))))
(
if
(
operation-monolithic-p
instance
)
"
--
all-systems"
#-
ecl
"
--
system"
))))
; . no good for Logical Pathnames
(
when
(
typep
instance
'monolithic-bundle-op
)
(
destructuring-bind
(
&rest
original-initargs
&key
lisp-files
prologue-code
epilogue-code
...
...
defsystem.lisp
View file @
76f2f42a
...
...
@@ -127,7 +127,7 @@
;; remove-plist-keys form. important to keep them in sync
components
pathname
perform
explain
output-files
operation-done-p
weakly-depends-on
depends-on
serial
do-first
if-component-dep-fails
(
version
nil
versionp
)
do-first
if-component-dep-fails
version
;; list ends
&allow-other-keys
)
options
(
declare
(
ignorable
perform
explain
output-files
operation-done-p
builtin-system-p
))
...
...
find-system.lisp
View file @
76f2f42a
...
...
@@ -238,7 +238,9 @@ Going forward, we recommend new users should be using the source-registry.
(
let
((
name
(
coerce-name
requested
)))
(
multiple-value-bind
(
keys
foundp
)
(
gethash
name
*preloaded-systems*
)
(
when
foundp
(
apply
'make-instance
'system
:name
name
:source-file
(
getf
keys
:source-file
)
keys
)))))
(
apply
'make-instance
(
getf
keys
:class
'system
)
:name
name
:source-file
(
getf
keys
:source-file
)
(
remove-plist-keys
'
(
:class
:name
:source-file
)
keys
))))))
(
defun
register-preloaded-system
(
system-name
&rest
keys
)
(
setf
(
gethash
(
coerce-name
system-name
)
*preloaded-systems*
)
keys
))
...
...
footer.lisp
View file @
76f2f42a
...
...
@@ -57,6 +57,3 @@
(
asdf-message
";; ASDF, version ~a~%"
(
asdf-version
)))
;;; Local Variables:
;;; mode: lisp
;;; End:
header.lisp
View file @
76f2f42a
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.30.
6
: Another System Definition Facility.
;;; This is ASDF 2.30.
7
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
lisp-action.lisp
View file @
76f2f42a
...
...
@@ -256,3 +256,4 @@
(
declare
(
ignorable
o
))
`
((
load-op
,
c
)
,@
(
call-next-method
))))
upgrade.lisp
View file @
76f2f42a
...
...
@@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO
;; "3.4.5.67" would be a development version in the official upstream of 3.4.5.
;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5
;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67
(
asdf-version
"2.30.
6
"
)
(
asdf-version
"2.30.
7
"
)
(
existing-version
(
asdf-version
)))
(
setf
*asdf-version*
asdf-version
)
(
when
(
and
existing-version
(
not
(
equal
asdf-version
existing-version
)))
...
...
version.lisp-expr
View file @
76f2f42a
"2.30.
6
"
"2.30.
7
"
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