#3185: Buildsys will try to build a package while buildrequires are missing (BAD!!) -------------------------+-------------------------------------------------- Reporter: jwrdegoede | Owner: rel-eng@lists.fedoraproject.org Type: task | Status: closed Milestone: | Component: koji Resolution: invalid | Keywords: -------------------------+-------------------------------------------------- Changes (by jkeating):
* status: new => closed * resolution: => invalid
Comment:
We install all the buildrequires in an earlier step before we pass the -bb option.
The real problem here is in how you specified the version:
DEBUG util.py:280: Executing command: /usr/bin/yum --installroot /var/lib/mock/dist-f11-build-658584-94490/root/ resolvedep 'desktop- file-utils' 'ClanLib06-devel >= ClanLib06-0.6.5-16' DEBUG util.py:256: 0:desktop-file-utils-0.15-7.fc11.x86_64 DEBUG util.py:256: 0:ClanLib06-devel-0.6.5-14.fc11.x86_64 DEBUG util.py:319: Child returncode was: 0
Presumably you wanted that to be: ClanLib06-devel >= 0.6.5-16
I think in this case, rpm felt that "0.6.5-14.fc11" was VR higher than "ClanLib06-0.6.5-16"
Either way, if we hadn't used --nodeps, it still would have progressed, because you got the version wrong and rpm thought it was satisfied.