Skip Menu |

This queue is for tickets about the Text-VCardFast CPAN distribution.

Report information
The Basics
Id: 118712
Status: resolved
Priority: 0/
Queue: Text-VCardFast

People
Owner: BRONG [...] cpan.org
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.08
Fixed in: 0.10



Subject: bench.pl is installed
ExtUtils::MakeMaker install *.pm and *.pl files by default. This causes installation of bench.pl with other *.pm files. I think this is a bug.
From: ppisar [...] redhat.com
Attached patch fixes it.
Subject: 0001-Do-not-install-bench.pl.patch
From 7202ef7e24e8fcc08966cc63e88869d2d1011bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Fri, 11 Nov 2016 11:52:54 +0100 Subject: [PATCH] Do not install bench.pl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CPAN RT#118712 Signed-off-by: Petr Písař <ppisar@redhat.com> --- Makefile.PL | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.PL b/Makefile.PL index a02eb6f..d38bc85 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,6 +11,9 @@ WriteMakefile( ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/Text/VCardFast.pm', # retrieve abstract from module AUTHOR => 'Bron Gondwana <brong@>') : ()), + # Do not install bench.pl + PM => { 'lib/Text/VCardFast.pm' => + '$(INST_LIB)/Text/VCardFast.pm'}, LIBS => [''], # e.g., '-lm' DEFINE => '', # e.g., '-DHAVE_SOMETHING' INC => '-I.', # e.g., '-I. -I/usr/include/other' -- 2.7.4
On Fri Nov 11 05:54:53 2016, ppisar wrote: Show quoted text
> ExtUtils::MakeMaker install *.pm and *.pl files by default. This > causes installation of bench.pl with other *.pm files. I think this is > a bug.
hah, I was too fast - I already pushed 0.09 with a fix to your previous bug. I'll wait until you're finished filing and do 0.10 with a fix for this too. (probaby by moving bench.pl into a directory or something) Cheers, Bron.
Subject: Re: [rt.cpan.org #118712] bench.pl is installed
Date: Fri, 11 Nov 2016 12:05:09 +0100
To: BRONG via RT <bug-Text-VCardFast [...] rt.cpan.org>
From: Petr Pisar <ppisar [...] redhat.com>
On Fri, Nov 11, 2016 at 05:58:33AM -0500, BRONG via RT wrote: Show quoted text
> hah, I was too fast - I already pushed 0.09 with a fix to your previous bug. > I'll wait until you're finished filing and do 0.10 with a fix for this too. >
I'm done. I found only these two issue. Thank you for the very fast response. -- Petr
Download signature.asc
application/pgp-signature 213b

Message body not shown because it is not plain text.

On Fri Nov 11 05:54:53 2016, ppisar wrote: Show quoted text
> ExtUtils::MakeMaker install *.pm and *.pl files by default. This > causes installation of bench.pl with other *.pm files. I think this is > a bug.
I wound up just moving bench.pl to a subdir where it doesn't get installed