Spec URL: http://ftp.kspei.com/pub/steve/rpms/perl-CPANPLUS/perl-CPANPLUS.spec SRPM URL: http://ftp.kspei.com/pub/steve/rpms/perl-CPANPLUS-0.061-1.src.rpm Description: The CPANPLUS library is an API to the CPAN mirrors and a collection of interactive shells, commandline programs, daemons, etc, that use this API.
I think we just need to work out perl-Object-Accessor and perl-File-Fetch and then I can review this.
I think we're ready to go on this, when you have time...
Funny, I was in the middle of the review when you commented.... Issues: The Requires: filter is: @@PERL_REQ@@ "$@" | sed -e '/^perl(Your::Module::Here)$/d' I'm not sure what you wanted to filter there. rpmlint is unhappy: E: perl-CPANPLUS useless-explicit-provides perl(CPANPLUS::Config) W: perl-CPANPLUS hidden-file-or-dir /usr/lib/perl5/vendor_perl/5.8.8/CPANPLUS/inc/.inc E: perl-CPANPLUS zero-length /usr/lib/perl5/vendor_perl/5.8.8/CPANPLUS/inc/.inc I don't quite understand the first error; there is no such explicit Provide: in the .spec so RPM must be generating it. I'm not sure wiere the .inc file is coming from or what it's supposed to do. Review: * package meets naming and packaging guidelines. * specfile is properly named, is cleanly written, uses macros consistently and conforms to the Perl template. * license field matches the actual license. * license is open source-compatible. It's not included separately in the package, but this is not necessary as the upstream tarball does not include it. * source files match upstream: c9e9831d24d69b1f690d8b4967436899 CPANPLUS-0.061.tar.gz c9e9831d24d69b1f690d8b4967436899 CPANPLUS-0.061.tar.gz-srpm * BuildRequires are proper. * package builds in mock. X rpmlint is silent. * final provides and requires are sane. * no shared libraries are present. * package is not relocatable. * owns the directories it creates. * doesn't own any directories it shouldn't. * no duplicates in %files. * file permissions are appropriate. * %clean is present. O %check is present but necessarily disabled. * code, not content. * documentation is small, so no -docs subpackage is necessary. * %docs are not necessary for the proper functioning of the package. * no headers. * no pkgconfig files. * no libtool .la droppings. * not a GUI app.
(In reply to comment #3) > E: perl-CPANPLUS useless-explicit-provides perl(CPANPLUS::Config) > > I don't quite understand the first error; there is no such explicit Provide: > in the .spec so RPM must be generating it. I haven't had a look into this particular case, but this rpmlint error is often seen in cases where a package provides both versioned and unversioned something (through autoprov or not, doesn't matter). The unversioned one satisfies all versioned dependencies people might add in dependent packages, so if there's a versioned one available, it could make sense to get rid of the unversioned one, for example by filtering it out.
In this case the issue is: perl(CPANPLUS::Config) perl(CPANPLUS::Config) = 0.050 I thought perhaps that's what the non-functioning filter was for, but that's for requires and this is an errant provide.
(In reply to comment #3) > The Requires: filter is: > > @@PERL_REQ@@ "$@" | sed -e '/^perl(Your::Module::Here)$/d' > > I'm not sure what you wanted to filter there. I literally had to filter perl(Your::Module::Here). CPANPLUS-0.061$ find . -type f -exec grep -Hn Your::Module::Here {} \; ./lib/CPANPLUS/Internals/Constants/Report.pm:268:use Your::Module::Here; ok(1); > rpmlint is unhappy: > E: perl-CPANPLUS useless-explicit-provides perl(CPANPLUS::Config) That's auto-generated during rpmbuild, so I think we can ignore that. > W: perl-CPANPLUS hidden-file-or-dir > /usr/lib/perl5/vendor_perl/5.8.8/CPANPLUS/inc/.inc > E: perl-CPANPLUS zero-length /usr/lib/perl5/vendor_perl/5.8.8/CPANPLUS/inc/.inc Fixed in -2. http://ftp.kspei.com/pub/steve/rpms/perl-CPANPLUS-0.061-2.src.rpm Sorry about the rpmlint warnings. I thought I had checked that before submitting all of these packages. I guess I missed one...
> I literally had to filter perl(Your::Module::Here). Hilarious. Sorry I missed that. > That's auto-generated during rpmbuild, so I think we can ignore that. Yes, you don't include it. I see no point in filtering it as it seems to be an RPM buglet. > Fixed in -2. Thanks. APPROVED
(In reply to comment #6) > Sorry about the rpmlint warnings. I thought I had checked that before > submitting all of these packages. I guess I missed one... Possibly not; I've had that happen too. I think it's because new versions of rpmlint find new things to complain about.
Imported into CVS, branches created, and builds requested.