- 12 Jan, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 11 Jan, 2013 9 commits
-
-
Francois-Rene Rideau authored
I had failed to preserve the extension point cleanup-upgraded-asdf, reusing the name the wrong way. Doing it right this time.
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
This notably includes the former xcvb-driver:run-program/, a much better replacement for run-shell-command. This also includes image initialization, dumping, quitting.
-
Francois-Rene Rideau authored
Also, tweak some tests some more.
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Also, move wild-modules to a contrib/ directory. Refactor tests somewhat, introducing a function touch-file.
-
Francois-Rene Rideau authored
-
- 10 Jan, 2013 3 commits
-
-
Francois-Rene Rideau authored
Make default-directory a root pathname, remove it from source-registry. Have it use lisp-implementation-directory. Remove any attempt to use the "current directory". Users who want that can still try to (pushnew '*default-pathname-defaults* asdf:*central-registry*) Rename tmp/ to build/ and move asdf.lisp there. Update asdf.asd. Rename implementation.lisp to compatibility.lisp. Move *asdf-verbose* and asdf-message to upgrade.lisp
-
Francois-Rene Rideau authored
Avoids interspersed error output in CCL, or backtrace to terminal in SBCL.
-
Francois-Rene Rideau authored
-
- 09 Jan, 2013 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
New pathname functions to work around more logical-pathname issues. See discussion with rpgoldman on asdf-devel, and see CCL ticket:953. Also, tweak build to reflect recent refactoring of asdf. WIP of define-package work needed for clean upgrade (still broken).
-
- 08 Jan, 2013 2 commits
-
-
Francois-Rene Rideau authored
TODO: Create a define-package that can make it upgrade itself.
-
Francois-Rene Rideau authored
Add its forgotten source file test/lambda.lisp. Oops. Skip one of its tests that mysteriously breaks on ECL_bytecodes.
-
- 07 Jan, 2013 4 commits
-
-
Francois-Rene Rideau authored
Bug identified by avodonosov.
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
- 05 Jan, 2013 1 commit
-
-
Francois-Rene Rideau authored
Also, fix make-pathname* to make CLISP happy. Uniformly use "backward-compat*" in comments. Rename operation-forced{,-not}-p to action-forced-p. Shuffle some functions around. Refactor operate into an :around and a regular method.
-
- 03 Jan, 2013 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Remove debugging code from previous commit.
-
- 02 Jan, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 01 Jan, 2013 1 commit
-
-
Francois-Rene Rideau authored
This restores the feature of do-first that was lost while refactoring ASDF to fix the timestamp propagation issue. The old asdf-bundle worked implicitly because of do-first: fasl-op DEPENDS-ON compile-op, and compile-op has a DO-FIRST on the load-op of dependencies, NOT a DEPENDS-ON, so if the compile-op is "done" (which did NOT check the timestamps of dependencies), then the dofirst is never consulted and load-op is never traversed. In our new ASDF, we want to always traverse the load-op of dependencies, so we can propagate their timestamps; however, we still want to only actually load them if they are needed. Therefore, visiting actions takes an additional flag "needed in this image", and each visited action can be planned or not planned yet, and a not planned yet action can be visited a second time to plan it after recursively visiting its dependencies with the "needed" flag set. Tests were fixed now to work now that this distinction exists.
-
- 27 Dec, 2012 3 commits
-
-
Francois-Rene Rideau authored
Be more selective in what warnings get quashed when upgrading ASDF. Skip bundle test on ABCL, ECL-bytecodes. Sleep more in test1.
-
Francois-Rene Rideau authored
Found this bug during ASDF upgrade tests. Add ecl_bytecodes to the upgrade test regimes. Rename it from ecl-bytecodes to work with stupid Bourne shell. Add xcl to test regime.
-
Francois-Rene Rideau authored
-
- 26 Dec, 2012 2 commits
-
-
Francois-Rene Rideau authored
(preparing for a future better test system.)
-
Francois-Rene Rideau authored
-
- 17 Dec, 2012 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Change declare ignore to ignorable to make ACL happier. Remove slot for if-component-dep-fails. Update some tests and workaround a failure on ecl-bytecodes.
-
- 15 Dec, 2012 2 commits
-
-
Francois-Rene Rideau authored
Remove last traces of previous non-sensical :feature features.
-
Francois-Rene Rideau authored
where it ought to always have been, based on a properly cleaned up prepare-op (previously introduced in 2.26.14 as parent-load-op). This is a checkpoint of a mostly working system after major changes; it requires further cleanup and fixes: strangely, fails some tests on CCL but not SBCL. Introduce find-operation as a companion to find-component, subsuming make-sub-operation. The results of component-depends-on are processed with find-operation and resolve-component-spec. component-self-dependencies is fixed to play well with prepare-op. Also, some internal renamings and signature changes: parent-operation becomes upward-operation parent-load-op becomes prepare-op parent-source-load op becomes prepare-source-op parent-component is distinguished from module module-components becomes component-children module-components-by-name becomes component-children-by-name compute-module-components-by-name becomes compute-children-by-name circular-dependency-components becomes circular-dependency-actions component-load-dependencies becomes component-sibling-dependencies (with a stub) introducing child-component, downward-operation. refactoring visit-dependencies to include the loop in which it's always used. refactoring force and force-not processing to use a function action-override-p; force is achieved with a trivial method on operation-done-p for prepare-op, and force-not as a trivial check in visit-action. Tweak tests along the way. Tweak the documentation. Failed to either rename operation-error or introduce action-error in its superclasses: that breaks sb-grovel.
-
- 09 Dec, 2012 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
2.26.14: Play nicer with timestamp propagation by interning dependency to parent's outer dependencies as something explicit.
-
Francois-Rene Rideau authored
-