Update p5-Apache-Filter from 1.019 to 1.022.

Add a HOMEPAGE pointing into search.cpan.org.
Adapt the patch to the new version of the package.

Change log:

Version: 1.022  Fri Jan 31 14:00:48 CST 2003

 - Now can be installed using either Module::Build or
   ExtUtils::MakeMaker.

 - Simplified a few of the TIEHANDLE code chunks that used substr() to
   manipulate saved filehandle data.

Version: 1.021   Fri Dec 27 10:13:23 CST 2002

 - The test suite now provides a bit more useful information upon
   failure and uses Test.pm to generate its output.

 - Avoid an "undefined value" warning in READLINE() method [Dave
   Rolsky]

 - If the initial $r isn't an Apache object (could be Apache::Request
   or a subclass of Apache), make an on-the-fly subclass of whatever
   it is. [Dave Rolsky]

Version: 1.020  Date: Mon Nov 11 17:11:31 AEST 2002
   Fixed the Apache::PerlRunFilter module, which was missing a call to
   filter_register(). [Ruslan U. Zakirov, Oleh Khoma]

   Minor regex speedup in READLINE() method of filehandle.

   Correct doc bug about Filter2 and Filter3.

   Add Apache::HTML::ClassParser to list of filter-aware modules.
This commit is contained in:
he 2004-11-27 14:49:35 +00:00
parent 93f04672c0
commit dcf18e77f3
3 changed files with 14 additions and 16 deletions

View file

@ -1,12 +1,13 @@
# $NetBSD: Makefile,v 1.8 2004/05/09 06:48:40 snj Exp $
# $NetBSD: Makefile,v 1.9 2004/11/27 14:49:35 he Exp $
DISTNAME= Apache-Filter-1.019
DISTNAME= Apache-Filter-1.022
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5afi
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Apache/}
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://search.cpan.org/~kwilliams/Apache-Filter-1.022/
COMMENT= Perl5 module to alter the output of previous Apache handlers
USE_BUILDLINK3= YES

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2001/10/01 02:09:46 jlam Exp $
$NetBSD: distinfo,v 1.2 2004/11/27 14:49:35 he Exp $
SHA1 (Apache-Filter-1.019.tar.gz) = 66e5ab2c7798d7053ccca3e1f12dfde4856e2897
Size (Apache-Filter-1.019.tar.gz) = 25509 bytes
SHA1 (patch-aa) = f9d99a57056051115b494f9d51f5071863f28b29
SHA1 (Apache-Filter-1.022.tar.gz) = 6377a8a4f85d4f57773bbfbc47fa1df809a1e4a5
Size (Apache-Filter-1.022.tar.gz) = 26259 bytes
SHA1 (patch-aa) = f5fe220731856ca08f945f4d2ff2827fdcf90f75

View file

@ -1,29 +1,26 @@
$NetBSD: patch-aa,v 1.1.1.1 2001/10/01 02:09:46 jlam Exp $
$NetBSD: patch-aa,v 1.2 2004/11/27 14:49:35 he Exp $
--- Makefile.PL.orig Wed Aug 29 14:33:47 2001
--- Makefile.PL.orig Fri Jan 31 20:36:41 2003
+++ Makefile.PL
@@ -1,14 +1,6 @@
@@ -1,13 +1,6 @@
use strict;
use ExtUtils::MakeMaker;
use lib 't/lib'; # distributed here until changes are incorporated into the real version
-use Apache::test qw(have_httpd);
-
-my %params = Apache::test->get_test_params();
-chomp (my $cwd = `pwd`);
-Apache::test->write_httpd_conf
- (%params,
- include => do {local $/; <DATA>});
- include => do {local $/; open FH, 't/config.incl'; <FH>});
-*MY::test = sub { Apache::test->MM_test(%params) } if have_httpd();
my $module = 'Apache::Filter';
my ($name, $dir);
@@ -27,9 +19,6 @@
),
@@ -27,7 +20,4 @@ WriteMakefile
},
'PL_FILES' => {},
'clean' => {FILES => "t/httpd t/httpd.conf t/error_log"},
- 'PREREQ_PM' => {
- have_httpd() ? ('mod_perl' => '1.24_01') : (),
- 'mod_perl' => '1.24_01',
- },
);
##################################################################