I want to collect all packages defined during ASDF system loading.
Already tried:
to use difference between
(list-all-packages)before and after system loading, but it is not very convenient, because some systems can be loaded as dependencies of the system I'm inspecting of and I need to make a set extraction.tried to define a
initialize-instance :after ((package package) &rest initargs)method, but it does not get called whendefpackageform is evaluated.
Also, when I quickloading an ASDF system, I see the [package dexador] in it's output. How does quicklisp do this?