From: Nicholas Clark <nick@ccl4.org>
Date: Sat, 18 Oct 2008 17:39:33 +0000 (+0000)
Subject: Damian has transferred Filter::Simple to p5p. Bump its version to 0.83
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=711690a16d2a16be7070e06779c46a6d8f482689;p=p5sagit%2Fp5-mst-13.2.git

Damian has transferred Filter::Simple to p5p. Bump its version to 0.83
with the new contact details, and remove the out-of-date README from
core.

p4raw-id: //depot/perl@34505
---

diff --git a/MANIFEST b/MANIFEST
index f362b8e..762fba0 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -2126,7 +2126,6 @@ lib/filetest.pm			For "use filetest"
 lib/filetest.t			See if filetest works
 lib/Filter/Simple/Changes	Filter::Simple
 lib/Filter/Simple.pm		Simple frontend to Filter::Util::Call
-lib/Filter/Simple/README	Filter::Simple
 lib/Filter/Simple/t/data.t	See if Filter::Simple works
 lib/Filter/Simple/t/export.t	See if Filter::Simple works
 lib/Filter/Simple/t/filter_only.t	See if Filter::Simple works
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 898ea1c..4f0bf87 100644
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -403,14 +403,6 @@ package Maintainers;
 		'CPAN'		=> 1,
 		},
 
-	'Filter::Simple' =>
-		{
-		'MAINTAINER'	=> 'dconway',
-		'FILES'		=> q[lib/Filter/Simple.pm lib/Filter/Simple
-				     t/lib/Filter/Simple],
-		'CPAN'		=> 1,
-		},
-
 	'Filter::Util::Call' =>
 		{
 		'MAINTAINER'	=> 'pmqs',
diff --git a/lib/Filter/Simple.pm b/lib/Filter/Simple.pm
index bd267a9..2e770e8 100644
--- a/lib/Filter/Simple.pm
+++ b/lib/Filter/Simple.pm
@@ -4,7 +4,7 @@ use Text::Balanced ':ALL';
 
 use vars qw{ $VERSION @EXPORT };
 
-$VERSION = '0.82';
+$VERSION = '0.83';
 
 use Filter::Util::Call;
 use Carp;
@@ -774,10 +774,24 @@ BANG;> call must appear by itself on a separate line, or it is ignored.
 
 =head1 AUTHOR
 
-Damian Conway (damian@conway.org)
+Damian Conway
 
-=head1 COPYRIGHT
+=head1 CONTACT
 
-    Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
+Filter::Simple is now maintained by the Perl5-Porters.
+Please submit bug via the C<perlbug> tool that comes with your perl.
+For usage instructions, read C<perldoc perlbug> or possibly C<man perlbug>.
+For mostly anything else, please contact E<lt>perl5-porters@perl.orgE<gt>.
+
+Maintainer of the CPAN release is Steffen Mueller E<lt>smueller@cpan.orgE<gt>.
+Contact him with technical difficulties with respect to the packaging of the
+CPAN module.
+
+Praise of the module, flowers, and presents still go to the author,
+Damian Conway E<lt>damian@conway.orgE<gt>.
+
+=head1 COPYRIGHT AND LICENSE
+
+    Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.
     This module is free software. It may be used, redistributed
     and/or modified under the same terms as Perl itself.
diff --git a/lib/Filter/Simple/Changes b/lib/Filter/Simple/Changes
index 739aaf0..90af3d2 100644
--- a/lib/Filter/Simple/Changes
+++ b/lib/Filter/Simple/Changes
@@ -105,3 +105,10 @@ Revision history for Perl extension Filter::Simple
     - 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.
+
diff --git a/lib/Filter/Simple/README b/lib/Filter/Simple/README
deleted file mode 100644
index 5ec13de..0000000
--- a/lib/Filter/Simple/README
+++ /dev/null
@@ -1,74 +0,0 @@
-==============================================================================
-                  Release of version 0.78 of Filter::Simple
-==============================================================================
-
-
-NAME
-    Filter::Simple - Simplified source filtering
-
-SYNOPSIS
-     # in MyFilter.pm:
-
-	 package MyFilter;
-
-	 use Filter::Simple;
-	 
-	 FILTER { ... };
-
-	 # or just:
-	 #
-	 # use Filter::Simple sub { ... };
-
-
-     # in user's code:
-
-	 use MyFilter;
-
-	 # this is filtered
-
-	 no MyFilter;
-
-	 # this is not
-
-
-DESCRIPTION
-    The Filter::Simple module provides a simplified interface to
-    Filter::Util::Call; one that is sufficient for most common cases.
-
-AUTHOR
-    Damian Conway (damian@conway.org)
-
-COPYRIGHT
-    Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
-    This module is free software. It may be used, redistributed
-        and/or modified under the same terms as Perl itself.
-
-
-==============================================================================
-
-CHANGES IN VERSION 0.78
-
-
-	- Re-corified test modules in line with Jarkko's new scheme
-
-	- Various POD nits unknitted (thanks Autrijus)
-
-	- Added the missing DotsForArrows.pm demo file (thanks Autrijus)
-
-	- Added support for Perl 5.005
-
-	- added prereq for Text::Balanced in Makefile.PL
-
-	- Added note about use of /m flag when using ^ or $ in filter regexes
-
-
-==============================================================================
-
-AVAILABILITY
-
-Filter::Simple has been uploaded to the CPAN
-and is also available from:
-
-	http://www.csse.monash.edu.au/~damian/CPAN/Filter-Simple.tar.gz
-
-==============================================================================