Skip Menu |

This queue is for tickets about the File-DirCompare CPAN distribution.

Report information
The Basics
Id: 55126
Status: open
Priority: 0/
Queue: File-DirCompare

People
Owner: Nobody in particular
Requestors: emmanuel.seyman [...] club-internet.fr
Cc:
AdminCc:

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



Subject: Missing files
Date: Tue, 2 Mar 2010 10:01:04 +0100
To: bug-File-DirCompare [...] rt.cpan.org
From: Emmanuel Seyman <emmanuel.seyman [...] club-internet.fr>
Building File-DirCompare, I get the following output: Warning: the following files are missing in your kit: t/t10/new/aaa t/t10/new/ggg t/t10/new/jjj t/t10/new/xxx t/t10/old/aaa t/t10/old/ddd t/t10/old/ggg t/t10/old/uuu t/t10/old/xxx Please inform the author. Nothing critical but I thought you would like to know. Emmanuel
Hi Emmanuel, Thanks for the report. Was just a problem with whitespace escaping in MANIFEST. Fixed in version 0.6, just uploaded to CPAN. Cheers, Gavin
Subject: Re: [rt.cpan.org #55126] Resolved: Missing files
Date: Wed, 3 Mar 2010 00:53:18 +0100
To: Gavin Carr via RT <bug-File-DirCompare [...] rt.cpan.org>
From: Emmanuel Seyman <emmanuel.seyman [...] club-internet.fr>
* Gavin Carr via RT [02/03/2010 13:34] : Show quoted text
> > According to our records, your request has been resolved. If you have any > further questions or concerns, please respond to this message.
I'm still seeing it, even on version 0.6. [manu@orient File-DirCompare-0.6]$ perl Makefile.PL Checking if your kit is complete... Warning: the following files are missing in your kit: 't/t10/new/aaa 't/t10/new/ggg 't/t10/new/jjj 't/t10/new/xxx 't/t10/old/aaa 't/t10/old/ddd 't/t10/old/ggg 't/t10/old/uuu 't/t10/old/xxx Please inform the author. Writing Makefile for File::DirCompare Emmanuel PS: Any chance we can get a changelog included in the package? It would make things easier on my end.
Subject: Re: [rt.cpan.org #55126] Resolved: Missing files
Date: Wed, 3 Mar 2010 01:13:57 +0000
To: Emmanuel Seyman via RT <bug-File-DirCompare [...] rt.cpan.org>
From: Gavin Carr <gavin [...] openfusion.com.au>
Hi Emmanuel, On Tue, Mar 02, 2010 at 06:54:24PM -0500, Emmanuel Seyman via RT wrote: Show quoted text
> Queue: File-DirCompare > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=55126 > > > * Gavin Carr via RT [02/03/2010 13:34] :
> > > > According to our records, your request has been resolved. If you have any > > further questions or concerns, please respond to this message.
> > I'm still seeing it, even on version 0.6. > > [manu@orient File-DirCompare-0.6]$ perl Makefile.PL > Checking if your kit is complete... > Warning: the following files are missing in your kit: > 't/t10/new/aaa > 't/t10/new/ggg > 't/t10/new/jjj > 't/t10/new/xxx > 't/t10/old/aaa > 't/t10/old/ddd > 't/t10/old/ggg > 't/t10/old/uuu > 't/t10/old/xxx > Please inform the author. > Writing Makefile for File::DirCompare > > Emmanuel > > PS: Any chance we can get a changelog included in the package? It would > make things easier on my end.
Hmmm, weird. What platform are you on? What version of perl, and what version of ExtUtils::MakeMaker? The problem is that this is specifically a test on files that have whitespace in them, and your 'perl Makefile.PL' is truncating the lines at the whitespace. The actual lines in the MANIFEST are: 't/t10/new/aaa bbb ccc' 't/t10/new/ggg hhh iii' 't/t10/new/jjj kkk lll' 't/t10/new/xxx yyy zzz/bar' 't/t10/new/xxx yyy zzz/bog' 't/t10/old/aaa bbb ccc' 't/t10/old/ddd eee fff' 't/t10/old/ggg hhh iii' 't/t10/old/uuu vvv www/foo' 't/t10/old/xxx yyy zzz/bar' 't/t10/old/xxx yyy zzz/foo' Do you see those files under t/t10/new and t/t10/old? I'm not sure what the issue is. It's working ok for me on perl 5.10 on linux and ExtUtils::MakeMaker 6.56. Cheers, Gavin
Subject: Re: [rt.cpan.org #55126] Resolved: Missing files
Date: Wed, 3 Mar 2010 12:37:14 +0100
To: Gavin Carr via RT <bug-File-DirCompare [...] rt.cpan.org>
From: Emmanuel Seyman <emmanuel.seyman [...] club-internet.fr>
* Gavin Carr via RT [03/03/2010 09:19] : Show quoted text
> > Hmmm, weird. What platform are you on? What version of perl, and what > version of ExtUtils::MakeMaker?
Fedora 12 x86_64 ExtUtils-MakeMaker 6.36 perl 5.10.0 Show quoted text
> Do you see those files under t/t10/new and t/t10/old?
All of these are in the tarball, yes. Show quoted text
> I'm not sure what the issue is. It's working ok for me on perl 5.10 > on linux and ExtUtils::MakeMaker 6.56.
I can't see anything in ExtUtils::MakeMaker's changelog that could fix this but I'll try to upgrade to see if it fixes the bug. Emmanuel
Subject: Re: [rt.cpan.org #55126] Resolved: Missing files
Date: Fri, 5 Mar 2010 00:01:46 +0100
To: Gavin Carr via RT <bug-File-DirCompare [...] rt.cpan.org>
From: Emmanuel Seyman <emmanuel.seyman [...] club-internet.fr>
* Gavin Carr via RT [03/03/2010 09:19] : Show quoted text
> > I'm not sure what the issue is. It's working ok for me on perl 5.10 > on linux and ExtUtils::MakeMaker 6.56.
For the record, I build File-Compare-0.6 on Fedora 14 and the above output wasn't there. I believe we can put this bug to rest. Emmanuel
Subject: Re: [rt.cpan.org #55126] Resolved: Missing files
Date: Fri, 5 Mar 2010 02:06:39 +0000
To: Emmanuel Seyman via RT <bug-File-DirCompare [...] rt.cpan.org>
From: Gavin Carr <gavin [...] openfusion.com.au>
Great. Thanks Emmanuel. Cheers, Gavin On Thu, Mar 04, 2010 at 06:02:21PM -0500, Emmanuel Seyman via RT wrote: Show quoted text
> Queue: File-DirCompare > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=55126 > > > * Gavin Carr via RT [03/03/2010 09:19] :
> > > > I'm not sure what the issue is. It's working ok for me on perl 5.10 > > on linux and ExtUtils::MakeMaker 6.56.
> > For the record, I build File-Compare-0.6 on Fedora 14 and the above > output wasn't there. I believe we can put this bug to rest. > > Emmanuel > >
From: jozef [...] kutej.net
Hi, See http://cpansearch.perl.org/src/RKOBES/ExtUtils-Manifest-1.58/Changes 1.52 Thu, Mar 25, 2008 - allow spaces in filenames when quoted: I ran into this problem also. So it will be nice if you declare a dependency on "ExtUtils::Manifest 1.52" or remove the test files with spaces. Cheers, Jozef