From b64360cb48cf5b91c69b65c1e07e1dbe30f3dec1 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Mon, 11 Aug 2025 17:41:25 -0400 Subject: [PATCH] Filter-Simple: Correct ambiguous assignment to INSTALLDIRS Update Changes for versions 0.95, 0.96 and current. --- dist/Filter-Simple/Changes | 22 ++++++++++++++++------ dist/Filter-Simple/Makefile.PL | 1 - dist/Filter-Simple/lib/Filter/Simple.pm | 2 +- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/dist/Filter-Simple/Changes b/dist/Filter-Simple/Changes index d7b8e3c3ce9e..b167c3e6455e 100644 --- a/dist/Filter-Simple/Changes +++ b/dist/Filter-Simple/Changes @@ -52,12 +52,12 @@ Revision history for Perl extension Filter::Simple - Added automatic preservation of existing &import subroutines - - Added automatic preservation of Exporter semantics + - Added automatic preservation of Exporter semantics 0.76 Fri Nov 16 15:08:42 2001 - - Modified call to explicit &import so as to be invoked in original + - Modified call to explicit &import so as to be invoked in original call context @@ -90,7 +90,7 @@ Revision history for Perl extension Filter::Simple - Added Sarathy's patch for \r\n newlinery (thanks Jarkko) - Added recognition of comments as whitespace (thanks Jeff) - + - Added @components variable (thanks Dean) - Fixed handling of vars in FILTER_ONLY code=>... (thanks Lasse) @@ -99,16 +99,16 @@ Revision history for Perl extension Filter::Simple - Added INSTALLDIRS=>core to Makefile.PL - + 0.82 Mon Jun 27 02:31:06 GMT 2005 - + - Fixed INSTALLDIRS=>perl in Makefile.PL (thanks all) - Fixed other problems caused by de-schwernification 0.83 Sat Oct 18 18:51:51 CET 2008 - + - Updated contact details: Maintained by the Perl5-Porters. - Some tiny distribution fixes. @@ -155,4 +155,14 @@ Revision history for Perl extension Filter::Simple no MyFilter; In this case it should simply not filter anything. +0.95 Nov 11 2017 + + - Modernize syntax: 'use vars' -> 'our' + +0.96 Nov 25 2019 + + - Fix for GH #17122 and sanity check for executable_no_comments + +0.97 Mon Aug 11 05:35:34 PM EDT 2025 + - Correct ambiguous double assignment to INSTALLDIRS in Makefile.PL diff --git a/dist/Filter-Simple/Makefile.PL b/dist/Filter-Simple/Makefile.PL index 6ded378cab2f..cc0d4e93843e 100644 --- a/dist/Filter-Simple/Makefile.PL +++ b/dist/Filter-Simple/Makefile.PL @@ -4,7 +4,6 @@ use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Filter::Simple', 'VERSION_FROM' => 'lib/Filter/Simple.pm', - 'INSTALLDIRS' => 'perl', 'LICENSE' => 'perl_5', 'INSTALLDIRS' => ( $] < 5.011 ? 'perl' : 'site' ), 'ABSTRACT_FROM' => 'lib/Filter/Simple.pm', diff --git a/dist/Filter-Simple/lib/Filter/Simple.pm b/dist/Filter-Simple/lib/Filter/Simple.pm index 924c2aecbd3c..e5b68156fa86 100644 --- a/dist/Filter-Simple/lib/Filter/Simple.pm +++ b/dist/Filter-Simple/lib/Filter/Simple.pm @@ -2,7 +2,7 @@ package Filter::Simple; use Text::Balanced ':ALL'; -our $VERSION = '0.96'; +our $VERSION = '0.97'; use Filter::Util::Call; use Carp;