Skip to content
  1. Jan 13, 2013
    • Francois-Rene Rideau's avatar
      2.26.82: much cleanups and fixes on the driver. · 21594070
      Francois-Rene Rideau authored
      Tests: SBCL passes test-lisp and test-upgrade
      Also:
      * big refactoring of test infrastructure
      * contrib/debug.lisp and (asdf/driver:asdf-debug) for debugging.
      * remove aif and it, use the cleaner if-bind.
      * backtrace support, with improvements from trivial-backtrace.
      * integration of asdf-condition-control (originally from xcvb-driver)
      * simplify the upgrade heuristic: always tries to upgrade once.
        The previous heuristic was too complex with too many failure cases.
        You are thus assumed to want a given version asdf
        if and only if it is in your source-registry.
      21594070
  2. Jan 11, 2013
  3. Jan 03, 2013
  4. Sep 13, 2012
  5. Apr 12, 2012
    • Francois-Rene Rideau's avatar
      2.20.9: fix logical-pathname issue; export more utilities. · 0c281b99
      Francois-Rene Rideau authored
      The issue fixed is that most Lisps don't like
      *default-pathname-defaults* being a logical-pathname.
      Added a test for logical-pathname functionality;
      it all works on CCL, and works better on other Lisps after the fix,
      but there are still logical-pathname issues on SBCL, CLISP and more.
      Also, a package cleanup of our test suite.
      0c281b99
  6. Oct 18, 2011
  7. Oct 17, 2011
  8. Sep 13, 2011
  9. May 11, 2011
    • Francois-Rene Rideau's avatar
      2.015.2: fix defsystem to avoid infinite loop in some cases. · ff4057b6
      Francois-Rene Rideau authored
      Nikodemus reported on the list an infortunate interaction with quicklisp.
      such if when you had a system installed both in quicklisp and outside
      quicklisp, say flexi-streams, and the .asd defsystem'ed an auxiliary system,
      say flexi-streams-test, and you tried to load the version outside quicklisp,
      e.g. by putting it first in the *central-registry*, then ASDF would
      start loading the non-quicklisp .asd; during parse-component-form for the
      auxiliary system, find-system would be called and then locate the quicklisp
      version, since it can't be found by file name, but quicklisp includes it
      in its database; ASDF would then load the quicklisp .asd; during the
      parse-component-form for the main system, it would call find-system,
      and the non-quicklisp .asd would be found, and so on in an infinite loop.
      
      This patch refactors defsystem to put all the work in a function
      will a trivial macro-expansion. The function pushes the system being
      currently defined into a list of such systems that is specially consulted
      first by search-for-system-definition, hopefully avoiding any loop.
      ff4057b6
  10. May 09, 2011
  11. May 06, 2011