- 19 Feb, 2017 1 commit
-
-
Francois-Rene Rideau authored
Use the same algorithm as Quicklisp uses for its local-projects: prefer a .asd with a path of shorter depth; and for equal depth, prefer the path with namestring that is least for string<.
-
- 02 Feb, 2017 1 commit
-
-
Francois-Rene Rideau authored
Use the -s option of uname, which is more universally available than -o See merge request !69
-
- 27 Jan, 2017 1 commit
-
-
dkim authored
The uname command on macOS does not support the -o option.
-
- 24 Jan, 2017 1 commit
-
-
Francois-Rene Rideau authored
-
- 18 Jan, 2017 1 commit
-
-
Francois-Rene Rideau authored
The convenience methods recursively call explain, which cause a style-warning if the compiler-macro is already defined, and a different one if it is defined afterwards. The solution is to declare the function notinline in the body of the convenience methods. This fixes test-clean-load on sbcl, and more generally hushes loading asdf.lisp from source.
-
- 13 Jan, 2017 1 commit
-
-
Francois-Rene Rideau authored
-
- 12 Jan, 2017 3 commits
-
-
Francois-Rene Rideau authored
Thus it will run when invoked from asdf-tools and/or the SLIME REPL, independently from the current directory at the time of invoking it.
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
- 11 Jan, 2017 1 commit
-
-
Francois-Rene Rideau authored
Release 3.2.0 See merge request !68
-
- 09 Jan, 2017 1 commit
-
-
Francois-Rene Rideau authored
-
- 26 Dec, 2016 1 commit
-
-
Francois-Rene Rideau authored
This will remove a warning caused by the omission when uiop is loaded from the tarball (e.g. by Quicklisp).
-
- 19 Dec, 2016 1 commit
-
-
Francois-Rene Rideau authored
Simplify some instructions. Document a few more files. Have the README better follow the Google Markdown Style Guide.
-
- 16 Dec, 2016 1 commit
-
-
Robert Goldman authored
Previously, MKCL was unable to FMAKUNBOUND a SETF method.
-
- 15 Dec, 2016 2 commits
-
-
Robert Goldman authored
-
Robert Goldman authored
Link objects only Trying to address https://bugs.launchpad.net/asdf/+bug/1647391 — I need @dkochmanski to comment on whether this is the proper solution. Also whether even for linking an image we should avoid using .a's instead of .o's (I still kept that for now). See merge request !59
-
- 12 Dec, 2016 2 commits
-
-
Robert Goldman authored
-
Robert Goldman authored
Update launch-program for SBCL on Windows Use the :escape-arguments nil protocol committed by stassats (to be part of sbcl 1.3.13) rather than the proposed direct passing of the argument as a string. See merge request !58
-
- 08 Dec, 2016 3 commits
-
-
Robert Goldman authored
-
Robert Goldman authored
-
Robert Goldman authored
Obsolete function warnings This branch creates basic infrastructure for defining functions with planned obsolescence / deprecation. @rgoldman I'm not sure whether you consider this branch ready or not, but I'm creating this merge request so we can discuss it. See merge request !38
-
- 07 Dec, 2016 8 commits
-
-
Francois-Rene Rideau authored
There is no robust portable way to combine multiple .a files together; libtool kind of works but has weird limitations and is a cumbersome dependency to require, and even it doesn't work well in cross-compilation setting. The ECL maintainer Daniel K suggests we should always link from object files: https://bugs.launchpad.net/bugs/1647391 This patch still uses static libraries as input for images, but even that could be changed.
-
Francois-Rene Rideau authored
Use the :escape-arguments nil protocol committed by stassats (which will be part of sbcl 1.3.13) rather than the direct passing of the argument as a string that I have offered as a patch.
-
Francois-Rene Rideau authored
Inline the internal function %normalize-command, that was only used once. It will be further refactored.
-
Francois-Rene Rideau authored
Replace ugly runtime append by a nicer read-time append.
-
Francois-Rene Rideau authored
Avoid consing by a multiple-value-list followed by destructuring-bind; instead use multiple-value-bind with a read-conditional list of variables.
-
Francois-Rene Rideau authored
First of refactorings where nest helps keep conditional and nested code clean.
-
Francois-Rene Rideau authored
These variables are normalized versions of the launch-program arguments; the normalized bindings fully shadow the user-provided values.
-
Francois-Rene Rideau authored
Deprecation goes through the following phases: style-warning, warning, cerror, functionality removed. Automatically upgrade the deprecation phase at every minor version change (not every release). Include minimal testing of the deprecation functionality. Add deprecation TODO items. Deprecation will start with 3.2.
-
- 04 Dec, 2016 1 commit
-
-
Francois-Rene Rideau authored
-
- 02 Dec, 2016 3 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Make a proper forward reference to run-program in the degenerate version of launch-program::%posix-send-signal used on some implementations.
-
- 01 Dec, 2016 4 commits
-
-
Robert Goldman authored
-
Robert Goldman authored
Split launch-program.lisp off of run-program.lisp run-program.lisp was way too big. Even split in two, each part is a mindful. See merge request !56
-
Robert Goldman authored
uiop/run-program: fix abcl version identifier for development releases Without this patch, Elias' recent work on UIOP/RUN-PROGRAM won't be utilized on any ABCL which is built from development source. ABCL uses the convention that development versions start appending strings separated via #\- characters to the primary value returned by CL:LISP-IMPLEMENTATION-VERSION (e.g. '1.5.0-dev'). Such values cause the UIOP/UTILITY:PARSE-VERSION function to return nil, meaning that this is not a suitable conditional for whether LAUNCH-PROGRAM is invoked. This patch uses the value of `UIOP/OS:IMPLEMENTATION-IDENTIFIER` to identify version. Unknown whether this would work on MKCL/ECL, which might simplify the code path here. See merge request !57
-
Francois-Rene Rideau authored
-
- 30 Nov, 2016 3 commits
-
-
Mark authored
-
Robert Goldman authored
-
Robert Goldman authored
Bad system name Signal a WARNING when a system is defined with a bad name that will make asdf fail to find it, e.g. foo-test in foo.asd instead of e.g. foo/test. See merge request !51
-