- Apr 05, 2014
-
-
Robert P. Goldman authored
-
Robert P. Goldman authored
history into FAQ.
-
- Mar 27, 2014
-
-
Francois-Rene Rideau authored
-
Robert P. Goldman authored
-
- Mar 26, 2014
-
-
Robert P. Goldman authored
-
- Mar 22, 2014
-
-
Francois-Rene Rideau authored
manual: document that ~/common-lisp/ is now in the default source-registry; mention dump-image hooks when discussing clear-configuration. improve install-asdf-as-module and its coverage in the manual.
-
- Mar 18, 2014
-
-
Francois-Rene Rideau authored
-
- Mar 13, 2014
-
-
Robert P. Goldman authored
-
- Mar 12, 2014
-
-
Robert P. Goldman authored
-
- Mar 10, 2014
-
-
Robert P. Goldman authored
-
- Mar 06, 2014
-
-
Robert P. Goldman authored
-
- Mar 05, 2014
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Add regression tests for the feature. Change the meaning of :force-not t to mean "anything but current system".
-
Francois-Rene Rideau authored
Not only is it the Right Thing™ (see lp#1184002), it makes code simpler. Actually, the two are one and the same. https://bugs.launchpad.net/asdf/+bug/1184002
-
- Mar 01, 2014
-
-
Francois-Rene Rideau authored
Move a few items to TODO. Tweaks.
-
Francois-Rene Rideau authored
upgrade the implementation, or else upgrade (install) the ASDF module. Other minor clarifications.
-
- Feb 28, 2014
-
-
Robert P. Goldman authored
-
Francois-Rene Rideau authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
Partial restructuring of introductory material. Node structure is still messed up.
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Francois-Rene Rideau authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
- Feb 24, 2014
-
-
Francois-Rene Rideau authored
-
- Feb 23, 2014
-
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
- Jan 28, 2014
-
-
Francois-Rene Rideau authored
Also update comments in TODO file, manual. Make the Makefile test result checking less uselessly verbose.
-
- Dec 26, 2013
-
-
Francois-Rene Rideau authored
-
- Oct 23, 2013
-
-
Francois-Rene Rideau authored
This is quick-build compatible and fixes lp#1230368. To use package-system, just have foo.asd containing (defsystem foo :class package-system) at the top of your quick-build hierarchy $FOODIR for packages whose name start with "FOO/" and ASDF will thereafter look for system "foo/bar/baz" in $FOODIR/bar/baz.lisp. Such a file will implicitly have its own system defined; its dependencies are computed by scanning the file, extracting its first defpackage form, and using the packages it uses or imports from as a as a specification of what systems it depends on. You can register packages as belonging to a system with (asdf:register-system-packages my-system '(package1 package2)) Using or importing from a package registered to a given system will generate a dependency to the registered system. Using or importing from a packages registered to the constant symbol T will not generate any dependency. Using or importing from a packages that is not registered will generate a dependency on a system the name of which is the package name downcased. All packages that exist at the time ASDF is initially loaded are registered to constant symbol T. Also, for convenience, introduce :use-reexport and :mix-reexport in uiop/package.lisp (of course, no one can rely on it until it's mainstream, but better late than never). To use this style in a way compatible with older versions of ASDF 3, you may use the asdf-package-system extension. See lisp-interface-library for a system that uses this style this way. Push :asdf-package-system to *features*
-