Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
201861e2
Commit
201861e2
authored
Jan 24, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.26.144: fix inline-methods. Add test.
parent
6bb7b778
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
7 deletions
+19
-7
asdf.asd
asdf.asd
+2
-2
backward-internals.lisp
backward-internals.lisp
+3
-2
header.lisp
header.lisp
+1
-1
test/test-inline-methods.script
test/test-inline-methods.script
+11
-0
upgrade.lisp
upgrade.lisp
+1
-1
version.lisp-expr
version.lisp-expr
+1
-1
No files found.
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