Accepting request 503339 from devel:languages:python
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/503339 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=54
This commit is contained in:
parent
9a299d1889
commit
356eb6c492
@ -36,7 +36,9 @@ BuildRequires: python3-numpydoc
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: zip
|
||||
BuildRequires: unzip
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: fdupes
|
||||
%endif
|
||||
Provides: python2-numpy-doc = %{version}
|
||||
Provides: python3-numpy-doc = %{version}
|
||||
Provides: python2-numpy-doc-html = %{version}
|
||||
@ -84,7 +86,9 @@ popd
|
||||
# install the documentation
|
||||
mkdir -p %{buildroot}%{_docdir}/python-numpy/
|
||||
cp -r doc/build/html %{buildroot}%{_docdir}/python-numpy/
|
||||
%if 0%{?suse_version}
|
||||
%fdupes %{buildroot}%{_docdir}/python-numpy/html/
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
|
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 6 08:15:54 UTC 2017 - manfred99@gmx.ch
|
||||
|
||||
- allow building numpy on fedora by making fdupes dependency optional
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 6 16:44:43 UTC 2017 - toddrme2178@gmail.com
|
||||
|
||||
|
@ -53,8 +53,14 @@ Patch0: numpy-buildfix.patch
|
||||
# PATCH-FIX-OPENSUSE numpy-1.9.0-remove-__declspec.patch -- fix for spurious compiler warnings that cause build failure
|
||||
Patch1: numpy-1.9.0-remove-__declspec.patch
|
||||
BuildRequires: blas-devel
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: fdupes
|
||||
%endif
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: gcc-fortran
|
||||
%else
|
||||
BuildRequires: gcc-gfortran
|
||||
%endif
|
||||
BuildRequires: lapack-devel
|
||||
BuildRequires: unzip
|
||||
BuildRequires: python-rpm-macros
|
||||
@ -86,7 +92,11 @@ Summary: Development files for numpy applications
|
||||
Group: Development/Libraries/Python
|
||||
Requires: %{name} = %{version}
|
||||
Requires: blas-devel
|
||||
Requires: gcc-fortran
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: gcc-fortran
|
||||
%else
|
||||
BuildRequires: gcc-gfortran
|
||||
%endif
|
||||
Requires: lapack-devel
|
||||
Requires: python-devel
|
||||
%if %{with openblas}
|
||||
@ -113,7 +123,9 @@ export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||
%install
|
||||
%python_exec setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
%python_expand rm -rf %{buildroot}%{$python_sitearch}/numpy/{,core,distutils,f2py,fft,lib,linalg,ma,matrixlib,oldnumeric,polynomial,random,testing}/tests # Don't package testsuite
|
||||
%if 0%{?suse_version}
|
||||
%fdupes %{buildroot}%{prefix}
|
||||
%endif
|
||||
|
||||
|
||||
%files %{python_files}
|
||||
|
Loading…
Reference in New Issue
Block a user