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
b0b6708f
Commit
b0b6708f
authored
Jan 19, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.26.124: actually fix things on CMUCL and pass tests.
parent
05e9f515
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
14 deletions
+14
-14
action.lisp
action.lisp
+5
-6
asdf.asd
asdf.asd
+1
-1
bundle.lisp
bundle.lisp
+1
-1
header.lisp
header.lisp
+1
-1
plan.lisp
plan.lisp
+3
-3
test/script-support.lisp
test/script-support.lisp
+1
-0
upgrade.lisp
upgrade.lisp
+1
-1
version.lisp-expr
version.lisp-expr
+1
-1
No files found.
action.lisp
View file @
b0b6708f
...
...
@@ -17,17 +17,16 @@
#:action-status
#:action-stamp
#:action-done-p
#:component-operation-time
#:mark-operation-done
#:compute-action-stamp
#:perform
#:perform-with-restarts
#:retry
#:accept
#:feature
#:gather-actions
#:required-components
#:traverse-sub-actions
#:required-files
#:traverse-actions
#:traverse-sub-actions
#:required-components
#:required-files
;; in plan
))
(
in-package
:asdf/action
)
(
deftype
action
()
'
(
cons
operation
component
))
;; a step to be performed while building the system
(
defgeneric*
traverse-actions
(
actions
&key
))
(
defgeneric*
traverse-sub-actions
(
operation
component
&key
))
(
defgeneric*
required-components
(
component
&key
))
(
defgeneric*
required-files
(
operation
component
&key
))
(
defgeneric*
traverse-actions
(
actions
&key
&allow-other-keys
))
(
defgeneric*
traverse-sub-actions
(
operation
component
&key
&allow-other-keys
))
(
defgeneric*
required-components
(
component
&key
&allow-other-keys
))
(
defgeneric*
required-files
(
operation
component
&key
&allow-other-keys
))
;;;; Convenience methods
...
...
asdf.asd
View file @
b0b6708f
...
...
@@ -15,7 +15,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.26.12
3
"
;; to be automatically updated by bin/bump-revision
:version
"2.26.12
4
"
;; to be automatically updated by bin/bump-revision
:depends-on
()
:components
((
:module
"build"
:components
((
:file
"asdf"
))))
:in-order-to
(
#+
asdf2.27
(
compile-op
(
monolithic-load-concatenated-source-op
asdf/defsystem
))))
...
...
bundle.lisp
View file @
b0b6708f
...
...
@@ -268,7 +268,7 @@
`
((
,
op
,
c
))
(
call-next-method
)))
(
def
un*
required-files
(
o
c
&key
(
test
'identity
)
(
key
'output-files
)
)
(
def
method
required-files
(
o
c
&key
(
test
'identity
)
(
key
'output-files
)
&allow-other-keys
)
(
while-collecting
(
collect
)
(
visit-dependencies
()
o
c
#'
(
lambda
(
sub-o
sub-c
)
...
...
header.lisp
View file @
b0b6708f
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
;;; This is ASDF 2.26.12
3
: Another System Definition Facility.
;;; This is ASDF 2.26.12
4
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
plan.lisp
View file @
b0b6708f
...
...
@@ -390,13 +390,13 @@ processed in order by OPERATE."))
(
typep
c
(
plan-component-type
plan
))
(
call-next-method
)))
(
def
un*
traverse-actions
(
actions
&rest
keys
&key
plan-class
&allow-other-keys
)
(
def
method
traverse-actions
(
actions
&rest
keys
&key
plan-class
&allow-other-keys
)
(
let
((
plan
(
apply
'make-instance
(
or
plan-class
'filtered-sequential-plan
)
keys
)))
(
loop
:for
(
o
.
c
)
:in
actions
:do
(
traverse-action
plan
o
c
t
))
(
plan-actions
plan
)))
(
def
un*
traverse-sub-actions
(
operation
component
&rest
keys
)
(
def
method
traverse-sub-actions
(
operation
component
&rest
keys
&key
&allow-other-
keys
)
(
apply
'traverse-actions
(
direct-dependencies
operation
component
)
:system
(
component-system
component
)
keys
))
...
...
@@ -407,7 +407,7 @@ processed in order by OPERATE."))
(
typep
c
keep-component
))
:collect
(
cons
o
c
))))
(
def
un*
required-components
(
system
&rest
keys
&key
(
goal-operation
'load-op
)
&allow-other-keys
)
(
def
method
required-components
(
system
&rest
keys
&key
(
goal-operation
'load-op
)
&allow-other-keys
)
(
remove-duplicates
(
mapcar
'cdr
(
apply
'traverse-sub-actions
(
make-operation
goal-operation
)
system
keys
))
:from-end
t
))
...
...
test/script-support.lisp
View file @
b0b6708f
...
...
@@ -55,6 +55,7 @@ Some constraints:
excl::*autoload-package-name-alist*
(
remove
"asdf"
excl::*autoload-package-name-alist*
:test
'equalp
:key
'car
))
; We need that BEFORE any mention of package ASDF.
#+
cmucl
(
setf
ext:*gc-verbose*
nil
)
#+
gcl
(
when
(
or
(
<
system::*gcl-major-version*
2
)
(
and
(
=
system::*gcl-major-version*
2
)
...
...
upgrade.lisp
View file @
b0b6708f
...
...
@@ -45,7 +45,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.12
3
"
)
(
asdf-version
"2.26.12
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 @
b0b6708f
"2.26.12
3
"
"2.26.12
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