head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.16 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.14 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.12 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.10 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.8 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.6 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.4 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.2 cube-native-xorg-base:1.3; locks; strict; comment @# @; 1.3 date 2008.08.07.08.53.17; author he; state dead; branches; next 1.2; 1.2 date 2008.08.06.09.40.51; author he; state Exp; branches; next 1.1; 1.1 date 2008.08.05.11.22.13; author he; state Exp; branches; next ; desc @@ 1.3 log @Update from version 1.59 to 1.60. Pkgsrc changes: o Remove now-unneeded patch (adopted upstream) Upstream changes: Version 1.60 (2008/08/06) Fixed up the tests some more, updated changelog. (Which I'd forgotten about...) @ text @$NetBSD: patch-aa,v 1.2 2008/08/06 09:40:51 he Exp $ --- t/02-OO_Tests.t.orig 2008-06-01 19:19:04.000000000 +0200 +++ t/02-OO_Tests.t @@@@ -43,7 +43,8 @@@@ 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 { require Test::Output }; + Test::Output->import(); # Check that some of these tags actually work as expected... stdout_is( sub { $HTML->ABBR }, "" ); @@@@ -70,4 +71,4 @@@@ SKIP : { stdout_is( sub { $HTML->nl(0) }, "" ); stdout_is( sub { $HTML->nl(-1) }, "" ); stdout_is( sub { $HTML->nl("a") }, "" ); -} \ No newline at end of file +} @ 1.2 log @Update the patch to the test case, so that it works as intended both with and without p5-Test-Output installed. Since this only affects the tests, no version bump to the package. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @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. @ text @d3 1 a3 1 --- t/02-OO_Tests.t.orig 2008-08-05 12:28:40.000000000 +0200 d5 1 a5 1 @@@@ -43,7 +43,7 @@@@ is_deeply (\@@tags, \@@historic_tags, "Tag d10 2 a11 1 + unless ! eval { use Test::Output }; d15 7 @