From Fedora Project Wiki
Line 70: | Line 70: | ||
<pre> | <pre> | ||
# check a spec file | |||
rpmlint ray.spec | rpmlint ray.spec | ||
# check a source RPM file | |||
rpmlint ray*.src.rpm | rpmlint ray*.src.rpm | ||
# check a binary RPM file | |||
rpmlint ray*.rpm | rpmlint ray*.rpm | ||
# check a installed package | |||
rpmlint ray-common | rpmlint ray-common | ||
# build binary RPMS and SRPM | |||
rpmbuild -ba ray.spec | rpmbuild -ba ray.spec | ||
# list files in package | |||
rpm -ql ray-common | |||
# list files in RPM file | |||
rpm -qpl | |||
# build package in a sandbox | |||
mock -r fedora-17-x86_64 rebuild ray-2.1.0-2.fc17.src.rpm &> ray-2.1.0-2.fc17.src.rpm.mock | mock -r fedora-17-x86_64 rebuild ray-2.1.0-2.fc17.src.rpm &> ray-2.1.0-2.fc17.src.rpm.mock | ||
</pre> | </pre> |
Revision as of 08:23, 4 November 2012
Sébastien Boisvert | |
---|---|
Sébastien Boisvert | |
Personal Information | |
Home: | Québec City, Québec, Canada |
Fedora-specific Information | |
FAS-Name: | sebhtml |
Fedora-Mail: | sebhtml@fedoraproject.org |
Miscellaneous Information
| |
Badges (20) | |
General information
I'm a Canadian Institutes of Health Research -funded doctoral student. I utilize the message passing interface to solve computational problems in genomics.
I started using Linux in 2003 with Red Hat 9. I am currently using Fedora 17 on a Thinkpad x230.
Finding a sponsor
- New packages
- Informal reviews / comments
- My soon-to-be sponsor: User:Jussilehtola
Readings
http://fedoraproject.org/wiki/How_to_get_sponsored_into_the_packager_grouphttp://fedoraproject.org/wiki/Packaging:Guidelines?rd=Packaging/Guidelineshttp://fedoraproject.org/wiki/Packaging:No_Bundled_Librarieshttp://fedoraproject.org/wiki/Packaging:Treatment_Of_Bundled_Librarieshttp://fedoraproject.org/wiki/Packaging:MPIhttp://fedoraproject.org/wiki/Packaging:ReviewGuidelines?rd=Packaging/ReviewGuidelineshttp://fedoraproject.org/wiki/Package_Review_Processhttp://fedoraproject.org/wiki/Packaging:NamingGuidelineshttp://fedoraproject.org/wiki/Packaging_trickshttp://fedoraproject.org/wiki/Packaging:ScriptletSnippets?rd=Packaging/ScriptletSnippetshttp://fedoraproject.org/wiki/Common_Rpmlint_issueshttps://fedoraproject.org/wiki/Using_the_Koji_build_system
My packages
- reviews of my packages (open or closed).
- my packages that have passed review
- my packages that are under review
- my packages that await review.
My package reviews
- Reviews I have done: see full list
- Full list of packages waiting for a reviewer here.
Useful commands
# check a spec file rpmlint ray.spec # check a source RPM file rpmlint ray*.src.rpm # check a binary RPM file rpmlint ray*.rpm # check a installed package rpmlint ray-common # build binary RPMS and SRPM rpmbuild -ba ray.spec # list files in package rpm -ql ray-common # list files in RPM file rpm -qpl # build package in a sandbox mock -r fedora-17-x86_64 rebuild ray-2.1.0-2.fc17.src.rpm &> ray-2.1.0-2.fc17.src.rpm.mock