diff options
author | he <he@pkgsrc.org> | 2008-08-05 11:22:13 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2008-08-05 11:22:13 +0000 |
commit | 787460e5be96ab47558f3d09b454a2536cafc020 (patch) | |
tree | dfe53c5c7fbc88ad801033b5d3146a236b0fb0aa | |
parent | 20cca7e4a57b50baa1e86d09adaf30ef7ee69685 (diff) | |
download | pkgsrc-787460e5be96ab47558f3d09b454a2536cafc020.tar.gz |
Update from version 1.55 to 1.59.
Pkgsrc changes:
o Fix a problem with using p5-Test-Output (optional, not DEPENDS+= here)
Upstream changes (from README file; missing updated Changes reported):
Version 1.59 (2008/06/01)
Better tests, better Meta.yml.
Version 1.58 (2008/05/28)
Another attempt at cleanup, as well expanding the Meta.yml file.
Version 1.57 (2008/05/28)
Cleaned up the Mac-specific files that were getting created in the
archive.
Version 1.56 (2008/05/27)
Added the start of a testing suite. In the process, I found an
error: HTML defines the tag 'NOFRAMES', not 'NOFRAME'. Both are
currently in the tag list, but consider 'NOFRAME' depriciated.
The test suite requires Test::More and Test::Output.
-rw-r--r-- | www/p5-HTML-Stream/Makefile | 4 | ||||
-rw-r--r-- | www/p5-HTML-Stream/distinfo | 9 | ||||
-rw-r--r-- | www/p5-HTML-Stream/patches/patch-aa | 13 |
3 files changed, 20 insertions, 6 deletions
diff --git a/www/p5-HTML-Stream/Makefile b/www/p5-HTML-Stream/Makefile index 6777db2aad1..5017c8bcb74 100644 --- a/www/p5-HTML-Stream/Makefile +++ b/www/p5-HTML-Stream/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2008/07/20 16:09:35 heinz Exp $ +# $NetBSD: Makefile,v 1.4 2008/08/05 11:22:13 he Exp $ -DISTNAME= HTML-Stream-1.55 +DISTNAME= HTML-Stream-1.59 PKGNAME= p5-${DISTNAME} CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/} diff --git a/www/p5-HTML-Stream/distinfo b/www/p5-HTML-Stream/distinfo index 5dc79fbc087..dd981c907e8 100644 --- a/www/p5-HTML-Stream/distinfo +++ b/www/p5-HTML-Stream/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/11/19 12:43:04 rillig Exp $ +$NetBSD: distinfo,v 1.2 2008/08/05 11:22:13 he Exp $ -SHA1 (HTML-Stream-1.55.tar.gz) = 246574bb4327c61acbf6170cfe7cbad13d769b09 -RMD160 (HTML-Stream-1.55.tar.gz) = 4c4945733eef3be39107edc700e9ffa7044f5723 -Size (HTML-Stream-1.55.tar.gz) = 60548 bytes +SHA1 (HTML-Stream-1.59.tar.gz) = f0e2214ca6543446b2aa1311872806a616029abf +RMD160 (HTML-Stream-1.59.tar.gz) = adaa54013c4bcbe64097430960877e12b2a8d881 +Size (HTML-Stream-1.59.tar.gz) = 61947 bytes +SHA1 (patch-aa) = f8f9d63d0efd39ea1c4e1484273e7663cea44928 diff --git a/www/p5-HTML-Stream/patches/patch-aa b/www/p5-HTML-Stream/patches/patch-aa new file mode 100644 index 00000000000..1d974cbc75d --- /dev/null +++ b/www/p5-HTML-Stream/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2008/08/05 11:22:13 he Exp $ + +--- t/02-OO_Tests.t.orig 2008-08-05 12:28:40.000000000 +0200 ++++ t/02-OO_Tests.t +@@ -43,7 +43,7 @@ is_deeply (\@tags, \@historic_tags, "Tag + # Skip tests if we can't run them. + SKIP : { + skip 'Test::Output is needed for OO tests to run.', 16 +- unless eval { require 'Test::Output' }; ++ unless ! eval { use Test::Output }; + + # Check that some of these tags actually work as expected... + stdout_is( sub { $HTML->ABBR }, "<ABBR>" ); |