From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from <gentoo-commits+bounces-395411-garchives=archives.gentoo.org@lists.gentoo.org>) id 1RIRu4-00080m-D0 for garchives@archives.gentoo.org; Mon, 24 Oct 2011 21:17:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B7DE21C0C3; Mon, 24 Oct 2011 21:17:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5BC8A21C0C9 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Oct 2011 21:17:30 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7ABD01B4024 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Oct 2011 21:17:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8A5B380057 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Oct 2011 21:17:28 +0000 (UTC) From: "Kent Fredric" <kentfredric@gmail.com> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" <kentfredric@gmail.com> Message-ID: <a3124f45d1cbeb9170123a31fdd1079a641b2e11.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: scripts/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: scripts/package_log.pl X-VCS-Directories: scripts/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: a3124f45d1cbeb9170123a31fdd1079a641b2e11 Date: Mon, 24 Oct 2011 21:17:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: ee36e7434e2b134cc6a1f6de477ce39f commit: a3124f45d1cbeb9170123a31fdd1079a641b2e11 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com> AuthorDate: Mon Oct 24 21:15:37 2011 +0000 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com> CommitDate: Mon Oct 24 21:15:37 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/perl-overlay.= git;a=3Dcommit;h=3Da3124f45 [scripts/package_log.pl] add a --nosummarize command to get full changes= output --- scripts/package_log.pl | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/scripts/package_log.pl b/scripts/package_log.pl index 1d36d12..70547b3 100644 --- a/scripts/package_log.pl +++ b/scripts/package_log.pl @@ -201,6 +201,10 @@ sub change_for { =20 return unless $file; =20 + if ( $flags->{'nosummarize'} ) { + return $file; + } + require CPAN::Changes; my $changes =3D CPAN::Changes->load_string($file); if ($changes) { @@ -239,11 +243,13 @@ USAGE: # Be verbose about what we're doing package_log.pl Moose --trace --all =20 - --all Show all releases in the log. - --help Show this message - --changes Show ChangeLog Excerpts using CPAN::Changes where possible - --deps Show Dependency data ( as reported via metadata ) - --trace Turn on extra debugging. + --all Show all releases in the log. + --help Show this message + --changes Show ChangeLog Excerpts using CPAN::Changes where poss= ible + --deps Show Dependency data ( as reported via metadata ) + --trace Turn on extra debugging. + --nosummarize Do no processing of Changes data and report it verbati= m + ( Useful when CPAN::Changes gets it wrong :( ) EOF =20 }