quicklisp-client
quicklisp-client copied to clipboard
(ql-dist:release "Open-VRP") => NIL
(find "Open-VRP" (ql-dist:provided-releases (ql-dist:dist "quicklisp")) :test #'string= :key #'ql-dist:name)
=> #<RELEASE Open-VRP-20120811-git / quicklisp 2012-08-11>
(ql-dist:release "Open-VRP") => NIL
Is it a bug?
It it the only release for which ql-dist:release returns NIL:
(remove-if #'ql-dist:release (mapcar #'ql-dist:name (ql-dist:provided-releases (ql-dist:dist "quicklisp")))) => ("Open-VRP")
Does the same thing happen with the latest release? I accidentally added it with mixed-case in August, but it is now all-lowercase in September.
The underlying issue remains, but for the short term the problematic data should be gone.
CL-USER> (ql:update-client)
Installed version 2012081400 is as new as upstream version 2012081400. No update.
;; so right now the September client is not available.
CL-USER> (ql-dist:release "Open-VRP")
NIL
CL-USER> (ql-dist:release "open-vrp")
NIL
Ah, you mean the distro version, not client.
With "quicklisp 2012-09-09"
(ql-dist:release "open-vrp")
and
(ql:quickload "open-vrp")
both work.