diff options
author | Sam James <sam@gentoo.org> | 2023-09-16 10:40:53 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-09-19 12:15:31 +0100 |
commit | c0762f060531bd146d6abe93b97e86cb68df04cb (patch) | |
tree | 2260c9ecaee6e22f5608e281b7645cbdb1bf63bb /eclass | |
parent | perl-module.eclass: set NONINTERACTIVE_TESTING=1 (diff) | |
download | gentoo-c0762f060531bd146d6abe93b97e86cb68df04cb.tar.gz gentoo-c0762f060531bd146d6abe93b97e86cb68df04cb.tar.bz2 gentoo-c0762f060531bd146d6abe93b97e86cb68df04cb.zip |
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@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-module.eclass | 2 |
1 files changed, 2 insertions, 0 deletions
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}) |