9512ffddf4
- fixed using numpy with python 3.3. - matplot build fail (bnc#793557) fixed by these changes. - with python-bleeding edge repo still broken, fixed only for factory (forwarded request 145145 from HighwayStar) OBS-URL: https://build.opensuse.org/request/show/145171 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=27
140 lines
5.0 KiB
RPMSpec
140 lines
5.0 KiB
RPMSpec
#
|
|
# spec file for package python3-numpy
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define modname numpy
|
|
Name: python3-%{modname}
|
|
Version: 1.6.2
|
|
Release: 0
|
|
Url: http://sourceforge.net/projects/numpy
|
|
Summary: NumPy array processing for numbers, strings, records and objects
|
|
License: BSD-3-Clause
|
|
Group: Development/Libraries/Python
|
|
Source: %{modname}-%{version}.tar.gz
|
|
Patch1: numpy-buildfix.patch
|
|
Patch2: numpy-python33.patch
|
|
Patch3: numpy-fd15162.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: blas-devel
|
|
BuildRequires: lapack-devel
|
|
BuildRequires: python3
|
|
BuildRequires: python3-2to3
|
|
BuildRequires: python3-devel
|
|
# Cython needed for mtrand.c regenerating (python3.3)
|
|
BuildRequires: python3-Cython
|
|
# FIXME: atlas is horribly broken
|
|
# %if 0%{?suse_version} <= 1210
|
|
# BuildRequires: libatlas3-devel
|
|
# %endif
|
|
%if 0%{?suse_version}
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-fortran
|
|
%else
|
|
BuildRequires: gcc-gfortran
|
|
%endif
|
|
Requires: python(abi) = %{py3_ver}
|
|
|
|
%description
|
|
NumPy is a general-purpose array-processing package designed to
|
|
efficiently manipulate large multi-dimensional arrays of arbitrary
|
|
records without sacrificing too much speed for small multi-dimensional
|
|
arrays. NumPy is built on the Numeric code base and adds features
|
|
introduced by numarray as well as an extended C-API and the ability to
|
|
create arrays of arbitrary type which also makes NumPy suitable for
|
|
interfacing with general-purpose data-base applications.
|
|
|
|
There are also basic facilities for discrete fourier transform,
|
|
basic linear algebra and random number generation.
|
|
|
|
%package devel
|
|
Summary: Development files for %{modname} applications
|
|
Group: Development/Libraries/Python
|
|
Requires: %{name} = %{version}
|
|
Requires: python3 >= %{py3_ver}
|
|
Requires: python3-devel >= %{py3_ver}
|
|
Requires: python(abi) >= %{py3_ver}
|
|
%if 0%{?suse_version} > 1130
|
|
Requires: blas-devel
|
|
Requires: lapack-devel
|
|
%else
|
|
Requires: blas
|
|
Requires: lapack
|
|
%endif
|
|
%if 0%{?suse_version}
|
|
Requires: gcc-fortran
|
|
%else
|
|
Requires: gcc-gfortran
|
|
%endif
|
|
|
|
%description devel
|
|
This package contains files for developing applications using %{modname}.
|
|
|
|
%prep
|
|
%setup -q -n %{modname}-%{version}
|
|
%patch1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
|
|
sed -i "1d" %{modname}/{compat/setup{,scons},distutils/{conv_template,cpuinfo,exec_command,from_template,setup,setupscons,system_info},f2py/{auxfuncs,capi_maps,cb_rules,cfuncs,common_rules,crackfortran,diagnose,docs/usersguide/setup_example,f2py2e,f90mod_rules,func2subr,__init__,rules,setup,setupscons,use_rules},ma/setup{,scons},matrixlib/setup{,scons},setup,setupscons,testing/print_coercion_tables,testing/setup{,scons}}.py # Fix non-executable scripts
|
|
# Fix from Fedora:
|
|
# Regenerate Cython c sources
|
|
# This is needed with numpy-1.6.2.tar.gz with python 3.3 to avoid an exception
|
|
# with an import call in the generated .c file in the tarball that uses the
|
|
# old default of -1:
|
|
# File "mtrand.pyx", line 126, in init mtrand (numpy/random/mtrand/mtrand.c:20679)
|
|
# ValueError: level must be >= 0
|
|
# due to the changes in import in 3.3
|
|
# Regenerating with a newer Cython fixes it:
|
|
%if 0%{?suse_version} && 0%{?suse_version} >= 1230
|
|
pushd numpy/random/mtrand/
|
|
rm -v mtrand.c
|
|
cython-%{py3_ver} mtrand.pyx
|
|
popd
|
|
%endif
|
|
|
|
%build
|
|
CFLAGS="%{optflags} -fno-strict-aliasing" python3 setup.py build
|
|
|
|
%install
|
|
python3 setup.py install --root="%{buildroot}" --prefix="%{_prefix}"
|
|
rm -rf %{buildroot}%{python3_sitearch}/%{modname}/{,core,distutils,f2py,fft,ma,matrixlib,oldnumeric,polynomial,random,testing}/tests # Don't package testsuite
|
|
%if 0%{?suse_version}
|
|
%fdupes -s %{buildroot}%{_prefix}
|
|
%endif
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc *.txt
|
|
%{_bindir}/f2py3
|
|
%{python3_sitearch}/%{modname}/
|
|
%{python3_sitearch}/%{modname}-%{version}-py%{py3_ver}.egg-info
|
|
%exclude %{python3_sitearch}/%{modname}/*/*/*.c
|
|
%exclude %{python3_sitearch}/%{modname}/*/*.h
|
|
%exclude %{python3_sitearch}/%{modname}/*/*/*.h
|
|
%exclude %{python3_sitearch}/%{modname}/*/*/*/*.h
|
|
%exclude %{python3_sitearch}/%{modname}/core/lib/libnpymath.a
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{python3_sitearch}/%{modname}/*/*/*.c
|
|
%{python3_sitearch}/%{modname}/*/*.h
|
|
%{python3_sitearch}/%{modname}/*/*/*.h
|
|
%{python3_sitearch}/%{modname}/*/*/*/*.h
|
|
%{python3_sitearch}/%{modname}/core/lib/libnpymath.a
|
|
|
|
%changelog
|