Package init
This commit is contained in:
commit
e1ab588e86
BIN
numpy-1.16.5.tar.gz
Normal file
BIN
numpy-1.16.5.tar.gz
Normal file
Binary file not shown.
181
numpy.spec
Normal file
181
numpy.spec
Normal file
@ -0,0 +1,181 @@
|
||||
%global modname numpy
|
||||
|
||||
Name: numpy
|
||||
Version: 1.16.5
|
||||
Release: 2
|
||||
Epoch: 1
|
||||
Summary: A fast multidimensional array facility for Python
|
||||
|
||||
License: BSD and Python
|
||||
URL: http://www.numpy.org/
|
||||
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: openblas-devel
|
||||
BuildRequires: lapack-devel gcc-gfortran Cython
|
||||
|
||||
%description
|
||||
NumPy is the fundamental package for scientific computing with Python. It contains among other things:
|
||||
a powerful N-dimensional array object
|
||||
sophisticated (broadcasting) functions
|
||||
tools for integrating C/C++ and Fortran code
|
||||
useful linear algebra, Fourier transform, and random number capabilities
|
||||
Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.
|
||||
|
||||
%package -n python2-numpy
|
||||
Summary: A fast multidimensional array facility for Python
|
||||
%{?python_provide:%python_provide python2-%{modname}}
|
||||
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
BuildRequires: python2-nose
|
||||
BuildRequires: python2-pytest
|
||||
|
||||
Requires: python2-nose
|
||||
|
||||
Provides: numpy = %{epoch}:%{version}-%{release}
|
||||
Provides: numpy%{?_isa} = %{epoch}:%{version}-%{release}
|
||||
Provides: python2-numpy-doc
|
||||
Obsoletes: python2-numpy-doc
|
||||
|
||||
%description -n python2-numpy
|
||||
NumPy is the fundamental package for scientific computing with Python. It contains among other things:
|
||||
a powerful N-dimensional array object
|
||||
sophisticated (broadcasting) functions
|
||||
tools for integrating C/C++ and Fortran code
|
||||
useful linear algebra, Fourier transform, and random number capabilities
|
||||
Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.
|
||||
|
||||
%package -n python2-numpy-f2py
|
||||
Summary: f2py for numpy
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
Requires: python2-devel
|
||||
Provides: f2py = %{epoch}:%{version}-%{release}
|
||||
Provides: numpy-f2py = %{epoch}:%{version}-%{release}
|
||||
%{?python_provide:%python_provide python2-numpy-f2py}
|
||||
|
||||
%description -n python2-numpy-f2py
|
||||
This package includes a version of f2py that works properly with NumPy.
|
||||
|
||||
%package -n python3-numpy
|
||||
Summary: A fast multidimensional array facility for Python
|
||||
License: BSD
|
||||
%{?python_provide:%python_provide python3-numpy}
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-nose
|
||||
BuildRequires: python3-pytest
|
||||
|
||||
Provides: python3-numpy-doc
|
||||
Obsoletes: python3-numpy-doc
|
||||
|
||||
%description -n python3-numpy
|
||||
NumPy is the fundamental package for scientific computing with Python. It contains among other things:
|
||||
a powerful N-dimensional array object
|
||||
sophisticated (broadcasting) functions
|
||||
tools for integrating C/C++ and Fortran code
|
||||
useful linear algebra, Fourier transform, and random number capabilities
|
||||
Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.
|
||||
|
||||
%package -n python3-numpy-f2py
|
||||
Summary: f2py for numpy
|
||||
Requires: python3-numpy = %{epoch}:%{version}-%{release}
|
||||
Requires: python3-devel
|
||||
Provides: python3-f2py = %{version}-%{release}
|
||||
%{?python_provide:%python_provide python3-numpy-f2py}
|
||||
|
||||
%description -n python3-numpy-f2py
|
||||
This package includes a version of f2py that works properly with NumPy.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{version} -p1
|
||||
|
||||
rm numpy/distutils/command/__init__.py && touch numpy/distutils/command/__init__.py
|
||||
|
||||
cat >> site.cfg <<EOF
|
||||
[openblas]
|
||||
library_dirs = %{_libdir}
|
||||
openblas_libs = openblasp
|
||||
EOF
|
||||
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
|
||||
%build
|
||||
pushd %{py3dir}
|
||||
env OPENBLAS=%{_libdir} \
|
||||
BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python3} setup.py build
|
||||
popd
|
||||
|
||||
env OPENBLAS=%{_libdir} \
|
||||
BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python2} setup.py build
|
||||
|
||||
%install
|
||||
pushd %{py3dir}
|
||||
env OPENBLAS=%{_libdir} \
|
||||
FFTW=%{_libdir} BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python3} setup.py install --root %{buildroot}
|
||||
pushd %{buildroot}%{_bindir} &> /dev/null
|
||||
popd &> /dev/null
|
||||
popd
|
||||
|
||||
env OPENBLAS=%{_libdir} \
|
||||
FFTW=%{_libdir} BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python2} setup.py install --root %{buildroot}
|
||||
pushd %{buildroot}%{_bindir} &> /dev/null
|
||||
|
||||
ln -s f2py2 f2py.numpy
|
||||
popd &> /dev/null
|
||||
|
||||
mkdir -p %{buildroot}/usr/include
|
||||
ln -s %{python2_sitearch}/%{name}/core/include/numpy/ %{buildroot}/usr/include/numpy
|
||||
|
||||
%check
|
||||
pushd doc &> /dev/null
|
||||
PYTHONPATH="%{buildroot}%{python2_sitearch}" PYTHONDONTWRITEBYTECODE=1 \
|
||||
%{__python2} -c "import pkg_resources, numpy ; numpy.test(verbose=2)"
|
||||
popd &> /dev/null
|
||||
|
||||
pushd doc &> /dev/null
|
||||
PYTHONPATH="%{buildroot}%{python3_sitearch}" PYTHONDONTWRITEBYTECODE=1 \
|
||||
%{__python3} -c "import pkg_resources, numpy ; numpy.test(verbose=2)"
|
||||
popd &> /dev/null
|
||||
|
||||
%files -n python2-numpy
|
||||
%license LICENSE.txt
|
||||
%doc THANKS.txt site.cfg.example
|
||||
%dir %{python2_sitearch}/%{name}
|
||||
%{python2_sitearch}/%{name}/*
|
||||
%{python2_sitearch}/%{name}-*.egg-info
|
||||
%{_includedir}/numpy
|
||||
%exclude %{python2_sitearch}/%{name}/LICENSE.txt
|
||||
|
||||
%files -n python2-numpy-f2py
|
||||
%{_bindir}/f2py
|
||||
%{_bindir}/f2py2
|
||||
%{_bindir}/f2py2.7
|
||||
%{_bindir}/f2py.numpy
|
||||
%{python2_sitearch}/%{name}/f2py
|
||||
|
||||
%files -n python3-numpy
|
||||
%license LICENSE.txt
|
||||
%doc THANKS.txt site.cfg.example
|
||||
%dir %{python3_sitearch}/%{name}
|
||||
%{python3_sitearch}/%{name}/*
|
||||
%{python3_sitearch}/%{name}-*.egg-info
|
||||
%exclude %{python3_sitearch}/%{name}/LICENSE.txt
|
||||
|
||||
%files -n python3-numpy-f2py
|
||||
%{_bindir}/f2py3
|
||||
%{_bindir}/f2py3.7
|
||||
%{python3_sitearch}/%{name}/f2py
|
||||
|
||||
%changelog
|
||||
* Tue Oct 22 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.16.5-1
|
||||
- Package init
|
||||
Loading…
x
Reference in New Issue
Block a user