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
8
Merge Requests
8
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
30f98939
Commit
30f98939
authored
Jan 05, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.26.55: allow a system to have a parent, as backward-compatibility for fset.
parent
a83d9012
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
asdf.asd
asdf.asd
+1
-1
asdf.lisp
asdf.lisp
+6
-9
No files found.
asdf.asd
View file @
30f98939
...
...
@@ -14,7 +14,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.26.5
4
"
;; to be automatically updated by bin/bump-revision
:version
"2.26.5
5
"
;; to be automatically updated by bin/bump-revision
:depends-on
()
:components
((
:file
"asdf"
)))
...
...
asdf.lisp
View file @
30f98939
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
;;; This is ASDF 2.26.5
4
: Another System Definition Facility.
;;; This is ASDF 2.26.5
5
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
@@ -120,7 +120,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.5
4
"
)
(
asdf-version
"2.26.5
5
"
)
(
existing-asdf
(
find-class
'component
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
@@ -1570,10 +1570,6 @@ and implementation-defined external-format's")
(
source-file
:initarg
:source-file
:writer
%set-system-source-file
)
; upgrade issues on CLISP, CMUCL
(
defsystem-depends-on
:reader
system-defsystem-depends-on
:initarg
:defsystem-depends-on
)))
(
defmethod
component-parent
((
system
system
))
(
declare
(
ignorable
system
))
nil
)
(
defmethod
component-pathname
((
system
system
))
(
if
(
or
(
slot-boundp
system
'relative-pathname
)
(
slot-boundp
system
'absolute-pathname
)
...
...
@@ -2138,9 +2134,6 @@ PREVIOUS-TIME when not null is the time at which the PREVIOUS system was loaded.
(
ignore-errors
(
format
stream
"~{~S~^ ~}"
(
operation-original-initargs
o
)))))
(
defun*
node-for
(
o
c
)
(
cons
(
type-of
o
)
c
))
(
defparameter
*operations*
(
make-hash-table
:test
'equal
))
(
defun*
make-operation
(
operation-class
&rest
initargs
)
(
let
((
key
(
cons
operation-class
initargs
)))
...
...
@@ -2323,6 +2316,10 @@ in some previous image, or T if it needs to be done.")
(
with-slots
(
stamp
done-p
planned-p
)
status
(
format
stream
"~@{~S~^ ~}"
:stamp
stamp
:done-p
done-p
:planned-p
planned-p
))))
;; TODO: eliminate NODE-FOR, use CONS.
;; Supposes cleaner protocol for operation initargs passed to MAKE-OPERATION.
(
defun*
node-for
(
o
c
)
(
cons
(
type-of
o
)
c
))
(
defmethod
(
setf
plan-action-status
)
(
new-status
(
plan
plan-traversal
)
(
o
operation
)
(
c
component
))
(
setf
(
gethash
(
node-for
o
c
)
(
plan-visited-actions
plan
))
new-status
))
...
...
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