Skip Menu |

This queue is for tickets about the Getargs-Long CPAN distribution.

Report information
The Basics
Id: 33430
Status: resolved
Priority: 0/
Queue: Getargs-Long

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.1002
Fixed in: (no value)



Subject: Bundled Module::Install is dated
Your inc directory contains ExtUtils::AutoInstall 0.63 which is broken and deprecated. Please consider upgrading to Module::Install 0.68 and remove the ExtUtils::AutoInstall. Thanks,
I should have mentioned ticket #33419 which prompted me to investigate what was going on.
Or just don't use Module::Install at all! These are replacements using ExtUtil::MakeMaker and Module::Build: --- Build.PL -------------------------- #!/usr/bin/perl use strict; use warnings; use Module::Build; die "This module is known to exercise a bug in 5.6.0. Please upgrade your perl.\n" if $] eq '5.006'; my $build = Module::Build->new( module_name => 'Getargs::Long', dist_author => 'David Coppit <david@coppit.org>', dist_version_from => 'lib/Getargs/Long.pm', requires => { 'Log::Agent' => '0.105', 'Test::More' => 0 }, license => 'perl', create_readme => 1, create_makefile_pl => 'traditional' ); $build->create_build_script; --------------------------------------- --- Makefile.PL ----------------------- #!/usr/bin/perl use ExtUtils::MakeMaker; die "This module is known to exercise a bug in 5.6.0. Please upgrade your perl.\n" if $] eq '5.006'; WriteMakefile( NAME => 'Getargs::Long', VERSION_FROM => 'lib/Getargs/Long.pm', ABSTRACT_FROM => 'lib/Getargs/Long.pm', AUTHOR => 'David Coppit <david@coppit.org>', PREREQ_PM => { 'Test::More' => 0, 'Log::Agent' => '0.105' }, ); --------------------------------------- BTW, I will gladly take over the module maintenance (or share it with you) if you are not interested on it anymore. Cheers, - Salva
Subject: Re: [rt.cpan.org #33430] Bundled Module::Install is dated
Date: Mon, 7 Jul 2008 23:21:57 -0400 (EDT)
To: Salvador Fandino Garcia via RT <bug-Getargs-Long [...] rt.cpan.org>
From: David Coppit <david [...] coppit.org>
On Wed, 25 Jun 2008, Salvador Fandino Garcia via RT wrote: Show quoted text
> Or just don't use Module::Install at all! > > These are replacements using ExtUtil::MakeMaker and Module::Build:
I have a couple of custom extensions to Module::Install... One that finds suitable external programs such as grep and another than handles custom installation paths. Do you know if I can port these to ExtUtil::MakeMaker or Module::Build? I'd rather not duplicate them in all my module distributions. Show quoted text
> BTW, I will gladly take over the module maintenance (or share it with > you) if you are not interested on it anymore.
I may take you up on it... Let me see if I can clear my queue. :/ David Show quoted text
_____________________________________________________________________ David Coppit http://coppit.org/
Fixed in 1.1003, just uploaded to CPAN