What's the "OpenBSD way" to install Perl modules which don't exist as packages?
The usual Perl idiom for "install module foo & all of its (recursive) dependencies" is "cpan install foo", but this fetches all dependencies from CPAN, ignoring any OpenBSD packages which may exist. What I'd like is something like "cpan install foo", but with the semantics that for each dependency, if there's OpenBSD package in /etc/installurl which is the same module version as the latest CPAN version, then install the OpenBSD package instead. Is there a utility already around which does this?