The rpm spec file for my package looks like this:
Requires:mysql-server >= 5.5.30, java >= 1.6, p7zip, openssl >= 1.0.2g
I have an RHEL system where the OpenSSL version is this:
[ag@rhel1]# openssl
OpenSSL> version
OpenSSL 1.0.1e-fips 11 Feb 2013
[ag@rhel1]# rpm -q --whatprovides openssl
openssl-1.0.1e-51.el7_2.4.x86_64
When I try to test the install of my rpm package, it is supposed to fail because my package requires a minimum of 1.0.2g
whereas 1.0.1e
is installed. However, the installation succeeds without any problem. What am I missing here?