Commit graph

25 commits

Author SHA1 Message Date
seb
c3f1e700ad Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
2010-08-21 16:32:42 +00:00
seb
4ec4d3180e Update p5-Pod-Simple from version 3.13 to version 3.14.
Upstream changes:
2009-04-27
	* Release 3.14

	Removed explicit loading of UNIVERSAL. RJBS.

	Reversed the change applied in release 3.09 to fix RT #12239. POD
	tag found inside a complex POD tag (e.g., "C<<< I<foo> >>>") is
	again parsed as a tag embedded in a tag instead of text and
	entities. The previous interpretation of `perldoc perlpod` was
	mistaken. (RT #55602 from Christopher J. Madsen).
2010-05-24 21:33:45 +00:00
sno
be645c141b Updating textproc/p5-Pod-Simple from 3.11 to 3.13
Upstream changes:
2009-12-17 Release 3.13 - David E. Wheeler <david@justatheory.org>
	Removed deleted test file from MANIFEST.

2009-12-17 Release 3.12 - David E. Wheeler <david@justatheory.org>
	Removed "All rights reserved" from all files.

	Added acknowledgements to man.he.net and search.cpan.org for
	permission to link man pages and Perl module links to their sites
	in the output of Pod::Simple::HTML and Pod::Simple::XHTML.

	Add "html_h_level" option to Pod::Simple::XHTML and ::HTML to allow
	a =head1 to become an <h2> and so on. RJBS.

	Add batch_mode_page_object_init() method to Pod::Simple::XHTML.
	This allows it to be used by Pod::Simple::HTMLBatch.

	Fixed a regression in Pod::Simple::XHTML where '=begin html' blocks
	were incorrectly escaped rather than simply passed through unmolested.
	RJBS.

	Removed the undocumented "fullstop_space_harden" attribute, which
	apparently was only used by Pod::Text a very long time ago.
2010-01-16 23:42:51 +00:00
wiz
f1618e7f7c Update to 3.11:
2009-12-09   David E. Wheeler <david@justatheory.org>
	* Release 3.11

	Restored code to HTMLBatch that allows the TOC (index) to be created
	in batch jobs (RT #52324 from Martin J. Evans).

	Added resources to META.yml, including bug tracker, license, and
	repository.

	Turned man page links into links to man.he.net in Pod::Simple::HTML
	and Pod::Simple::XHTML output. Subclass and override
	resolve_man_page_link() to use a different URL.

	Added the resolve_pod_page_link() and resolve_man_page_link() methods
	to Pod::Simple::XHTML to make it easier for subclasses to change the
	URLs created for POD and man page links.

	Fixed the output of entities in L<> tags by Pod::Simple::XHTML.

	Fixed the output of POD links from Pod::Simple::XHTML so that the
	section part (/foo) is turned into a proper fragment identfier (#foo)
	in the resulting search.cpan.org link.

	Pod::Simple::Text now outputs URLs for links created in the
	L<text|URL> format. For example, L<Perl|http://perl.org> is now
	output as "Perl <http://perl.org>" rather than just as "Perl".

	Updated perlpod.pod and perlpodspec.pod to sync up with Perl core
	(and to be released in Perl 5.12). Changes include:
	* Removing the prohibition against L<text|href>
	* Deprecation of L<section> and L<"section">
	* Legalization of "=begin formatname parameter"

	A couple of bug fixes in Pod::Simple::HTML from Graham Barr.

	Added the do_section() method to Pod::Simple::HTML. Graham Barr.

	Word-smithed the "DESCRIPTION" a bit and wrote the README.

	Synced up all module version numbers to 3.11 except for
	Pod::Simple::HTMLLegacy, which is at 5.01 and should not have its
	version number lowered.

2009-11-12   David E. Wheeler <david@justatheory.org>
	* Release 3.11

	Converted test files that had DOS endings to have Unix endings
	(RT #50922 from Steve Hay).

	Skip tests on VMS where the lack of filename case preservation can
	wreak havoc (RT #51184 from Craig A. Berry).

	Fix nested definition list format in the XHTML output
	(RT #51187 from Lars Dɪᴇᴄᴋᴏᴡ).

	Added some files missing from the MANIFEST (and therefore the
	distribution) in the last two releases.
2009-12-15 13:33:55 +00:00
heinz
02cfda03b4 Updated to version 3.09.
Pkgsrc changes:
  - none

Changes since version 3.08:
===========================
	Add support for an index (TOC) in the XHTML output from David E.
	Wheeler.

	Add strip_verbatim_indent() from David E. Wheeler.

	Added the "nocase" option to PullParser's get_title(),
	get_version(), get_description(), and get_author() methods. This
	allows one to fetch the contents of those sections regardless of
	the case of the labels (e.g., "NAME" and "Name" and "name" are all
	valid). Graham Barr.

	Added the search_class() accessor to Pod::Simple::HTMLBatch.
	David E. Wheeler.

	XHTML output now properly encodes entities in all places, not just
	in verbatim blocks and code spans. David E. Wheeler.

	Fixed XHTML to output definition lists when it should, rather than
	(broken) unordered lists. David E. Wheeler.

	Fixed XHTML so that multiparagraph list items work correctly.
	David E. Wheeler.

	Fixed XHTML ordered list output so that it does not include the
	number specified in the POD in the output. This is on a par with
	out the HTML output works. David E. Wheeler.

	Applied URL patch from Leon Brocard for The Perl Journal archives.

	Fixed test failures with older versions of HTML::Entities (RT #43903
	from Salvador Tercia).

	Changed CSS files generated by HTMLBatch to be no more than 8.3
	characters long. (RT #40450 from Renee Baecker)

	Added entity handling for E<sol> and E<verbar> to Pod::Simple::XHTML.
	(RT #49615 from Chas Owens.)

	Fixed a bug in Pod::Simple::HTML where a definition term item with
	no corresponding definition item would be output with no closing
	</a></dt>. (RT # 37107 from Kevin Ryde).

	Added entity handling for numeric entities to Pod::Simple::XHTML,
	following perlpod specification.

	A POD tag found inside a complex POD tag (e.g., "C<<< C<foo> >>>")
	is now properly parsed as text and entities instead of a tag
	embedded in a tag. This is in compliance with `perldoc perlpod`
	(RT #12239 from Michael Schwern).

	Thanks to David E. Wheeler for applying patches, resolving bugs,
	and generally getting ready for the release.
2009-11-05 19:42:14 +00:00
sno
da76308a67 Updating package for p5 module Pod::Simple from 3.07nb1 to 3.08
pkgsrc changes:
  - Adding license (perl5 license)

Upstream changes:
2009-07-16   Allison Randal <allison@perl.org>
	* Release 3.08

	Fix installdirs for Perl versions where Pod::Simple was core;
        RT#36446 & RT#39709, thanks to Jerry Hedden.

	Fix encoding handling for code in paragraphs; RT#45829, thanks
        to David Wheeler.
2009-08-09 08:01:29 +00:00
he
b021813da0 Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
2008-10-19 19:17:40 +00:00
he
512803bc28 Update from version 3.05 to 3.07. Changes:
2008-06-04   Allison Randal <allison@perl.org>
	* Release 3.07

	Fix module dependencies, make HTML::Entities optional and require
	Test::More.

2008-06-03   Allison Randal <allison@perl.org>
	* Release 3.06

	Fix bugs related to passing $1 to File::Spec, reported by
	Andrew Hamlin and John McNamara.

	Applied a suggested fix from Kevin Ryde to return a successful exit
	code when Pod::Simple::HTML is run from the command line.

	Fix handling of complex L<URL> entries, thanks to tests
	supplied in RT#4896.

	Fix incorrect handling of S<> entries made up of entirely
	whitespace, thanks to test case from Andreas Koenig.

	Launch Pod::Simple::XHTML, an XHTML compliant, more easily extensible
	HTML formatter.

	Add feature to parse additional text after =begin target as a block
	title, requested by Adam Kennedy.

	Thanks to Hans Dieter Pearcey for applying patches, resolving bugs,
	and generally getting ready for the release.
2008-08-11 14:59:49 +00:00
joerg
ba171a91fa Add DESTDIR support. 2008-06-12 02:14:13 +00:00
jlam
56ba4d2690 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
2007-10-25 16:54:26 +00:00
obache
ae1ed492b0 Update p5-Pod-Simple to 3.05.
Patch provided by Mark E. Perkins in PR 36465.

2007-03-03   Allison Randal <allison@perl.org>
	* Release 3.05

	Standardized all test files on 8.3 naming scheme for Perl core.

	Applied test patches from Jerry Hedden for Perl core when
	Encode not installed.

	Applied test patch from Ken Williams for 5.005_04 compatibility.

	Applied a patch from Christopher Madsen to fix architecture
	directory searches on Gentoo.

	Fixed a failing search test on Debian-based distributions caused
	by Debian stripping Pod documentation out of core modules.
	(Three cheers to the CPAN testers and James Ponza for sending
	enough reports that I could work out the pattern.)
2007-06-10 09:43:02 +00:00
obache
c7a43dd352 Update p5-Pod-Simple to 3.04.
Based on patch provided by Martin Wilke via PR 34418.
And this version depend on p5-Pod-Escapes>=1.04.

2006-01-18   Allison Randal <allison@perl.org>
	* Release 3.04

	Applied test patches for Perl core integration from Steve Peters.

	Added a 'reinit' method to Pod::Simple::BlackBox for Russ Allbery
	so Pod::Man can provide backward compatibility to existing users
	(such as Module::Build and ExtUtils::MakeMaker).

	Applied patch for extracting case-preserved package names on VMS
	from Craig Berry.
2006-10-21 09:19:22 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00
wiz
f84924d996 Update to 3.03:
2005-11-21   Allison Randal
	* Release 3.03

	Applied whitespace patches for Pod::Man and Pod::Text from
        Russ Allbery.

	Applied validation patches to Pod::Simple::HTML from Graham Barr.
2005-11-22 23:04:04 +00:00
tv
cefe1c22a6 The problem was a mirror not in MASTER_SITES_PERL_CPAN that had a corrupted
distfile.  I've notified the site maintainer; reverted pkg to prior state.

Checked all the pkgsrc-official mirrors; they have the right sha1.

(I must not be having a good day.  :)
2005-09-16 13:40:36 +00:00
tv
a0c1013fed I take that back. CPAN's copy of the distfile is corrupted in a bad way.
For now, request netbsd.org as the MASTER_SITES until this is fixed.
2005-09-16 13:32:20 +00:00
tv
e7727f49fc The checksum on the distfile changed, so update distinfo to match.
(Checked three times ... yet the size never changed.  Bizarre.)
2005-09-16 13:26:15 +00:00
jlam
7fbb8d9527 Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.
2005-08-06 06:19:03 +00:00
jlam
7a6521287b Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.
2005-07-13 18:01:18 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
wiz
f44c97d74b Add HOMEPAGE. 2005-03-22 13:53:09 +00:00
agc
c71cac836a Add RMD160 digests to the SHA1 ones. 2005-02-24 14:48:39 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-20 11:30:55 +00:00
seb
b3c5242ff9 It seems that the Perl module Pod::Escapes is needed by Pod::Simple: add
a dependency on it. Now the 'test' target pass.

Bump PKGREVISION.
2004-10-31 22:16:38 +00:00
epg
d0c0c32e9e Import p5-Pod-Simple-3.02.
Pod::Simple is a Perl library for parsing text in the Pod ("plain
old documentation") markup language that is typically used for
writing documentation for Perl and for Perl modules.

Pod formatters can use Pod::Simple to parse Pod documents into
produce renderings of them in plain ASCII, in HTML, or in any number
of other formats.
2004-09-26 04:41:03 +00:00