quicklisp-client icon indicating copy to clipboard operation
quicklisp-client copied to clipboard

(ql-dist:release "Open-VRP") => NIL

Open avodonosov opened this issue 13 years ago • 3 comments

(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")

avodonosov avatar Aug 25 '12 15:08 avodonosov

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.

quicklisp avatar Sep 11 '12 14:09 quicklisp

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

avodonosov avatar Sep 11 '12 16:09 avodonosov

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.

avodonosov avatar Sep 11 '12 17:09 avodonosov