From 8519118086d24784504063bbacb4b78570204708 Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Sun, 22 Mar 2020 03:56:09 -0600 Subject: [PATCH] avoid fatpacking JSON::Path::Evaluator --- maint/fatpack.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/maint/fatpack.pl b/maint/fatpack.pl index 66497fa..71d436c 100755 --- a/maint/fatpack.pl +++ b/maint/fatpack.pl @@ -27,11 +27,12 @@ my $core_version = '5.010001'; my $plenv_version = '5.10.1'; my %blacklist_modules = map { $_ => 1 } ( 'perl', - 'Text::Table::ASV', # brought in by Text::Table::Any but not actually required - 'Unicode::GCString', # optional XS module + 'Text::Table::ASV', # brought in by Text::Table::Any but not actually required + 'Unicode::GCString', # optional XS module + 'JSON::Path::Evaluator', # requires perl 5.16 ); my @extra_modules = ( - 'Proc::Find::Parents', # used by Term::Detect::Software on some platforms + 'Proc::Find::Parents', # used by Term::Detect::Software on some platforms ); my $clean = 0; -- 2.43.0