Bug 170532
| Summary: | Review Request: perl-Boulder - An API for hierarchical tag/value structures | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Orion Poplawski <orion> |
| Component: | Package Review | Assignee: | Paul Howarth <paul> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | David Lawrence <dkl> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | rawhide | CC: | fedora-extras-list |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| URL: | http://www.cora.nwra.com/~orion/fedora/ | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2005-10-21 15:41:47 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 163779 | ||
|
Description
Orion Poplawski
2005-10-12 16:40:40 UTC
Review:
- rpmlint clean
- package and spec naming OK
- package meets guidelines
- license is same as perl, matches spec, text generated and included
- spec file written in English and is legible
- sources match upstream
- package builds OK in mock for rawhide (i386)
- no explicit BR's
- no locales, libraries, subpackages or pkgconfigs to worry about
- not relocatable
- no directory ownership or permissions issues
- no duplicate files
- %clean section present and correct
- macro usage is consistent
- code, not content
- no large docs
- docs don't affect runtime
- no desktop entry needed
- no scriptlets
Suggestion:
- perhaps %{perl_vendorlib}/Boulder.pod could be marked as %doc ?
Approved.
Thanks for the review! Not sure how to mark the pod file as %doc, and not sure that other perl modules do this. Imported and built on devel. (In reply to comment #2) > Not sure how to mark the pod file as %doc You could do it by changing in the files list: %{perl_vendorlib}/* to: %doc %{perl_vendorlib}/Boulder.pod %{perl_vendorlib}/Boulder/ %{perl_vendorlib}/Stone* which would mark the pod file as %doc and include every other file and directory as before. You can see which files are marked as docs in a package using the --docfiles option of rpm. > and not sure that other perl modules do this. Most don't seem to ship the pod files at all. Ah, first I just tried adding it to the %doc list but it complained. Checked in the change. Thanks! (In reply to comment #3) > Most don't seem to ship the pod files at all. On my FC4 box in /usr/lib/perl5/vendor_perl: $ find . -name "*.pod" | wc -l 381 Marking them as %doc calls for something automagic in rpmbuild instead of changing loads of perl-* specfiles IMO. |