Hi, I'm using asdf-install over the clisp and have problem with loading already installed components. Thats looks like asdf and asdf-install successfully installed. This is my initialization file (~/.clisprc):
#-:asdf (load "/home/bohdan/asdf/") (pushnew "/home/bohdan/asdf/registry/" asdf:*central-registry* :test #'equal) #-:asdf-install (asdf:operate 'asdf:load-op :asdf-install)
I installed package cl-smtp with the next command: (asdf-install:install :cl-smtp)
cl-smtp works after installation. After relaunching clisp can't load it:
[1]> (asdf:oos 'asdf:load-op :cl-smtp)
*** - component "cl-smtp" not found The following restarts are available: ABORT :R1 Abort main loop
Also I can't load any file from ~/.asdf-install-dir/systems
... ~/.asdf-install-dir/systems$ ls cl-base64.asd cl-smtp.asd flexi-streams.asd mel-base.asd split-sequence.asd usocket.asd
Can you help me with this issue? Maybe I do something wrong? Thank you.
Bohdan.