commit: c0762f060531bd146d6abe93b97e86cb68df04cb Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 16 09:40:53 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Sep 19 11:15:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0762f06
perl-module.eclass: disable Canary::Stability Canary::Stability emits very vocal warnings about "unsupported" Perl versions even if they're fine in reality. It's not worth scaring our users over. See https://metacpan.org/pod/Canary::Stability#ENVIRONMENT-VARIABLES. Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/perl-module.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 83f94865e021..c9b690992f22 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -220,6 +220,8 @@ perl-module_src_configure() { [[ -z ${pm_echovar} ]] && export PERL_MM_USE_DEFAULT=1 # Disable ExtUtils::AutoInstall from prompting export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" + # Noisy and not really appropriate to show to the user in a PM + export PERL_CANARY_STABILITY_DISABLE=1 if [[ $(declare -p myconf 2>&-) != "declare -a myconf="* ]]; then local myconf_local=(${myconf})
