Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Hugo Ishimaru
asdf
Commits
201861e2
Commit
201861e2
authored
Jan 24, 2013
by
Francois-Rene Rideau
Browse files
2.26.144: fix inline-methods. Add test.
parent
6bb7b778
Changes
6
Hide whitespace changes
Inline
Side-by-side
asdf.asd
View file @
201861e2
...
...
@@ -40,7 +40,7 @@
(
:file
"operate"
:depends-on
(
"plan"
))
(
:file
"output-translations"
:depends-on
(
"operate"
))
(
:file
"source-registry"
:depends-on
(
"find-system"
))
(
:file
"backward-internals"
:depends-on
(
"action"
"operate"
))
(
:file
"backward-internals"
:depends-on
(
"
lisp-
action"
"operate"
))
(
:file
"defsystem"
:depends-on
(
"backward-internals"
))
(
:file
"bundle"
:depends-on
(
"lisp-action"
))
(
:file
"concatenate-source"
:depends-on
(
"bundle"
))
...
...
@@ -57,7 +57,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.26.14
3
"
;; to be automatically updated by make bump-version
:version
"2.26.14
4
"
;; to be automatically updated by make bump-version
:depends-on
()
:components
((
:module
"build"
...
...
backward-internals.lisp
View file @
201861e2
...
...
@@ -4,7 +4,8 @@
(
asdf/package:define-package
:asdf/backward-internals
(
:recycle
:asdf/backward-internals
:asdf
)
(
:use
:asdf/common-lisp
:asdf/driver
:asdf/upgrade
:asdf/system
:asdf/component
:asdf/find-system
:asdf/action
)
:asdf/system
:asdf/component
:asdf/operation
:asdf/find-system
:asdf/action
:asdf/lisp-action
)
(
:export
;; for internal use
#:%refresh-component-inline-methods
#:%resolve-if-component-dep-fails
...
...
@@ -60,7 +61,7 @@
(
check-type
component
parent-component
)
(
check-type
if-component-dep-fails
(
member
:fail
:ignore
:try-next
))
(
unless
(
eq
if-component-dep-fails
:fail
)
(
loop
:with
o
=
(
make-
instance
'compile-op
)
(
loop
:with
o
=
(
make-
operation
'compile-op
)
:for
c
:in
(
component-children
component
)
:do
(
loop*
:for
(
feature?
feature
)
:in
(
component-depends-on
o
c
)
:when
(
eq
feature?
'feature
)
:do
...
...
header.lisp
View file @
201861e2
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.26.14
3
: Another System Definition Facility.
;;; This is ASDF 2.26.14
4
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
test/test-inline-methods.script
0 → 100644
View file @
201861e2
(defparameter *a* nil)
(def-test-system :foo
:components
((:file "file1" :perform (load-op :before (o c)
(setf *a* t)
(format t "Method run before ~A~%" (operation-description o c))))))
(load-system :foo)
(assert *a*)
upgrade.lisp
View file @
201861e2
...
...
@@ -35,7 +35,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.26.14
3
"
)
(
asdf-version
"2.26.14
4
"
)
(
existing-asdf
(
find-class
(
find-symbol*
:component
:asdf
nil
)
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
))
...
...
version.lisp-expr
View file @
201861e2
"2.26.14
3
"
"2.26.14
4
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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