- May 18, 2021
-
-
Robert Goldman authored
-
- May 16, 2021
-
-
Robert Goldman authored
Add REQUIRE upgrade tests to CI See merge request !178
-
Eric Timmons authored
The original upgrade tests were disabled by default for being too slow. They're too slow because they test with a wide range of previous ASDF versions. Add new tests that run only if the full upgrade test suite is not run. These test upgrading only from the implementation provided ASDF. This is much faster because than testing every old version. Plus, it matches the real world upgrade conditions for the vast majority of users. This catches #72.
-
- May 15, 2021
-
-
-
Robert Goldman authored
Add Clasp to Gitlab CI pipeline See merge request !170
-
Robert Goldman authored
Change to be ".fasp", instead of ".fasb", to match recent change in clasp.
-
Robert Goldman authored
Add new code for printing backtrace on clasp. Previously, UIOP treated clasp as if it was ECL. Now we invoke `clasp-debug:print-backtrace`, instead.
-
-
Some useful helpers for testing locally using Docker.
-
-
- May 09, 2021
-
-
Robert Goldman authored
clisp save-image fix. See merge request asdf/asdf!155
-
Robert Goldman authored
-
- May 08, 2021
-
-
- May 02, 2021
-
-
-
Robert Goldman authored
-
Robert Goldman authored
Two more changes for Genera See merge request asdf/asdf!172
-
- Apr 30, 2021
-
-
Gary Palter authored
* Add "Package: CL-USER" to the modeline so a user could compile ASDF on Genera without first setting their Lisp context to ANSI-CL.
-
- Apr 29, 2021
-
-
Robert Goldman authored
-
Robert Goldman authored
Fix Genera's special case to skip /usr/share/common-lisp See merge request asdf/asdf!171
-
- Apr 28, 2021
-
-
OS-COND evaluates its clauses at compile time and only includes the relevant clause. Change the clause in XDG-DATA-DIRS for Genera to check whether we're on a VLM running on macOS at runtime. Otherwise, the binary we distribute with Genera will either include /usr/share/common-lisp or it won't depending on which machine I use to compile.
-
- Mar 22, 2021
-
-
Robert Goldman authored
-
Robert Goldman authored
Old package local nicknames not cleared by DEFINE-PACKAGE Closes #51 See merge request !167
-
Robert Goldman authored
Prior to this commit, we were trying to be far too smart when updating a package's package-local-nicknames: we'd only call `remove-package-local-nickname` on the set difference of the old nicknames and the new nicknames; that is, we would not remove and then reinstall a package-local-nickname which was already present and we wanted to keep. The bug which caused #51 was that the set-difference considered only the nickname, not the package to which it referred. But rather than worrying about accurately computing the minimal set of nicknames to remove, this commit just has `ensure-package` remove all package-local-nicknames, then reinstall the ones it wants. This may be either a performance improvement or regression depending on whether computing set differences is more or less expensive than manipulating package data structures, but my suspicion is that no one cares either way. Also, during the course of my debugging, I [Phoebe Goldman] added a few line-comments to the definition of `ensure-package` so that I could tell what various parts of its body were doing. I'd rather not write those comments again, so I'm including them in this commit. Tests incorporated and changelog updated.
-
Robert Goldman authored
Document LAUNCH-PROGRAM oddities. Closes #62 See merge request asdf/asdf!166
-
Eric Timmons authored
-
- Mar 21, 2021
-
-
Robert Goldman authored
Improve OS detection. See merge request !147
-
- Mar 20, 2021
-
-
Robert Goldman authored
Replace `:haiku`, `:mezzano`, and `:genera` with `:os-` prefixed alternatives. This fixes a problem on SBCL where we were inadvertently *removing* the `:haiku` feature. Treat `:haiku` as a unix variant (fix `os-unix-p`).
-
Robert Goldman authored
Add arm64/aarch64 architecture See merge request asdf/asdf!161
-
Robert Goldman authored
-
Robert Goldman authored
Fix for issue 61 See merge request asdf/asdf!165
-
- Mar 19, 2021
-
-
Robert Goldman authored
-
Robert Goldman authored
On guidance from LispWorks, have made T an unsupported option for `:output` and `:error-output` on LW.
-
- Mar 18, 2021
-
-
Robert Goldman authored
-
Robert Goldman authored
See #61
-
- Mar 10, 2021
-
-
Robert Goldman authored
Add CMUCL and CLISP to CI See merge request asdf/asdf!164
-
- Mar 09, 2021
-
-
Eric Timmons authored
-
- Mar 08, 2021
-
-
Eric Timmons authored
-
- Mar 03, 2021
-
-
Robert Goldman authored
-
Robert Goldman authored
Fix for issue 39: refine handling of serial dependencies See merge request asdf/asdf!163
-
Robert Goldman authored
Modify the computation of `:serial` dependencies so that the chain is not broken by `:if-feature` dependencies that are dropped from the system.
-