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
04eebd21
Commit
04eebd21
authored
Jan 27, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.26.151: tweak asdf.asd to play nicer with asdf-encodings. Better error for convenience functions.
parent
b5f74667
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
5 deletions
+9
-5
action.lisp
action.lisp
+2
-1
asdf.asd
asdf.asd
+4
-1
header.lisp
header.lisp
+1
-1
upgrade.lisp
upgrade.lisp
+1
-1
version.lisp-expr
version.lisp-expr
+1
-1
No files found.
action.lisp
View file @
04eebd21
...
...
@@ -56,7 +56,8 @@
,
if-no-operation
))
(
defmethod
,
function
((
,
operation
operation
)
,
component
,@
more-args
)
(
if
(
typep
,
component
'component
)
(
error
"No defined method for ~S on ~S"
',function
,
component
)
(
error
"No defined method for ~S on ~/asdf-action:format-action/"
',function
(
cons
,
operation
,
component
))
(
let
((
,
found
(
find-component
()
,
component
)))
(
if
,
found
,
(
next-method
operation
found
)
...
...
asdf.asd
View file @
04eebd21
...
...
@@ -15,6 +15,7 @@
;; and compulsory to sort them in defsystem-depends-on order.
:version
(
:read-file-form
"version.lisp-expr"
)
:around-compile
call-without-redefinition-warnings
;; we need be the same as asdf-driver
:encoding
:utf-8
:components
((
:file
"header"
)))
...
...
@@ -28,6 +29,7 @@
:build-pathname
"build/asdf"
;; our target
:around-compile
call-without-redefinition-warnings
;; we need be the same as asdf-driver
:depends-on
(
:asdf/header
:asdf-driver
)
:encoding
:utf-8
:components
((
:file
"upgrade"
)
(
:file
"component"
:depends-on
(
"upgrade"
))
...
...
@@ -60,8 +62,9 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.26.15
0
"
;; to be automatically updated by make bump-version
:version
"2.26.15
1
"
;; to be automatically updated by make bump-version
:depends-on
()
#+
asdf3
:encoding
#+
asdf3
:utf-8
:components
((
:module
"build"
:components
...
...
header.lisp
View file @
04eebd21
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.26.15
0
: Another System Definition Facility.
;;; This is ASDF 2.26.15
1
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
upgrade.lisp
View file @
04eebd21
...
...
@@ -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.15
0
"
)
(
asdf-version
"2.26.15
1
"
)
(
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 @
04eebd21
"2.26.15
0
"
"2.26.15
1
"
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