Bug 1032630

Summary: rpmUtils.miscutils.rangeCheck ignores package release
Product: [Fedora] Fedora Reporter: Martin Kolman <mkolman>
Component: yum-utilsAssignee: Packaging Maintenance Team <packaging-team-maint>
Status: CLOSED NOTABUG QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: high Docs Contact:
Priority: high    
Version: 20CC: admiller, packaging-team-maint, tim.lauridsen, zpavlas
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2013-11-20 14:03:51 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Martin Kolman 2013-11-20 13:56:18 UTC
Description of problem:
The rangeCheck function ignores release id when checking if package satisfies package version request.

Version-Release number of selected component (if applicable):
yum-utils-1.1.31-18.fc20.noarch

How reproducible:
always

Steps to Reproduce:

>>> from rpmUtils import miscutils
>>> miscutils.rangeCheck(('python-blivet', '>=', ('', '0.23.5', '1.fc20')), ('python-blivet', 'noarch', '', '0.26', '1.fc21'))
>>> 1

Actual results:
1 is returned, meaning the ('python-blivet', 'noarch', '', '0.26', '1.fc21') satisfies the ('python-blivet', '>=', ('', '0.23.5', '1.fc20')) package request,
which is wrong, as the request and the package tuple have different release ids

Expected results:
0 is returned as the request & package tuples have different release ids

Additional info:
Official miscutils documentation: (includes rangeCheck documentation)
http://yum.baseurl.org/api/yum/rpmUtils/miscutils.html

Comment 1 Zdeněk Pavlas 2013-11-20 14:03:51 UTC
Since "0.26-1.fc21" >= "0.23.5-1.fc20", I believe the check SHOULD return 1.