Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hugo Ishimaru
asdf
Commits
328a6357
"README.md" did not exist on "122ecaf96d2542978b2717b50f2336d75ff99984"
Commit
328a6357
authored
12 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
2.26.125: hush when bootstrapped by an old version that didn't save warnings
parent
78c8bade
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
TODO
+1
-12
1 addition, 12 deletions
TODO
asdf.asd
+1
-1
1 addition, 1 deletion
asdf.asd
header.lisp
+1
-1
1 addition, 1 deletion
header.lisp
lisp-action.lisp
+3
-2
3 additions, 2 deletions
lisp-action.lisp
upgrade.lisp
+1
-1
1 addition, 1 deletion
upgrade.lisp
version.lisp-expr
+1
-1
1 addition, 1 deletion
version.lisp-expr
with
8 additions
and
18 deletions
TODO
+
1
−
12
View file @
328a6357
...
...
@@ -2,20 +2,9 @@
and that breakage gets fixed quickly.
* Test stassats's thing:
(asdf:enable-asdf-binary-locations-compatibility :centralize-lisp-binaries t :default-toplevel-directory *fasl-dir*)
* Split ASDF in parts
** Have it pass test-lisp
** Have it pass test-upgrade
** Get package upgrade right
* Get package upgrade right
Try a newer CLISP than 2.44.1, and if it still breaks, try harder,
by e.g. having ensure-package return a working defpackage form.
** The unconditional ensure-package-unused breaks test-encodings.script,
since asdf severs itself from its client package hosting the
defsystem form during defsystem-depends-on.
** Solution 1: emulate hook on the *upgraded-p* solution, either using
explicit flag, explicit version numbers or implicit version information
(e.g. source-code or sxhash thereof, also accounting for dependency
package information).
** Solution 2: Just "do the right thing" with exported symbols.
* Make load-op a generic operation that selects the proper strategy
for each system, module or file, according to component properties and user-configuration:
compile the lisp file then load the fasl (load-compiled-op),
...
...
This diff is collapsed.
Click to expand it.
asdf.asd
+
1
−
1
View file @
328a6357
...
...
@@ -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
4
"
;; to be automatically updated by bin/bump-revision
:version
"2.26.12
5
"
;; 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
))))
...
...
This diff is collapsed.
Click to expand it.
header.lisp
+
1
−
1
View file @
328a6357
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
;;; This is ASDF 2.26.12
4
: Another System Definition Facility.
;;; This is ASDF 2.26.12
5
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
This diff is collapsed.
Click to expand it.
lisp-action.lisp
+
3
−
2
View file @
328a6357
...
...
@@ -117,8 +117,9 @@
#+
ecl
,@
(
unless
(
use-ecl-byte-compiler-p
)
(
compile-file-pathname
i
:type
:object
))
#+
mkcl
,
(
compile-file-pathname
i
:fasl-p
nil
)
;; object file
#+
sbcl
,@
(
unless
(
builtin-system-p
(
component-system
c
))
`
(
,
(
make-pathname
:type
"sbcl-warnings"
:defaults
f
))))))
#+
sbcl
,@
(
let
((
s
(
component-system
c
)))
(
unless
(
or
(
builtin-system-p
s
)
(
equal
(
component-name
s
)
"asdf"
))
`
(
,
(
make-pathname
:type
"sbcl-warnings"
:defaults
f
)))))))
(
defmethod
component-depends-on
((
o
compile-op
)
(
c
component
))
(
declare
(
ignorable
o
))
`
((
prepare-op
,
c
)
,@
(
call-next-method
)))
...
...
This diff is collapsed.
Click to expand it.
upgrade.lisp
+
1
−
1
View file @
328a6357
...
...
@@ -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
4
"
)
(
asdf-version
"2.26.12
5
"
)
(
existing-asdf
(
find-class
(
find-symbol*
:component
:asdf
nil
)
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
This diff is collapsed.
Click to expand it.
version.lisp-expr
+
1
−
1
View file @
328a6357
"2.26.12
4
"
"2.26.12
5
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment