Among other things you can set in an ASDF system is the :version property. Is there a way to read it at runtime? Something like (system-version :my-system-name)?
I know there are asdf:version-satisfies, and asdf:asdf-version, but neither do what I want in this case.
(slot-value (asdf:find-system <system>) 'asdf:version)– Vsevolod Dyomkin Jun 18 '12 at 15:44slot-valueis abstraction-breaking, unlike the approach based oncomponent-version, so the latter is better. At least in theory, someone could write a method forasdf:component-versionthat does not access the slot, in which case code that directly examines the slot would lose. – Robert P. Goldman Jun 21 '12 at 21:30