- 23 Oct, 2013 2 commits
-
-
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*
-
Francois-Rene Rideau authored
for the sake of Windows' CMD.EXE.
-
- 21 Oct, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 20 Oct, 2013 1 commit
-
-
Francois-Rene Rideau authored
Introduce physicalize-pathname as an abstraction for translate-logical-pathname, due to bug in CLISP.
-
- 18 Oct, 2013 2 commits
-
-
Francois-Rene Rideau authored
relative to said base build directory, for the sake of determinism.
-
Francois-Rene Rideau authored
This sometimes allows sharing of fasls between unicode and non-unicode compiler. Hat tip: Dave Cooper, testing on Allegro.
-
- 16 Oct, 2013 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Tweak uiop.asd so it specifies encoding correctly.
-
- 15 Oct, 2013 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Make some run-program tests Unix-only that fail on Windows for semi-good reasons. Sleep 2 seconds instead of one in test-stamp-propagation, in case that makes things more stable.
-
- 14 Oct, 2013 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
- 13 Oct, 2013 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Add a regression test. More tweaks to the test and test suite.
-
- 12 Oct, 2013 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
- 11 Oct, 2013 1 commit
-
-
Francois-Rene Rideau authored
Add a test case. (Issue: %active-io-specifier-p takes a non-normalized argument.)
-
- 09 Oct, 2013 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
- 08 Oct, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 07 Oct, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 03 Oct, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 02 Oct, 2013 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Fix missing quote for stderr on allegro.
-
- 30 Sep, 2013 3 commits
-
-
Francois-Rene Rideau authored
Fix corner case on implementations that return a :bidir-stream but no :input-stream. Also test and fix support for :error-output :output.
-
Francois-Rene Rideau authored
Also, don't use *earmuffs*, but a $ prefix for $cr, $lf, $crlf, for these are not "variables" but "constants", except that defconstant won't work portably on strings, so no +glitter+.
-
Francois-Rene Rideau authored
More documentation for UIOP.
-
- 28 Sep, 2013 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
* have run-program on ECL on SLIME. * remove now unnecessary &allow-other-keys from slurp-input-stream and vomit-output-stream. * add stripln and :stripped t support to slurp-input-stream string. * add convenience functions println and writeln.
-
Francois-Rene Rideau authored
* it handles INPUT and ERROR-OUTPUT, not just OUTPUT. * it accepts PATHNAMEs as I/O designators * it works on ECL under SLIME (fixes lp#1232225) * SLIGHT API CHANGE! At the suggestion of stassats, we're always returning an exit code, and in a predictable return value position. However, both for backward compatibility and usability, the OUTPUT slurping results remain the primary return value, followed by the ERROR-OUTPUT slurping results, followed by the exit code. So far, no one was using multiple values in SLURP-INPUT-STREAM methods, so no one will regret that, except people who might have somehow expected the old weird behavior of a return code when OUTPUT is NIL or :INTERACTIVE. * As another API tweak and improvement, keyword options are now specified separately for each of your I/O designators, by putting them your designator in a list. A list also distinguishes a string as input from a namestring to designate a pathname, i.e. :input '("bar") is the string literal, whereas :input "bar" is the file named bar. Several fixes and extensions to stream support. Only tested so far on Linux x64 with ccl clisp sbcl ecl ecl_bytecodes cmucl abcl allegro allegromodern xcl
-
- 27 Sep, 2013 1 commit
-
-
Francois-Rene Rideau authored
-
- 24 Sep, 2013 1 commit
-
-
Francois-Rene Rideau authored
Fixes lp#1207005.
-
- 23 Sep, 2013 1 commit
-
-
Francois-Rene Rideau authored
instead returned ("") or (NIL), which in turn causes getenv-pathnames to fail, and eventually (default-source-registry) failed to properly default in absence of XDG_DATA_DIRS, which itself breaks Debian installations. Big oops.
-
- 16 Sep, 2013 2 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
- 10 Sep, 2013 1 commit
-
-
Robert P. Goldman authored
Also script used to test on all implementations (only should be run on mac, hence -ignored name).
-
- 08 Sep, 2013 2 commits
-
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-