Skip Menu |

This queue is for tickets about the UDDI-Lite CPAN distribution.

Report information
The Basics
Id: 85392
Status: resolved
Priority: 0/
Queue: UDDI-Lite

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

Bug Information
Severity: (no value)
Broken in: 0.717
Fixed in: (no value)



Subject: Case error in Makefile.PL.
$ perl Makefile.PL fails under Fedora 18, and presumably any other OS with a case-sensitive file system, with an error like Could not open 'lib/Uddi/Lite.pm': No such file or directory at /my_perl_INC_directory/ExtUtils/MM_Unix.pm line 2637. The problem is that Makefile.PL refers to file lib/Uddi/Lite.pm, not lib/UDDI/Lite.pm. The attached patch rectifies this.
Subject: UDDI-Lite-Makefile.patch
--- Makefile.old 2013-05-16 04:09:38.000000000 -0400 +++ Makefile.PL 2013-05-17 15:37:18.757476392 -0400 @@ -6,7 +6,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'UDDI::Lite', - VERSION_FROM => 'lib/Uddi/Lite.pm', + VERSION_FROM => 'lib/UDDI/Lite.pm', PREREQ_PM => { 'SOAP::Lite' => 0.716 }, ABSTRACT_FROM => 'lib/UDDI/Lite.pm', AUTHOR => 'Paul Kulchenko (paulclinger@yahoo.com)',
Subject: Re: [rt.cpan.org #85392] Case error in Makefile.PL.
Date: Fri, 17 May 2013 12:51:34 -0700
To: bug-UDDI-Lite [...] rt.cpan.org
From: Fred Moyer <fred [...] redhotpenguin.com>
Thanks for the spot, new version coming tonight. On Fri, May 17, 2013 at 12:50 PM, Tom Wyant via RT <bug-UDDI-Lite@rt.cpan.org> wrote: Show quoted text
> Fri May 17 15:50:53 2013: Request 85392 was acted upon. > Transaction: Ticket created by WYANT > Queue: UDDI-Lite > Subject: Case error in Makefile.PL. > Broken in: 0.717 > Severity: (no value) > Owner: Nobody > Requestors: wyant@cpan.org > Status: new > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=85392 > > > > $ perl Makefile.PL > > fails under Fedora 18, and presumably any other OS with a case-sensitive file system, with an error like > > Could not open 'lib/Uddi/Lite.pm': No such file or directory at /my_perl_INC_directory/ExtUtils/MM_Unix.pm line 2637. > > The problem is that Makefile.PL refers to file lib/Uddi/Lite.pm, not lib/UDDI/Lite.pm. The attached patch rectifies this.
Resolved, 0.718 coming to CPAN.