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
eb423261
Commit
eb423261
authored
Dec 19, 2012
by
Francois-Rene Rideau
Browse files
2.26.35: restore default initform for TYPE slot in source-file.
Too many clients have grown to depend on it already.
parent
5c522242
Changes
2
Hide whitespace changes
Inline
Side-by-side
asdf.asd
View file @
eb423261
...
...
@@ -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.3
4
"
;; to be automatically updated by bin/bump-revision
:version
"2.26.3
5
"
;; to be automatically updated by bin/bump-revision
:depends-on
()
:components
((
:file
"asdf"
)))
...
...
asdf.lisp
View file @
eb423261
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
;;; This is ASDF 2.26.3
4
: Another System Definition Facility.
;;; This is ASDF 2.26.3
5
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
@@ -118,7 +118,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.3
4
"
)
(
asdf-version
"2.26.3
5
"
)
(
existing-asdf
(
find-class
'component
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
@@ -2043,8 +2043,9 @@ PREVIOUS-TIME when not null is the time at which the PREVIOUS system was loaded.
;;; component subclasses
(
defclass
file-component
(
child-component
)
((
type
:accessor
file-type
:initarg
:type
)))
(
defclass
source-file
(
file-component
)
())
((
type
:accessor
file-type
:initarg
:type
)))
; no default
(
defclass
source-file
(
file-component
)
((
type
:initform
nil
)))
;; NB: many systems have come to rely on this default.
(
defclass
cl-source-file
(
source-file
)
((
type
:initform
"lisp"
)))
(
defclass
cl-source-file.cl
(
cl-source-file
)
...
...
@@ -2891,7 +2892,6 @@ Returns the new tree (which probably shares structure with the old one)"
;; to accumulate feature conditions.
;; Therefore it will accept the SB-ROTATE-BYTE of an old SBCL
;; (older than 1.1.2.20-fe6da9f) but won't suffice to load an old nibbles.
(
defvar
*if-component-dep-fails-component*
nil
)
(
defun
resolve-if-component-dep-fails
(
if-component-dep-fails
component
)
(
asdf-message
"The system definition for ~S uses deprecated ~
ASDF option :IF-COMPONENT-DEP-DAILS. ~
...
...
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