https://bugzilla.redhat.com/show_bug.cgi?id=1734445
--- Comment #1 from Miro Hrončok mhroncok@redhat.com --- Running automated checks. In the meantime, here are the things that I find weird:
Requires: python2-nose
Why is this a runtime dependency?
Provides: numpy = %{epoch}:%{version}-%{release} Provides: numpy%{?_isa} = %{epoch}:%{version}-%{release} Provides: f2py = %{epoch}:%{version}-%{release} Provides: numpy-f2py = %{epoch}:%{version}-%{release}
I believe those should now be in the Python 3 package: https://fedoraproject.org/wiki/Changes/Python_means_Python3
Note that any Requires, Provides, Obsoletes bellow the %descripton are evaluated as part of that description and will not end up in the package metadata.
%package -n python2-numpy-f2py -> %package f2py %package -n python2-numpy-doc -> %package doc %files -n python2-numpy -> %files %files -n python2-numpy-f2py -> %files f2py %files -n python2-numpy-doc -> %files doc
%if 0%{?fedora} >= 21 || 0%{?rhel} > 7 -> %if 0%{?fedora} || 0%{?rhel}
7
%if %{_arch} != s390x && %{_arch} != ppc64le -> %ifnarch s390x ppc64le
%{python2_sitearch}/%{modname}-*.egg-info
Add trailing slash if a directory?
%files -n python2-numpy-f2py %doc docs/f2py/*.html ... %files -n python2-numpy-doc %doc docs/*
Is docs/f2py/*.html in both?