in reply to Re^4: Updating distributions with Module::Build, Module::Starter, and PPM::Make
in thread Updating distributions with Module::Build, Module::Starter, and PPM::Make

Thanks for correcting me. I saw the build action didn't regenerate META.yml, so assumed incorrectly that a way for Build.PL to indicate requirements to an external tool. I see now that the distmeta action does this (the "dist" prefix had made me think it was something that should only be done as part of preparing a distribution), or you can do what CPANPLUS does after running the build action:
my $build = Module::Build->resume( properties => { config_dir => File::Spec->catdir($args->{'dir'}, "_build" +), build_script => 'Build', } ); my $failures = $build->prereq_failures;
  • Comment on Re^5: Updating distributions with Module::Build, Module::Starter, and PPM::Make
  • Download Code