Skip Menu |

This queue is for tickets about the Unicode-Normalize CPAN distribution.

Report information
The Basics
Id: 105620
Status: resolved
Priority: 0/
Queue: Unicode-Normalize

People
Owner: Nobody in particular
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

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



Subject: Useless dependency on bytes and File::Copy
Current Makefile.PL lists bytes and File::Copy as PREREQ_PM, but they are used nowhere in the code: $ grep -HnrE 'bytes|File::Copy' META.yml:23: File::Copy: 0 META.yml:25: bytes: 0 META.json:37: "File::Copy" : "0", META.json:39: "bytes" : "0", Makefile.PL:13: bytes => 0, Makefile.PL:17: File::Copy => 0, I recommend to remove them from Makefile.PL.
You are right. Thank you. The previous versions depended on them, but the current no longer. Show quoted text
> Current Makefile.PL lists bytes and File::Copy as PREREQ_PM, but they > are used nowhere in the code: > > $ grep -HnrE 'bytes|File::Copy' > META.yml:23: File::Copy: 0 > META.yml:25: bytes: 0 > META.json:37: "File::Copy" : "0", > META.json:39: "bytes" : "0", > Makefile.PL:13: bytes => 0, > Makefile.PL:17: File::Copy => 0, > > I recommend to remove them from Makefile.PL.