New review comment by newbluemoon on void-packages repository https://github.com/void-linux/void-packages/pull/33266#discussion_r753803705 Comment: You shouldn’t have to add `perl-Test-Simple` because it’s provided by perl itself: ``` $ corelist Test::Simple Data for 2021-05-20 Test::Simple was first released with perl v5.6.2 ``` The above error is because `perl` provides `perl-Test-Simple` (see the perl template) and installing `perl-Test-Simple` tries to replace the `perl` package with it, but the packages listed above depend on `libperl.so.5.34` which would then be missing and therefore `xbps-install` aborts. The stand-alone `perl-Test-Simple` package has been removed in https://github.com/void-linux/void-packages/commit/ef5218bc12484eab1ecfcd6527eb07da39a0896b but was later re-added in https://github.com/void-linux/void-packages/commit/78d94807596081fa332c799058ca1a94a871d6d6; don’t know why, maybe to have an up-to-date version for some reasons; perhaps @zdykstra can shed some light on this. ;) As for `perl -MTest::More::UTF8`: you probably have it installed somewhere on your system, but there is no Void package. So if you want to use it here, you have to package it too, and add it to this PR as a separate commit.