|
|
|
@ -1,29 +1,26 @@
|
|
|
|
|
#uncomment next line for a release candidate or a beta
|
|
|
|
|
#%%global relc rc1
|
|
|
|
|
|
|
|
|
|
%bcond_with tests
|
|
|
|
|
|
|
|
|
|
%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9
|
|
|
|
|
%global blaslib flexiblas
|
|
|
|
|
%global blasvar %{nil}
|
|
|
|
|
%else
|
|
|
|
|
%global blaslib openblas
|
|
|
|
|
%global blasvar p
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%global modname numpy
|
|
|
|
|
|
|
|
|
|
Name: numpy
|
|
|
|
|
Version: 1.20.1
|
|
|
|
|
Release: 5%{?dist}
|
|
|
|
|
Version: 1.14.3
|
|
|
|
|
Release: 10%{?dist}
|
|
|
|
|
Epoch: 1
|
|
|
|
|
Summary: A fast multidimensional array facility for Python
|
|
|
|
|
|
|
|
|
|
# Everything is BSD except for class SafeEval in numpy/lib/utils.py which is Python
|
|
|
|
|
License: BSD and Python and ASL 2.0
|
|
|
|
|
License: BSD and Python
|
|
|
|
|
URL: http://www.numpy.org/
|
|
|
|
|
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
|
|
|
Source1: https://numpy.org/doc/1.19/numpy-html.zip
|
|
|
|
|
Source1: https://docs.scipy.org/doc/numpy/numpy-html-1.14.2.zip
|
|
|
|
|
Patch0: f2py-setup.patch
|
|
|
|
|
Patch1: numpy-1.14.3-float128.patch
|
|
|
|
|
Patch2: numpy-1.14.3-CVE-2019-6446.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: python3-devel python3-setuptools python3-nose python3-Cython
|
|
|
|
|
BuildRequires: lapack-devel gcc-gfortran
|
|
|
|
|
%ifarch %{openblas_arches}
|
|
|
|
|
BuildRequires: openblas-devel
|
|
|
|
|
%else
|
|
|
|
|
BuildRequires: atlas-devel
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
NumPy is a general-purpose array-processing package designed to
|
|
|
|
@ -40,26 +37,8 @@ this package is 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}
|
|
|
|
|
Provides: libnpymath-static = %{epoch}:%{version}-%{release}
|
|
|
|
|
Provides: libnpymath-static%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
|
|
Provides: numpy = %{epoch}:%{version}-%{release}
|
|
|
|
|
Provides: numpy%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
|
|
Obsoletes: numpy < 1:1.10.1-3
|
|
|
|
|
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
BuildRequires: python3-Cython
|
|
|
|
|
BuildRequires: gcc-gfortran gcc
|
|
|
|
|
BuildRequires: lapack-devel
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
BuildRequires: python3-hypothesis
|
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
|
BuildRequires: python3-test
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: %{blaslib}-devel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python3-numpy
|
|
|
|
|
NumPy is a general-purpose array-processing package designed to
|
|
|
|
@ -73,81 +52,120 @@ There are also basic facilities for discrete fourier transform,
|
|
|
|
|
basic linear algebra and random number generation. Also included in
|
|
|
|
|
this package is a version of f2py that works properly with NumPy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-numpy-f2py
|
|
|
|
|
Summary: f2py for numpy
|
|
|
|
|
Requires: python3-numpy%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: python3-devel
|
|
|
|
|
Requires: python3-numpy = %{epoch}:%{version}-%{release}
|
|
|
|
|
Requires: python3-libs-devel
|
|
|
|
|
|
|
|
|
|
# Require alternatives version that implements the --keep-foreign flag
|
|
|
|
|
Requires(postun): alternatives >= 1.19.1-1
|
|
|
|
|
# For alternatives
|
|
|
|
|
Requires: python36
|
|
|
|
|
Requires(post): python36
|
|
|
|
|
Requires(postun): python36
|
|
|
|
|
|
|
|
|
|
Provides: python3-f2py = %{version}-%{release}
|
|
|
|
|
Obsoletes: python3-f2py <= 2.45.241_1927
|
|
|
|
|
%{?python_provide:%python_provide python3-numpy-f2py}
|
|
|
|
|
Provides: f2py = %{epoch}:%{version}-%{release}
|
|
|
|
|
Provides: numpy-f2py = %{epoch}:%{version}-%{release}
|
|
|
|
|
Obsoletes: numpy-f2py < 1:1.10.1-3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python3-numpy-f2py
|
|
|
|
|
This package includes a version of f2py that works properly with NumPy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-numpy-doc
|
|
|
|
|
Summary: Documentation for numpy
|
|
|
|
|
Requires: python3-numpy = %{epoch}:%{version}-%{release}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python3-numpy-doc
|
|
|
|
|
This package provides the complete documentation for NumPy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -n %{name}-%{version} -p1
|
|
|
|
|
%setup -q -n %{name}-%{version}%{?relc}
|
|
|
|
|
%patch0 -p1
|
|
|
|
|
%patch1 -p1
|
|
|
|
|
%patch2 -p1
|
|
|
|
|
|
|
|
|
|
# Force re-cythonization (ifed for PKG-INFO presence in setup.py)
|
|
|
|
|
rm PKG-INFO
|
|
|
|
|
# workaround for rhbz#849713
|
|
|
|
|
# http://mail.scipy.org/pipermail/numpy-discussion/2012-July/063530.html
|
|
|
|
|
rm numpy/distutils/command/__init__.py && touch numpy/distutils/command/__init__.py
|
|
|
|
|
|
|
|
|
|
# openblas is provided by flexiblas by default; otherwise,
|
|
|
|
|
%ifarch %{openblas_arches}
|
|
|
|
|
# Use openblas pthreads as recommended by upstream (see comment in site.cfg.example)
|
|
|
|
|
cat >> site.cfg <<EOF
|
|
|
|
|
[openblas]
|
|
|
|
|
libraries = %{blaslib}%{blasvar}
|
|
|
|
|
library_dirs = %{_libdir}
|
|
|
|
|
openblas_libs = openblasp
|
|
|
|
|
EOF
|
|
|
|
|
%else
|
|
|
|
|
# Atlas 3.10 library names
|
|
|
|
|
%if 0%{?fedora} >= 21 || 0%{?rhel} > 7
|
|
|
|
|
cat >> site.cfg <<EOF
|
|
|
|
|
[atlas]
|
|
|
|
|
library_dirs = %{_libdir}/atlas
|
|
|
|
|
atlas_libs = satlas
|
|
|
|
|
EOF
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%set_build_flags
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%ifarch %{openblas_arches}
|
|
|
|
|
env OPENBLAS=%{_libdir} \
|
|
|
|
|
%else
|
|
|
|
|
env ATLAS=%{_libdir} \
|
|
|
|
|
%endif
|
|
|
|
|
BLAS=%{_libdir} \
|
|
|
|
|
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
|
|
|
|
%{__python3} setup.py build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
mkdir docs
|
|
|
|
|
pushd docs
|
|
|
|
|
unzip %{SOURCE1}
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
#%%{__python3} setup.py install -O1 --skip-build --root %%{buildroot}
|
|
|
|
|
# skip-build currently broken, this works around it for now
|
|
|
|
|
%ifarch %{openblas_arches}
|
|
|
|
|
env OPENBLAS=%{_libdir} \
|
|
|
|
|
%else
|
|
|
|
|
env ATLAS=%{_libdir} \
|
|
|
|
|
%endif
|
|
|
|
|
FFTW=%{_libdir} BLAS=%{_libdir} \
|
|
|
|
|
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
|
|
|
|
%{__python3} setup.py install --root %{buildroot}
|
|
|
|
|
pushd %{buildroot}%{_bindir} &> /dev/null
|
|
|
|
|
ln -s f2py3 f2py.numpy
|
|
|
|
|
popd &> /dev/null
|
|
|
|
|
|
|
|
|
|
#symlink for includes, BZ 185079
|
|
|
|
|
mkdir -p %{buildroot}%{_includedir}
|
|
|
|
|
ln -s %{python3_sitearch}/%{name}/core/include/numpy/ %{buildroot}%{_includedir}/numpy
|
|
|
|
|
|
|
|
|
|
mv %{buildroot}%{_bindir}/f2py3 %{buildroot}%{_bindir}/f2py%{python3_version}
|
|
|
|
|
# All ghost files controlled by alternatives need to exist for the files
|
|
|
|
|
# section check to succeed
|
|
|
|
|
touch %{buildroot}%{_bindir}/f2py3
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
%ifarch ppc64le
|
|
|
|
|
# https://github.com/numpy/numpy/issues/14357
|
|
|
|
|
python3 runtests.py -- -k 'not test_einsum_sums_cfloat64'
|
|
|
|
|
%else
|
|
|
|
|
python3 runtests.py
|
|
|
|
|
%endif
|
|
|
|
|
pushd doc &> /dev/null
|
|
|
|
|
PATH="%{buildroot}%{_bindir}:${PATH}" PYTHONPATH="%{buildroot}%{python3_sitearch}" %{__python3} -c "import pkg_resources, numpy ; numpy.test(verbose=2)" \
|
|
|
|
|
%ifarch s390 s390x
|
|
|
|
|
|| :
|
|
|
|
|
%endif
|
|
|
|
|
# don't remove this comment
|
|
|
|
|
popd &> /dev/null
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%post -n python3-numpy-f2py
|
|
|
|
|
alternatives --add-slave python3 %{_bindir}/python%{python3_version} \
|
|
|
|
|
%{_bindir}/f2py3 \
|
|
|
|
|
f2py3 \
|
|
|
|
|
%{_bindir}/f2py%{python3_version}
|
|
|
|
|
|
|
|
|
|
%postun -n python3-numpy-f2py
|
|
|
|
|
# Do this only during uninstall process (not during update)
|
|
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
|
alternatives --keep-foreign --remove-slave python3 \
|
|
|
|
|
%{_bindir}/python%{python3_version} f2py3
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-numpy
|
|
|
|
@ -171,183 +189,55 @@ python3 runtests.py
|
|
|
|
|
%{python3_sitearch}/%{name}/polynomial
|
|
|
|
|
%{python3_sitearch}/%{name}-*.egg-info
|
|
|
|
|
%exclude %{python3_sitearch}/%{name}/LICENSE.txt
|
|
|
|
|
%{_includedir}/numpy
|
|
|
|
|
%{python3_sitearch}/%{name}/__init__.pxd
|
|
|
|
|
%{python3_sitearch}/%{name}/__init__.cython-30.pxd
|
|
|
|
|
%{python3_sitearch}/%{name}/py.typed
|
|
|
|
|
%{python3_sitearch}/%{name}/typing/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-numpy-f2py
|
|
|
|
|
%{_bindir}/f2py
|
|
|
|
|
%{_bindir}/f2py3
|
|
|
|
|
%{_bindir}/f2py.numpy
|
|
|
|
|
%ghost %{_bindir}/f2py3
|
|
|
|
|
%{_bindir}/f2py%{python3_version}
|
|
|
|
|
%{python3_sitearch}/%{name}/f2py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-numpy-doc
|
|
|
|
|
%doc docs/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Feb 08 2022 Tomas Orsava <torsava@redhat.com> - 1.20.1-5
|
|
|
|
|
- Add automatically generated Obsoletes tag with the python39- prefix
|
|
|
|
|
for smoother upgrade from RHEL8
|
|
|
|
|
- Related: rhbz#1990421
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.20.1-4
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Nikola Forró <nforro@redhat.com> - 1:1.20.1-3
|
|
|
|
|
- Disable tests by default (#1928123)
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.20.1-2
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Mon Feb 08 2021 Gwyn Ciesla <gwync@protonmail.com> 1:1.20.1-1
|
|
|
|
|
- 1.21.1
|
|
|
|
|
|
|
|
|
|
* Mon Feb 01 2021 Gwyn Ciesla <gwync@protonmail.com> - 1:1.20.0-1
|
|
|
|
|
- 1.20.0 final.
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.20.0-0.2.rc2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 04 2021 Nikola Forró <nforro@redhat.com> - 1:1.20.0-0.1.rc2
|
|
|
|
|
- Generate the main dispatcher config header into the build dir
|
|
|
|
|
|
|
|
|
|
* Mon Dec 28 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.20.0-0.rc2
|
|
|
|
|
- 1.20.0 rc2
|
|
|
|
|
|
|
|
|
|
* Tue Nov 03 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.4-1
|
|
|
|
|
- 1.19.4
|
|
|
|
|
|
|
|
|
|
* Thu Oct 29 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.3-1
|
|
|
|
|
- 1.19.3
|
|
|
|
|
|
|
|
|
|
* Tue Oct 27 2020 Nikola Forró <nforro@redhat.com> - 1:1.19.2-2
|
|
|
|
|
- Make test suite work in FIPS (140-2) Mode
|
|
|
|
|
|
|
|
|
|
* Thu Sep 10 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.2-1
|
|
|
|
|
- 1.19.2
|
|
|
|
|
|
|
|
|
|
* Sun Aug 16 2020 Iñaki Úcar <iucar@fedoraproject.org> - 1:1.19.1-3
|
|
|
|
|
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.19.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.1-1
|
|
|
|
|
- 1.19.1
|
|
|
|
|
|
|
|
|
|
* Thu Jul 16 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-2
|
|
|
|
|
- Assume old-style numpy provides from python2-numpy
|
|
|
|
|
|
|
|
|
|
* Mon Jun 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-1
|
|
|
|
|
- 1.19.0 final.
|
|
|
|
|
|
|
|
|
|
* Mon Jun 01 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-0.rc2
|
|
|
|
|
- 1.19.0 rc2
|
|
|
|
|
|
|
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1:1.18.4-3
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Fri May 08 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.4-2
|
|
|
|
|
- Own __pycache__ dir, 1833392
|
|
|
|
|
|
|
|
|
|
* Sun May 03 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.4-1
|
|
|
|
|
- 1.18.4
|
|
|
|
|
|
|
|
|
|
* Mon Apr 20 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.3-1
|
|
|
|
|
- 1.18.3
|
|
|
|
|
|
|
|
|
|
* Wed Mar 18 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.2-1
|
|
|
|
|
- 1.18.2
|
|
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 06 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.1-1
|
|
|
|
|
- 1.18.1
|
|
|
|
|
|
|
|
|
|
* Mon Dec 30 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.0-1
|
|
|
|
|
- 1.18.0
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.17.4-2
|
|
|
|
|
- Backport patch for s390x failures
|
|
|
|
|
- Enable non-broken tests on ppc64le
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.4-1
|
|
|
|
|
- 1.17.4
|
|
|
|
|
|
|
|
|
|
* Fri Oct 18 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.3-1
|
|
|
|
|
- 1.17.3
|
|
|
|
|
|
|
|
|
|
* Sat Sep 07 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.2-1
|
|
|
|
|
- 1.17.2
|
|
|
|
|
|
|
|
|
|
* Thu Aug 29 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.1-1
|
|
|
|
|
- 1.17.1
|
|
|
|
|
|
|
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.17.0-3
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
* Thu Aug 01 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.17.0-2
|
|
|
|
|
- Reintroduce libnpymath.a (#1735674)
|
|
|
|
|
|
|
|
|
|
* Tue Jul 30 2019 Gwyn Ciesla <gwync@protonmail.com> 1:1.17.0-1
|
|
|
|
|
- 1.17.0, split out Python 2.
|
|
|
|
|
|
|
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.16.4-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jun 20 2019 Kalev Lember <klember@redhat.com> - 1:1.16.4-2
|
|
|
|
|
- Avoid hardcoding /usr prefix
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.4-1
|
|
|
|
|
- 1.16.4
|
|
|
|
|
|
|
|
|
|
* Thu May 16 2019 Orion Poplawski <orion@nwra.com> - 1:1.16.3-2
|
|
|
|
|
- Build only with openblasp (bugz#1709161)
|
|
|
|
|
|
|
|
|
|
* Mon Apr 22 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.3-1
|
|
|
|
|
- 1.16.3.
|
|
|
|
|
|
|
|
|
|
* Tue Feb 26 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.2-1
|
|
|
|
|
- 1.16.2.
|
|
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Gwyn Ciesla <limburgher@gmail.com> - 1:1.16.1-1
|
|
|
|
|
- 1.16.1.
|
|
|
|
|
|
|
|
|
|
* Tue Jan 22 2019 Gwyn Ciesla <limburgher@gmail.com> - 1:1.16.0-1
|
|
|
|
|
- 1.16.0.
|
|
|
|
|
|
|
|
|
|
* Wed Aug 29 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.1-2
|
|
|
|
|
- Switch to pytest for running tests during check
|
|
|
|
|
- Stop ignoring failures when running tests
|
|
|
|
|
- Set PATH in check so that f2py tests work
|
|
|
|
|
- Update docs to match release
|
|
|
|
|
- Remove outdated workaround from rhbz#849713
|
|
|
|
|
|
|
|
|
|
* Wed Aug 22 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.1-1
|
|
|
|
|
- Update to latest version
|
|
|
|
|
|
|
|
|
|
* Sat Aug 11 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.0-2
|
|
|
|
|
- Fix broken build on s390x
|
|
|
|
|
- Remove bytecode produced by pytest
|
|
|
|
|
- Re-enable tests on s390x
|
|
|
|
|
|
|
|
|
|
* Tue Jul 24 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.15.0-1
|
|
|
|
|
- 1.15.0
|
|
|
|
|
|
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.5-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1:1.14.5-2
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
|
|
|
|
* Wed Jun 13 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.5-1
|
|
|
|
|
- 1.14.5
|
|
|
|
|
* Fri Jul 30 2021 Tomas Orsava <torsava@redhat.com> - 1:1.14.3-10
|
|
|
|
|
- Adjusted the postun scriptlets to enable upgrading to RHEL 9
|
|
|
|
|
- Resolves: rhbz#1933055
|
|
|
|
|
|
|
|
|
|
* Wed Jun 05 2019 Nikola Forró <nforro@redhat.com> - 1:1.14.3-9
|
|
|
|
|
- Fix CVE-2019-6446
|
|
|
|
|
resolves: #1668466
|
|
|
|
|
|
|
|
|
|
* Mon Jun 03 2019 Nikola Forró <nforro@redhat.com> - 1:1.14.3-8
|
|
|
|
|
- Rebuild with fixed gating.yaml
|
|
|
|
|
related: #1687873
|
|
|
|
|
|
|
|
|
|
* Wed Mar 20 2019 Nikola Forró <nforro@redhat.com> - 1:1.14.3-7
|
|
|
|
|
- Fix broken float128 on all arches except x86_64
|
|
|
|
|
resolves: #1687873
|
|
|
|
|
|
|
|
|
|
* Mon Oct 01 2018 Lumír Balhar <lbalhar@redhat.com> - 1:1.14.3-6
|
|
|
|
|
- Add alternatives for the f2py exacutable
|
|
|
|
|
- Resolves: rhbz#1633548
|
|
|
|
|
|
|
|
|
|
* Tue Aug 21 2018 Tomas Orsava <torsava@redhat.com> - 1:1.14.3-5
|
|
|
|
|
- Switch runtime dependency of the python3-numpy-f2py package from
|
|
|
|
|
python3-devel (that's now buildroot-only) to python3-libs-devel
|
|
|
|
|
Resolves: rhbz#1610863
|
|
|
|
|
|
|
|
|
|
* Mon Aug 06 2018 Petr Viktorin <pviktori@redhat.com> - 1:1.14.3-4
|
|
|
|
|
- Remove f2py3 executable (only f2py3.6 should be provided)
|
|
|
|
|
|
|
|
|
|
* Wed Jul 18 2018 Nikola Forró <nforro@redhat.com> - 1:1.14.3-3
|
|
|
|
|
- Build only python3 subpackages
|
|
|
|
|
- Use proper upstream release tarball
|
|
|
|
|
resolves: #1594350
|
|
|
|
|
|
|
|
|
|
* Wed May 23 2018 Nikola Forró <nforro@redhat.com> - 1:1.14.3-2
|
|
|
|
|
- Make f2py script name generation work with platform-python
|
|
|
|
|
related: #1580828
|
|
|
|
|
|
|
|
|
|
* Tue May 01 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.3-1
|
|
|
|
|
- 1.14.3
|
|
|
|
|