Subject: | This distro should not provide the DynaLoader package |
MetaCPAN says that this distro provides the DynaLoader package because of this line - https://metacpan.org/source/BINGOS/ExtUtils-MakeMaker-7.38/lib/ExtUtils/Mkbootstrap.pm#PDynaLoader
This can be fixed with a simple "hide the package from PAUSE" trick:
package # Hide from PAUSE
DynaLoader;
Splitting the `package` declaration into two lines keeps PAUSE from seeing it but does not change how Perl interprets the code.