Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 86A8DA5D59 for ; Tue, 15 Jul 2014 20:38:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3633314A165; Tue, 15 Jul 2014 20:38:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B955A14A135 for ; Tue, 15 Jul 2014 20:38:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id kQHhn4pFSYAD for ; Tue, 15 Jul 2014 20:38:05 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id E0B6414A128 for ; Tue, 15 Jul 2014 20:38:04 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id DEBBF96; Tue, 15 Jul 2014 20:38:04 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Tue, 15 Jul 2014 20:38:04 +0000 From: "Amitai Schlair" Subject: CVS commit: pkgsrc/devel/p5-Pod-Usage To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20140715203804.DEBBF96@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: schmonz Date: Tue Jul 15 20:38:04 UTC 2014 Modified Files: pkgsrc/devel/p5-Pod-Usage: Makefile distinfo Log Message: Update to 1.64. From the changelog: 1.64 (marekr) - CPAN#93170: Abstract in pod doesn't follow convention fixed the NAME section - CPAN#86932: documentation does not work with use strict rewritten parts of the DESCRIPTION section - CPAN#86776: "pod2usage -verbose 2 FILE" is broken when perldoc is missing verified that pod2usage acts decently if perldoc is missing note: a Perl installation without perldoc is like a haunted house without ghosts 1.63 (marekr) - CPAN#85477: Module version not updated in last release ...fixed - CPAN#85478: typo fixes ...corrected 1.62 (marekr) Patches provided by rjbs - many thanks! - These commits update Pod::Usage to only use Pod::Simple, so that any reliance on Pod::Parser is removed, making it easier to remove Pod::Parser from core. - [PATCH 1/4] update Makefile: strict, INSTALLDIR, 5.6 - [PATCH 2/4] we will start to require perl 5.6 from here on out - [PATCH 3/4] always use Pod::Text as default base class - [PATCH 4/4] eliminate the branch in which Pod::Parser would be used This commit is intended entirely to free Pod::Usage from any reliance on Pod::Parser. * Usage.pm now defaults to using Pod::Text, rather than checking $] to pick. * $Pod::Select::MAX_HEADING_LEVEL is replaced with a local var * &Pod::Select::_compile_section_spec is copied into this module This isn't the most elegant fix, but it's a bit of a ball of mud. The code is written to let you alter @ISA at runtime to something that is derived either from Pod::Parser or Pod::Simple. This should probably be more explicitly limited to Pod::Simple in future releases. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/p5-Pod-Usage/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/p5-Pod-Usage/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.