summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-09-16 10:40:53 +0100
committerSam James <sam@gentoo.org>2023-09-19 12:15:31 +0100
commitc0762f060531bd146d6abe93b97e86cb68df04cb (patch)
tree2260c9ecaee6e22f5608e281b7645cbdb1bf63bb /eclass
parentperl-module.eclass: set NONINTERACTIVE_TESTING=1 (diff)
downloadgentoo-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.eclass2
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})