head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.6 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.4 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.2 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.1.1.1.0.8 pkgsrc-2011Q2-base:1.1.1.1 pkgsrc-2011Q1:1.1.1.1.0.6 pkgsrc-2011Q1-base:1.1.1.1 pkgsrc-2010Q4:1.1.1.1.0.4 pkgsrc-2010Q4-base:1.1.1.1 pkgsrc-2010Q3:1.1.1.1.0.2 pkgsrc-2010Q3-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.2 date 2011.08.16.08.30.16; author adam; state dead; branches; next 1.1; 1.1 date 2010.07.11.22.41.59; author seb; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2010.07.11.22.41.59; author seb; state Exp; branches; next ; desc @@ 1.2 log @Changes 0.6.1: * pass '--no-chain-reply-to' explicitly to 'git-send-email'. * git-cpan-sendpatch and git-cpan-sendemail now accept '--compose'. @ text @$NetBSD: patch-aa,v 1.1 2010/07/11 22:41:59 seb Exp $ Prevent a prototype error between File::chmod::chmod() and CORE::chmod() --- lib/Git/CPAN/Patch/Import.pm.orig 2010-06-08 01:03:43.000000000 +0000 +++ lib/Git/CPAN/Patch/Import.pm @@@@ -13,7 +13,7 @@@@ use autodie; use Archive::Extract; $Archive::Extract::PREFER_BIN = 1; -use File::chmod; +use File::chmod qw(); use File::Find; use File::Basename; use File::Spec::Functions; @@@@ -47,9 +47,9 @@@@ sub cpanplus { sub _fix_permissions { my $dir = shift; - chmod "u+rx", $dir; + File::chmod::chmod "u+rx", $dir; find(sub { - -d $_ ? chmod "u+rx", $_ : chmod "u+r", $_; + -d $_ ? File::chmod::chmod "u+rx", $_ : File::chmod::chmod "u+r", $_; }, $dir); } @@@@ -584,4 +584,4 @@@@ as a function so git-backpan-init goes f =cut -1; \ No newline at end of file +1; @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ @ 1.1.1.1 log @Initial import of p5-Git-CPAN-Patch version 0.4.4 in the NetBSD Packages Collection. The Perl 5 module Git::CPAN::Patch provides a suite of git commands aimed at making trivially easy the process of grabbing any distribution off CPAN, stuffing it in a local git repository and, once gleeful hacking has been perpetrated, sending back patches to its maintainer. @ text @@