https://bugzilla.redhat.com/show_bug.cgi?id=1538658
Miro Hrončok <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #19 from Miro Hrončok <[email protected]> --- Some notes here: %if 0%{?rhel} == 7 BuildRequires: python-devel BuildRequires: python-setuptools %else BuildRequires: python2-devel BuildRequires: python2-setuptools %endif ... %if 0%{?rhel} == 7 Requires: python-setuptools %else Requires: python2-setuptools %endif Both python2-devel and python2-setuptools is available (provided) in RHEL 7. %if 0%{?rhel} == 7 %{python_sitelib}/* %else %{python2_sitelib}/* %endif %{python2_sitelib} is available in EPEL 7 (if you are targeting plain RHEL, feel free to ignore this). -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected]
