Skip to content
Snippets Groups Projects
  1. Jun 08, 2015
  2. May 04, 2015
  3. Oct 06, 2014
  4. Aug 28, 2014
  5. Jul 12, 2014
  6. May 16, 2014
  7. May 05, 2014
  8. May 04, 2014
  9. Apr 22, 2014
  10. Apr 20, 2014
  11. Apr 06, 2014
  12. Mar 17, 2014
  13. Feb 28, 2014
  14. Feb 26, 2014
  15. Feb 21, 2014
  16. Jan 28, 2014
  17. Jan 27, 2014
  18. Jan 09, 2014
  19. Jan 08, 2014
  20. Jan 07, 2014
  21. Jan 03, 2014
  22. Dec 20, 2013
  23. Dec 09, 2013
  24. Oct 25, 2013
  25. 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
  26. Sep 03, 2013
  27. Aug 16, 2013
  28. Aug 07, 2013
  29. Jul 02, 2013
  30. Jun 04, 2013
  31. Jun 02, 2013
  32. May 22, 2013
  33. May 16, 2013
  34. Apr 12, 2013
Loading