Skip to content
Snippets Groups Projects
  1. Jan 01, 2014
  2. Dec 20, 2013
  3. Dec 19, 2013
  4. Dec 07, 2013
  5. Nov 25, 2013
  6. Nov 20, 2013
  7. Nov 18, 2013
  8. Nov 16, 2013
  9. Nov 15, 2013
  10. Nov 13, 2013
  11. Nov 12, 2013
  12. Nov 11, 2013
  13. Nov 06, 2013
  14. Nov 05, 2013
  15. Nov 03, 2013
  16. Oct 25, 2013
  17. Oct 24, 2013
  18. Oct 23, 2013
    • Francois-Rene Rideau's avatar
      package-system: support for quick-build style defpackage-based dependencies. · c609093c
      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*
      c609093c
    • Francois-Rene Rideau's avatar
      Try to avoid extraneous spaces in redirected command lines · ba8308da
      Francois-Rene Rideau authored
      for the sake of Windows' CMD.EXE.
      ba8308da
  19. Oct 21, 2013
  20. Oct 20, 2013
  21. Oct 18, 2013
  22. Oct 16, 2013
Loading