Sun Apr 26 09:45:51 2015 UTC ()
Update 3.28 to 3.30
       ( From the entry 2015-01-13  * Release 3.29)
	NOTE: This will be the last release of Pod::Simple to support versions
	of Perl earlier than 5.6.
-------------------
2015-02-23   David E. Wheeler <david@justatheory.org>
	* Release 3.30
	No changes since 3.29_6.

2015-02-19   David E. Wheeler <david@justatheory.org>
	* Release 3.29_6
	The survey() method in Pod::Simple::Search now ignores duplicat
	files with varying lettercasing on case-insensitive file systems.
	This allows

	When pondering files in a given directory, the survey() method in
	Pod::Simple::Search now prefers files with extensions in the
	following order: no extension, .pod, .pm, .plx, .pl.

	The find() method in Pod::Simple::Search now records the './pod'
	subdirectory of each directory it considers in such a way as to
	preserve its case on the file system.

	The find() method in Pod::Simple::Search now tries harder to find
	the proper file on case-insensitive file systems when searching
	for modules starting with "Pod". For example, when searching for
	'Pod::Perldoc' it now returns a file ending in 'Pod/Perldoc.pm'
	instead of 'Pod/perldoc.pod', as the latter is actually the
	documention for the 'perldoc' program.

2015-02-17   David E. Wheeler <david@justatheory.org>
	* Release 3.29_5
	No changes except that the release tarball should no longer be empty.

2015-02-16   David E. Wheeler <david@justatheory.org>
	* Release 3.29_4
	Removed "Caveats" from the docs. Pod::Simple has been out of beta
	for years.

	The survey() method in Pod::Simple::Search no longer assumes that
	files ending in '.pod' are actually Pod. Like .pm and .pl files,
	.pod files must contains at least one valid POD command, as
	documented. This brings the behavior in line with find(), which
	already required that .pod files contain Pod.

	The survey() method in Pod::Simple::Search now prefers files
	ending in .pod over those ending in .pm, and .pm over those ending
	in .pl, when it finds duplicate pod files for a given name.

2015-02-11   David E. Wheeler <david@justatheory.org>
	* Release 3.29_3
	Tightened up the first pass at recognizing a Pod command so that
	fewer invalid Pod lines will be recognized. Suggested by Randy
	Stauner.

	Fixed bug where Pod::Simple would attempt to call
	utf8::unicode_to_native on Perl 5.6, where that function does not
	exist.

	Typos and minor wordsmithing changes in Pod::Simple::Subclassing,
	thanks to Randy Stauner.

	The Pod::Simple::Search survey() and find() methods now use the same
	code for determining @INC directories to search. The only difference
	is that find() also includes $Config::Config{'scriptdir'}.

2015-01-13   David E. Wheeler <david@justatheory.org>
	* Release 3.29
	NOTE: This will be the last release of Pod::Simple to support versions
	of Perl earlier than 5.6.

	Fixed test failure for unsupported encoding on Perl 5.6.

	Removed unnecessary dependency on constant. Reported by Petr Pisar
	(RT #85578).

	Many documentation and comment typos fixed by David Steinbrunner.

	Fixed issue when an encoding is declared via an '=encoding' directive
	*after* Pod::Simple has already detected an encoding. Thanks to
	Graham Knop for the patch and Patrice Dumas for the tests.

	Added '>&STDERR' as an output to better emulate
	Pod::Parser::parse_from_file(). Florent Angly.

	Tidied the description of the different Pod::Simple interfaces,
	with greater emphasis on the four different steps to subclassing.
	Florent Angly.

	Added the 'top_anchor' attribue to Pod::Simple::HTML, to allow
	specification of a custom top anchor format. Gabor Szabo.

	Fixed the text formatter to properly set the Text::Wrap overflow policy.
	Thanks to Nigel Metheringham for the fix!

	Fixed mis-matched quotation marks when adding JavaScript elements
	to the XHTML output. Patch from jonathancast.

	Fixed issues on EBCDIC. Patch from Karl Williamson (GitHub Pull
	Request #58).

	Fixed bug where the value passed to Pod::Simple::XHTML's
	html_css() method would be output twice. Thanks to Andrew Johnson
	for the report (RT #99303).

	Documented the 'recurse' attribute of Pod::Simple::Search.
	Thanks to Jim Keenan for the report (RT #91886).

	An error is no longer thrown when '=encoding' directives are found
	on subsequent lines. Instead, we now log a an error message,
	"Cannot have multiple =encoding directives" (RT #91757).

	The HTML and XHTML formatters now do a better job of preserving
	lines in 'begin html' blocks. Fixes a bug that dates from 2002
	(Perl RT#9385, CPAN RT #91851).


(mef)
diff -r1.34 -r1.35 pkgsrc/textproc/p5-Pod-Simple/Makefile
diff -r1.18 -r1.19 pkgsrc/textproc/p5-Pod-Simple/distinfo

cvs diff -r1.34 -r1.35 pkgsrc/textproc/p5-Pod-Simple/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/p5-Pod-Simple/Attic/Makefile 2014/10/09 14:07:04 1.34
+++ pkgsrc/textproc/p5-Pod-Simple/Attic/Makefile 2015/04/26 09:45:51 1.35
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.34 2014/10/09 14:07:04 wiz Exp $ 1# $NetBSD: Makefile,v 1.35 2015/04/26 09:45:51 mef Exp $
2 2
3DISTNAME= Pod-Simple-3.28 3DISTNAME= Pod-Simple-3.30
4PKGNAME= p5-${DISTNAME} 4PKGNAME= p5-${DISTNAME}
5PKGREVISION= 3 
6CATEGORIES= devel perl5 5CATEGORIES= devel perl5
7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Pod/} 6MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Pod/}
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://search.cpan.org/dist/Pod-Simple/ 9HOMEPAGE= http://search.cpan.org/dist/Pod-Simple/
11COMMENT= Simple framework for parsing Pod 10COMMENT= Simple framework for parsing Pod
12LICENSE= ${PERL5_LICENSE} 11LICENSE= ${PERL5_LICENSE}
13 12
14DEPENDS+= {perl>=5.9.3,p5-Pod-Escapes>=1.04}:../../textproc/p5-Pod-Escapes 13DEPENDS+= {perl>=5.9.3,p5-Pod-Escapes>=1.04}:../../textproc/p5-Pod-Escapes
15 14
16PERL5_PACKLIST= auto/Pod/Simple/.packlist 15PERL5_PACKLIST= auto/Pod/Simple/.packlist
17 16
18.include "../../lang/perl5/module.mk" 17.include "../../lang/perl5/module.mk"

cvs diff -r1.18 -r1.19 pkgsrc/textproc/p5-Pod-Simple/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/p5-Pod-Simple/Attic/distinfo 2013/05/06 15:55:42 1.18
+++ pkgsrc/textproc/p5-Pod-Simple/Attic/distinfo 2015/04/26 09:45:51 1.19
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.18 2013/05/06 15:55:42 wen Exp $ 1$NetBSD: distinfo,v 1.19 2015/04/26 09:45:51 mef Exp $
2 2
3SHA1 (Pod-Simple-3.28.tar.gz) = 2a53a0bbaa4ca6d182c1d2400d555be454d3d890 3SHA1 (Pod-Simple-3.30.tar.gz) = 311760fe327c0fab62ec0d60da61f080ccf47b6f
4RMD160 (Pod-Simple-3.28.tar.gz) = ef7998debf3c0931661d6a9b8e88eda76c1cc9b6 4RMD160 (Pod-Simple-3.30.tar.gz) = 612925ef8ff591e227be3df7c9ba3777195e1c8e
5Size (Pod-Simple-3.28.tar.gz) = 244687 bytes 5Size (Pod-Simple-3.30.tar.gz) = 251641 bytes