scipy/scipy.spec

129 lines
3.9 KiB
RPMSpec
Raw Normal View History

2022-07-12 10:19:52 +00:00
%global _empty_manifest_terminate_build 0
2019-11-19 11:56:51 +08:00
Name: scipy
2022-07-12 10:19:52 +00:00
Version: 1.8.0
2021-12-13 17:26:43 +08:00
Release: 1
2019-11-19 11:56:51 +08:00
Summary: A Python-based ecosystem of open-source software for mathematics, science, and engineering
2021-08-01 12:30:29 +08:00
License: Qhull and Apache-2.0
2019-11-19 11:56:51 +08:00
URL: https://www.scipy.org
Source0: https://github.com/scipy/scipy/releases/download/v%{version}/scipy-%{version}.tar.gz
BuildRequires: python3-devel python3-numpy >= 1.8.2 python3-numpy-f2py
2021-09-16 03:26:43 +00:00
BuildRequires: gcc-c++ openblas-devel gcc-gfortran chrpath
2022-07-12 10:19:52 +00:00
BuildRequires: pybind11-devel python3-pybind11 python3-Cython
2019-11-19 11:56:51 +08:00
%description
2022-07-12 10:19:52 +00:00
SciPy (pronounced "Sigh Pie") is open-source software for mathematics, science, and engineering.
It includes modules for statistics, optimization, integration, linear algebra, Fourier transforms,
2019-11-19 11:56:51 +08:00
signal and image processing, ODE solvers, and more.
2022-07-12 10:19:52 +00:00
SciPy depends on NumPy, which provides convenient and fast N-dimensional array manipulation.
SciPy is built to work with NumPy arrays, and provides many user-friendly and efficient numerical routines
such as routines for numerical integration and optimization.
Together, they run on all popular operating systems, are quick to install, and are free of charge.
NumPy and SciPy are easy to use, but powerful enough to be depended upon by some of the world's leading scientists and engineers.
2019-11-19 11:56:51 +08:00
If you need to manipulate numbers on a computer and display or publish the results, give SciPy a try!
%package -n python3-scipy
Summary: python3 package for scipy
Requires: python3 python3-numpy
%description -n python3-scipy
python3 package for scipy
%prep
%autosetup -n %{name}-%{version} -p1
2019-11-19 11:56:51 +08:00
cat > site.cfg << EOF
[amd]
library_dirs = %{_libdir}
include_dirs = /usr/include/suitesparse
amd_libs = amd
2022-07-12 10:19:52 +00:00
2019-11-19 11:56:51 +08:00
[umfpack]
library_dirs = %{_libdir}
include_dirs = /usr/include/suitesparse
umfpack_libs = umfpack
[openblas]
library_dirs = %{_libdir}
openblas_libs = openblasp
EOF
rm -rf %{py3dir}
cp -a . %{py3dir}
%build
export CFLAGS="$RPM_OPT_FLAGS -lm"
2022-07-12 10:19:52 +00:00
export SCIPY_USE_PYTHRAN=0
2019-11-19 11:56:51 +08:00
export LDFLAGS="$RPM_LD_FLAGS -Wall -shared"
pushd %{py3dir}
2021-08-01 12:30:29 +08:00
env FFLAGS="$RPM_OPT_FLAGS -fPIC -w -fallow-argument-mismatch -O2"\
2019-11-19 11:56:51 +08:00
OPENBLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
%py3_build
popd
%install
export CFLAGS="$RPM_OPT_FLAGS -lm"
export LDFLAGS="$RPM_LD_FLAGS -Wall -shared"
pushd %{py3dir}
env FFLAGS="$RPM_OPT_FLAGS -fPIC" \
OPENBLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
%py3_install
popd
2021-09-04 14:23:09 +08:00
find %{buildroot} -type f -name '*.so' -exec strip '{}' ';'
2021-09-16 03:26:43 +00:00
cd $RPM_BUILD_ROOT/usr
file `find -type f`| grep -w ELF | awk -F":" '{print $1}' | for i in `xargs`
do
chrpath -d $i
done
cd -
mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
echo "%{_bindir}/%{name}" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/%{name}-%{_arch}.conf
echo "%{_libdir}/%{name}" >> $RPM_BUILD_ROOT/etc/ld.so.conf.d/%{name}-%{_arch}.conf
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
2019-11-19 11:56:51 +08:00
%files -n python3-scipy
%license LICENSE.txt
2022-07-12 10:19:52 +00:00
%{python3_sitelib}/*.egg-info
2021-09-16 03:26:43 +00:00
%config(noreplace) /etc/ld.so.conf.d/*
2019-11-19 11:56:51 +08:00
%changelog
2022-07-12 10:19:52 +00:00
* Tue Jul 12 2022 renliang16 <renliang@uniontech.com> - 1.8.0-1
- Upgrade package scipy to version 1.8.0
2021-12-13 17:26:43 +08:00
* Mon Dec 13 2021 zhouwenpei <zhouwenpei1@huawei.com> - 1.6.2-1
2022-07-12 10:19:52 +00:00
- upgrade to 1.6.2
2021-12-13 17:26:43 +08:00
2021-09-16 03:26:43 +00:00
* Thu Sep 16 2021 chenchen <chen_aka_jan@163.com> - 1.2.2-8
- del rpath for some binaries and bin
2021-09-04 14:23:09 +08:00
* Sat Sep 4 2021 zhangtao <zhangtao221@huawei.com> - 1.2.2-7
- Strip Dynamic library
* Mon Aug 02 2021 chenyanpanHW <chenyanpan@huawei.com> - 1.2.2-6
- DESC: delete -Sgit from %autosetup, and delete BuildRequires git
2021-09-16 03:26:43 +00:00
* Sun Aug 01 2021 sunguoshuai <sunguoshuai@huawei.com> - 1.2.2-5
2021-08-01 12:30:29 +08:00
- Fix build error with gcc 10
* Mon May 31 2021 huanghaitao <huanghaitao8@huawei.com> - 1.2.2-4
- Completing build dependencies to fix git commands missing error
2020-10-29 17:25:43 +08:00
* Tue Oct 27 2020 huanghaitao <huanghaitao8@openeuler.org> - 1.2.2-3
- Disable python2 module
2020-03-23 23:22:55 +08:00
* Mon Mar 23 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.2.2-2
- Add macros of python2
* Mon Nov 4 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.2.2-1
2019-11-19 11:56:51 +08:00
- Package init