| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| qlot-1.8.0.tar.gz | 2025-11-30 | 11.3 MB | |
| qlot-installer-1.8.0.sh | 2025-11-30 | 4.2 kB | |
| 1.8.0 source code.tar.gz | 2025-11-30 | 307.5 kB | |
| 1.8.0 source code.zip | 2025-11-30 | 369.4 kB | |
| README.md | 2025-11-30 | 1.4 kB | |
| Totals: 5 Items | 12.0 MB | 0 | |
What's Changed
- [enhancement] Add shared dependency cache by @fukamachi in https://github.com/fukamachi/qlot/pull/330
- [enhancement] Add ql-dist. by @fukamachi in https://github.com/fukamachi/qlot/pull/331
- Suggested by @daninus14
- [bugfix] Enable line wrapping when printing errors. by @fukamachi in https://github.com/fukamachi/qlot/pull/332
Shared dependency cache
Qlot got a shared dependency cache that reduces disk space and speeds up installations across multiple projects. Dependencies are cached globally in ~/.cache/qlot/ and shared via symbolic links.
Disabling the Cache
To disable caching for a specific invocation, use --no-cache:
:::shell
qlot install --no-cache
qlot update --no-cache
Clearing the Cache
To clear the cache, simply delete the cache directory:
:::shell
rm -rf ~/.cache/qlot/
After clearing the cache, run qlot install in your projects to reinstall dependencies.
ql-dist
ql-dist is for custom Quicklisp dists that allows to specify which distribution a library should be fetched from. This is useful when a library is available from multiple distributions and you want to explicitly control the source.
ql-dist <dist name> <project name> [<version>]
Full Changes
Full Changelog: https://github.com/fukamachi/qlot/compare/1.7.5...1.8.0