diff options
author | he <he@pkgsrc.org> | 2004-11-27 14:49:35 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2004-11-27 14:49:35 +0000 |
commit | dcf18e77f30be39c727866372b54f9083457d45d (patch) | |
tree | f4f364d08a8f173c86a78b5d3de3efd43011b5b2 | |
parent | 93f04672c0ad1eee8c9057094bacac3b6097d628 (diff) | |
download | pkgsrc-dcf18e77f30be39c727866372b54f9083457d45d.tar.gz |
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.
-rw-r--r-- | www/p5-Apache-Filter/Makefile | 5 | ||||
-rw-r--r-- | www/p5-Apache-Filter/distinfo | 8 | ||||
-rw-r--r-- | www/p5-Apache-Filter/patches/patch-aa | 17 |
3 files changed, 14 insertions, 16 deletions
diff --git a/www/p5-Apache-Filter/Makefile b/www/p5-Apache-Filter/Makefile index 99638bc42ee..b0788a8c7d6 100644 --- a/www/p5-Apache-Filter/Makefile +++ b/www/p5-Apache-Filter/Makefile @@ -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 diff --git a/www/p5-Apache-Filter/distinfo b/www/p5-Apache-Filter/distinfo index 13817fa110e..195d6ebeb0d 100644 --- a/www/p5-Apache-Filter/distinfo +++ b/www/p5-Apache-Filter/distinfo @@ -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 diff --git a/www/p5-Apache-Filter/patches/patch-aa b/www/p5-Apache-Filter/patches/patch-aa index 89e8095d8a3..ae680a28365 100644 --- a/www/p5-Apache-Filter/patches/patch-aa +++ b/www/p5-Apache-Filter/patches/patch-aa @@ -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', - }, ); - - ################################################################## |