473fc7
#uncomment next line for a release candidate or a beta
473fc7
#%%global relc rc1
473fc7
473fc7
%bcond_with tests
473fc7
473fc7
%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9
473fc7
%global blaslib flexiblas
473fc7
%global blasvar %{nil}
473fc7
%else
473fc7
%global blaslib openblas
473fc7
%global blasvar p
473fc7
%endif
473fc7
473fc7
%global modname numpy
473fc7
473fc7
Name:           numpy
473fc7
Version:        1.20.1
473fc7
Release:        5%{?dist}
473fc7
Epoch:          1
473fc7
Summary:        A fast multidimensional array facility for Python
473fc7
473fc7
# Everything is BSD except for class SafeEval in numpy/lib/utils.py which is Python
473fc7
License:        BSD and Python and ASL 2.0
473fc7
URL:            http://www.numpy.org/
473fc7
Source0:        https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
473fc7
Source1:        https://numpy.org/doc/1.19/numpy-html.zip
473fc7
473fc7
%description
473fc7
NumPy is a general-purpose array-processing package designed to
473fc7
efficiently manipulate large multi-dimensional arrays of arbitrary
473fc7
records without sacrificing too much speed for small multi-dimensional
473fc7
arrays.  NumPy is built on the Numeric code base and adds features
473fc7
introduced by numarray as well as an extended C-API and the ability to
473fc7
create arrays of arbitrary type.
473fc7
473fc7
There are also basic facilities for discrete fourier transform,
473fc7
basic linear algebra and random number generation. Also included in
473fc7
this package is a version of f2py that works properly with NumPy.
473fc7
473fc7
473fc7
%package -n python3-numpy
473fc7
Summary:        A fast multidimensional array facility for Python
473fc7
473fc7
License:        BSD
473fc7
%{?python_provide:%python_provide python3-numpy}
473fc7
Provides:       libnpymath-static = %{epoch}:%{version}-%{release}
473fc7
Provides:       libnpymath-static%{?_isa} = %{epoch}:%{version}-%{release}
473fc7
Provides:       numpy = %{epoch}:%{version}-%{release}
473fc7
Provides:       numpy%{?_isa} = %{epoch}:%{version}-%{release}
473fc7
Obsoletes:      numpy < 1:1.10.1-3
473fc7
473fc7
BuildRequires:  python3-devel
473fc7
BuildRequires:  python3-setuptools
473fc7
BuildRequires:  python3-Cython
473fc7
BuildRequires:  gcc-gfortran gcc
473fc7
BuildRequires:  lapack-devel
473fc7
%if %{with tests}
473fc7
BuildRequires:  python3-hypothesis
473fc7
BuildRequires:  python3-pytest
473fc7
BuildRequires:  python3-test
473fc7
%endif
473fc7
BuildRequires: %{blaslib}-devel
473fc7
473fc7
%description -n python3-numpy
473fc7
NumPy is a general-purpose array-processing package designed to
473fc7
efficiently manipulate large multi-dimensional arrays of arbitrary
473fc7
records without sacrificing too much speed for small multi-dimensional
473fc7
arrays.  NumPy is built on the Numeric code base and adds features
473fc7
introduced by numarray as well as an extended C-API and the ability to
473fc7
create arrays of arbitrary type.
473fc7
473fc7
There are also basic facilities for discrete fourier transform,
473fc7
basic linear algebra and random number generation. Also included in
473fc7
this package is a version of f2py that works properly with NumPy.
473fc7
473fc7
%package -n python3-numpy-f2py
473fc7
Summary:        f2py for numpy
473fc7
Requires:       python3-numpy%{?_isa} = %{epoch}:%{version}-%{release}
473fc7
Requires:       python3-devel
473fc7
Provides:       python3-f2py = %{version}-%{release}
473fc7
Obsoletes:      python3-f2py <= 2.45.241_1927
473fc7
%{?python_provide:%python_provide python3-numpy-f2py}
473fc7
Provides:       f2py = %{epoch}:%{version}-%{release}
473fc7
Provides:       numpy-f2py = %{epoch}:%{version}-%{release}
473fc7
Obsoletes:      numpy-f2py < 1:1.10.1-3
473fc7
473fc7
%description -n python3-numpy-f2py
473fc7
This package includes a version of f2py that works properly with NumPy.
473fc7
473fc7
%package -n python3-numpy-doc
473fc7
Summary:	Documentation for numpy
473fc7
Requires:	python3-numpy = %{epoch}:%{version}-%{release}
473fc7
BuildArch:	noarch
473fc7
473fc7
%description -n python3-numpy-doc
473fc7
This package provides the complete documentation for NumPy.
473fc7
473fc7
473fc7
%prep
473fc7
%autosetup -n %{name}-%{version} -p1
473fc7
473fc7
# Force re-cythonization (ifed for PKG-INFO presence in setup.py)
473fc7
rm PKG-INFO
473fc7
473fc7
# openblas is provided by flexiblas by default; otherwise,
473fc7
# Use openblas pthreads as recommended by upstream (see comment in site.cfg.example)
473fc7
cat >> site.cfg <
473fc7
[openblas]
473fc7
libraries = %{blaslib}%{blasvar}
473fc7
library_dirs = %{_libdir}
473fc7
EOF
473fc7
473fc7
%build
473fc7
%set_build_flags
473fc7
473fc7
env OPENBLAS=%{_libdir} \
473fc7
    BLAS=%{_libdir} \
473fc7
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
473fc7
    %{__python3} setup.py build
473fc7
473fc7
%install
473fc7
mkdir docs
473fc7
pushd docs
473fc7
unzip %{SOURCE1}
473fc7
popd
473fc7
473fc7
#%%{__python3} setup.py install -O1 --skip-build --root %%{buildroot}
473fc7
# skip-build currently broken, this works around it for now
473fc7
env OPENBLAS=%{_libdir} \
473fc7
    FFTW=%{_libdir} BLAS=%{_libdir} \
473fc7
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
473fc7
    %{__python3} setup.py install --root %{buildroot}
473fc7
pushd %{buildroot}%{_bindir} &> /dev/null
473fc7
ln -s f2py3 f2py.numpy
473fc7
popd &> /dev/null
473fc7
473fc7
#symlink for includes, BZ 185079
473fc7
mkdir -p %{buildroot}%{_includedir}
473fc7
ln -s %{python3_sitearch}/%{name}/core/include/numpy/ %{buildroot}%{_includedir}/numpy
473fc7
473fc7
473fc7
%check
473fc7
%if %{with tests}
473fc7
%ifarch ppc64le
473fc7
# https://github.com/numpy/numpy/issues/14357
473fc7
python3 runtests.py -- -k 'not test_einsum_sums_cfloat64'
473fc7
%else
473fc7
python3 runtests.py
473fc7
%endif
473fc7
%endif
473fc7
473fc7
473fc7
%files -n python3-numpy
473fc7
%license LICENSE.txt
473fc7
%doc THANKS.txt site.cfg.example
473fc7
%{python3_sitearch}/%{name}/__pycache__
473fc7
%dir %{python3_sitearch}/%{name}
473fc7
%{python3_sitearch}/%{name}/*.py*
473fc7
%{python3_sitearch}/%{name}/core
473fc7
%{python3_sitearch}/%{name}/distutils
473fc7
%{python3_sitearch}/%{name}/doc
473fc7
%{python3_sitearch}/%{name}/fft
473fc7
%{python3_sitearch}/%{name}/lib
473fc7
%{python3_sitearch}/%{name}/linalg
473fc7
%{python3_sitearch}/%{name}/ma
473fc7
%{python3_sitearch}/%{name}/random
473fc7
%{python3_sitearch}/%{name}/testing
473fc7
%{python3_sitearch}/%{name}/tests
473fc7
%{python3_sitearch}/%{name}/compat
473fc7
%{python3_sitearch}/%{name}/matrixlib
473fc7
%{python3_sitearch}/%{name}/polynomial
473fc7
%{python3_sitearch}/%{name}-*.egg-info
473fc7
%exclude %{python3_sitearch}/%{name}/LICENSE.txt
473fc7
%{_includedir}/numpy
473fc7
%{python3_sitearch}/%{name}/__init__.pxd
473fc7
%{python3_sitearch}/%{name}/__init__.cython-30.pxd
473fc7
%{python3_sitearch}/%{name}/py.typed
473fc7
%{python3_sitearch}/%{name}/typing/
473fc7
473fc7
%files -n python3-numpy-f2py
473fc7
%{_bindir}/f2py
473fc7
%{_bindir}/f2py3
473fc7
%{_bindir}/f2py.numpy
473fc7
%{_bindir}/f2py%{python3_version}
473fc7
%{python3_sitearch}/%{name}/f2py
473fc7
473fc7
%files -n python3-numpy-doc
473fc7
%doc docs/*
473fc7
473fc7
473fc7
%changelog
473fc7
* Tue Feb 08 2022 Tomas Orsava <torsava@redhat.com> - 1.20.1-5
473fc7
- Add automatically generated Obsoletes tag with the python39- prefix
473fc7
  for smoother upgrade from RHEL8
473fc7
- Related: rhbz#1990421
473fc7
473fc7
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.20.1-4
473fc7
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
473fc7
  Related: rhbz#1991688
473fc7
473fc7
* Fri Apr 16 2021 Nikola Forró <nforro@redhat.com> - 1:1.20.1-3
473fc7
- Disable tests by default (#1928123)
473fc7
473fc7
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.20.1-2
473fc7
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
473fc7
473fc7
* Mon Feb 08 2021 Gwyn Ciesla <gwync@protonmail.com> 1:1.20.1-1
473fc7
- 1.21.1
473fc7
473fc7
* Mon Feb 01 2021 Gwyn Ciesla <gwync@protonmail.com> - 1:1.20.0-1
473fc7
- 1.20.0 final.
473fc7
473fc7
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.20.0-0.2.rc2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
473fc7
473fc7
* Mon Jan 04 2021 Nikola Forró <nforro@redhat.com> - 1:1.20.0-0.1.rc2
473fc7
- Generate the main dispatcher config header into the build dir
473fc7
473fc7
* Mon Dec 28 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.20.0-0.rc2
473fc7
- 1.20.0 rc2
473fc7
473fc7
* Tue Nov 03 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.4-1
473fc7
- 1.19.4
473fc7
473fc7
* Thu Oct 29 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.3-1
473fc7
- 1.19.3
473fc7
473fc7
* Tue Oct 27 2020 Nikola Forró <nforro@redhat.com> - 1:1.19.2-2
473fc7
- Make test suite work in FIPS (140-2) Mode
473fc7
473fc7
* Thu Sep 10 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.2-1
473fc7
- 1.19.2
473fc7
473fc7
* Sun Aug 16 2020 Iñaki Úcar <iucar@fedoraproject.org> - 1:1.19.1-3
473fc7
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
473fc7
473fc7
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.19.1-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
473fc7
473fc7
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.1-1
473fc7
- 1.19.1
473fc7
473fc7
* Thu Jul 16 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-2
473fc7
- Assume old-style numpy provides from python2-numpy
473fc7
473fc7
* Mon Jun 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-1
473fc7
- 1.19.0 final.
473fc7
473fc7
* Mon Jun 01 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-0.rc2
473fc7
- 1.19.0 rc2
473fc7
473fc7
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1:1.18.4-3
473fc7
- Rebuilt for Python 3.9
473fc7
473fc7
* Fri May 08 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.4-2
473fc7
- Own __pycache__ dir, 1833392
473fc7
473fc7
* Sun May 03 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.4-1
473fc7
- 1.18.4
473fc7
473fc7
* Mon Apr 20 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.3-1
473fc7
- 1.18.3
473fc7
473fc7
* Wed Mar 18 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.2-1
473fc7
- 1.18.2
473fc7
473fc7
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18.1-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
473fc7
473fc7
* Mon Jan 06 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.1-1
473fc7
- 1.18.1
473fc7
473fc7
* Mon Dec 30 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.0-1
473fc7
- 1.18.0
473fc7
473fc7
* Mon Nov 11 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.17.4-2
473fc7
- Backport patch for s390x failures
473fc7
- Enable non-broken tests on ppc64le
473fc7
473fc7
* Mon Nov 11 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.4-1
473fc7
- 1.17.4
473fc7
473fc7
* Fri Oct 18 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.3-1
473fc7
- 1.17.3
473fc7
473fc7
* Sat Sep 07 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.2-1
473fc7
- 1.17.2
473fc7
473fc7
* Thu Aug 29 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.1-1
473fc7
- 1.17.1
473fc7
473fc7
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.17.0-3
473fc7
- Rebuilt for Python 3.8
473fc7
473fc7
* Thu Aug 01 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.17.0-2
473fc7
- Reintroduce libnpymath.a (#1735674)
473fc7
473fc7
* Tue Jul 30 2019 Gwyn Ciesla <gwync@protonmail.com> 1:1.17.0-1
473fc7
- 1.17.0, split out Python 2.
473fc7
473fc7
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.16.4-3
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
473fc7
473fc7
* Thu Jun 20 2019 Kalev Lember <klember@redhat.com> - 1:1.16.4-2
473fc7
- Avoid hardcoding /usr prefix
473fc7
473fc7
* Tue May 28 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.4-1
473fc7
- 1.16.4
473fc7
473fc7
* Thu May 16 2019 Orion Poplawski <orion@nwra.com> - 1:1.16.3-2
473fc7
- Build only with openblasp (bugz#1709161)
473fc7
473fc7
* Mon Apr 22 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.3-1
473fc7
- 1.16.3.
473fc7
473fc7
* Tue Feb 26 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.2-1
473fc7
- 1.16.2.
473fc7
473fc7
* Fri Feb 01 2019 Gwyn Ciesla <limburgher@gmail.com> - 1:1.16.1-1
473fc7
- 1.16.1.
473fc7
473fc7
* Tue Jan 22 2019 Gwyn Ciesla <limburgher@gmail.com> - 1:1.16.0-1
473fc7
- 1.16.0.
473fc7
473fc7
* Wed Aug 29 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.1-2
473fc7
- Switch to pytest for running tests during check
473fc7
- Stop ignoring failures when running tests
473fc7
- Set PATH in check so that f2py tests work
473fc7
- Update docs to match release
473fc7
- Remove outdated workaround from rhbz#849713
473fc7
473fc7
* Wed Aug 22 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.1-1
473fc7
- Update to latest version
473fc7
473fc7
* Sat Aug 11 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.0-2
473fc7
- Fix broken build on s390x
473fc7
- Remove bytecode produced by pytest
473fc7
- Re-enable tests on s390x
473fc7
473fc7
* Tue Jul 24 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.15.0-1
473fc7
- 1.15.0
473fc7
473fc7
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.5-3
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
473fc7
473fc7
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1:1.14.5-2
473fc7
- Rebuilt for Python 3.7
473fc7
473fc7
* Wed Jun 13 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.5-1
473fc7
- 1.14.5
473fc7
473fc7
* Tue May 01 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.3-1
473fc7
- 1.14.3
473fc7
473fc7
* Mon Mar 12 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.2-1
473fc7
- 1.14.2
473fc7
473fc7
* Wed Feb 21 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.1-1
473fc7
- 1.14.1
473fc7
473fc7
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.0-0.rc1.1
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
473fc7
473fc7
* Wed Dec 13 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.0-0.rc1
473fc7
- 1.14.0 rc1
473fc7
473fc7
* Mon Dec 11 2017 Iryna Shcherbina <ishcherb@redhat.com> - 1:1.13.3-5
473fc7
- Fix ambiguous Python 2 dependency declarations
473fc7
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
473fc7
473fc7
* Thu Nov 16 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.3-4
473fc7
- Split out doc subpackage.
473fc7
473fc7
* Mon Nov 06 2017 Merlin Mathesius <mmathesi@redhat.com> - 1:1.13.3-3
473fc7
- Cleanup spec file conditionals
473fc7
473fc7
* Tue Oct 31 2017 Christian Dersch <lupinix@mailbox.org> - 1:1.13.3-2
473fc7
- set proper environment variables for openblas
473fc7
473fc7
* Wed Oct 04 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.3-1
473fc7
- 1.13.3
473fc7
473fc7
* Thu Sep 28 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.2-1
473fc7
- 1.13.2
473fc7
473fc7
* Tue Aug 08 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.1-4
473fc7
- Use openblas where available, BZ 1472318.
473fc7
473fc7
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-3
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
473fc7
473fc7
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
473fc7
473fc7
* Fri Jul 07 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.1-1
473fc7
- 1.13.1 final
473fc7
473fc7
* Fri Jun 09 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-1
473fc7
- 1.13.0 final
473fc7
473fc7
* Fri May 19 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-0.rc2
473fc7
- 1.13.0 rc2
473fc7
473fc7
* Thu May 11 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-0.rc1
473fc7
- 1.13.0 rc1
473fc7
473fc7
* Wed Mar 29 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.12.1-1
473fc7
- 1.12.1
473fc7
473fc7
* Tue Jan 31 2017 Simone Caronni <negativo17@gmail.com> - 1:1.12.0-1
473fc7
- Update to 1.12.0, build with gcc 7.0.
473fc7
473fc7
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1:1.11.2-2
473fc7
- Rebuild for Python 3.6
473fc7
473fc7
* Mon Oct 3 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.2-1
473fc7
- Update to 1.11.2 final
473fc7
473fc7
* Thu Sep 15 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.2-0.rc1
473fc7
- Update to 1.11.2rc1, BZ 1340440.
473fc7
473fc7
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.11.1-2
473fc7
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
473fc7
473fc7
* Tue Jun 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.1-1
473fc7
- Update to 1.11.1 final
473fc7
473fc7
* Tue Jun 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.1-0.rc1
473fc7
- Update to 1.11.1rc1, BZ 1340440.
473fc7
473fc7
* Mon Mar 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-4
473fc7
- Update to 1.11.0 final
473fc7
473fc7
* Wed Mar 23 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-3.rc2
473fc7
- Update to 1.11.0rc2
473fc7
473fc7
* Sun Mar  6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1:1.11.0-2.b3
473fc7
- Bump Release. 1b2 is higher than 0b3
473fc7
473fc7
* Wed Feb 10 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b3
473fc7
- Update to 1.11.0b2, BZ 1306249.
473fc7
473fc7
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.11.0-1b2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
473fc7
473fc7
* Sun Jan 31 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b2
473fc7
- Update to 1.11.0b2, BZ 1303387.
473fc7
473fc7
* Tue Jan 26 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-020161016.cc2b04git
473fc7
- Update to git snapshot (due to build issue) after 1.11.0b1, BZ 1301943.
473fc7
473fc7
* Thu Jan 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.10.4-1
473fc7
- Update to 1.10.4, BZ 1296509.
473fc7
473fc7
* Tue Dec 15 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-1
473fc7
- Update to 1.10.2, BZ 1291674.
473fc7
473fc7
* Tue Dec 08 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-0.2.rc2
473fc7
- Update to 1.10.2rc1, BZ 1289550.
473fc7
473fc7
* Fri Nov 13 2015 Orion Poplawski <orion@cora.nwra.com> - 1:1.10.2-0.1.rc1
473fc7
- Update to 1.10.2rc1
473fc7
- Drop opt-flags patch applied upstream
473fc7
473fc7
* Fri Nov 13 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-6
473fc7
- Add provides to satisfy numpy%%{_isa} requires in other packages
473fc7
473fc7
* Thu Nov 12 2015 Orion Poplawski <orion@nwra.com> - 1:1.10.1-5
473fc7
- Re-add provides f2py
473fc7
473fc7
* Thu Nov 12 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-4
473fc7
- Fix obsoletes / provides for numpy -> python2-numpy rename
473fc7
473fc7
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-3
473fc7
- Remove fortran flags or arm would build with -march=x86-64
473fc7
473fc7
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-2
473fc7
- Provide python2-* packages
473fc7
- Run tests with verbose=2
473fc7
473fc7
* Tue Oct 13 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.1-1
473fc7
- Update to 1.10.1, BZ 1271022.
473fc7
473fc7
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1:1.10.0-2
473fc7
- Rebuilt for Python3.5 rebuild
473fc7
473fc7
* Tue Oct 06 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-1
473fc7
- Update to 1.10.0 final.
473fc7
473fc7
* Wed Sep 02 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-0.b1
473fc7
- Update to 1.10.0b1, BZ 1252641.
473fc7
473fc7
* Thu Aug 13 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-3
473fc7
- Add python2-numpy provides (bug #1249423)
473fc7
- Spec cleanup
473fc7
473fc7
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.2-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
473fc7
473fc7
* Sun Mar 1 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-1
473fc7
- Update to 1.9.2
473fc7
473fc7
* Tue Jan 6 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.1-2
473fc7
- Add upstream patch to fix xerbla linkage (bug #1172834)
473fc7
473fc7
* Tue Nov 04 2014 Jon Ciesla <limburgher@gmail.com> - 1:1.9.1-1
473fc7
- Update to 1.9.1, BZ 1160273.
473fc7
473fc7
* Sun Sep 7 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-1
473fc7
- Update to 1.9.0
473fc7
473fc7
* Wed Aug 27 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-0.1.rc1
473fc7
- Update to 1.9.0rc1
473fc7
473fc7
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.2-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
473fc7
473fc7
* Sun Aug 10 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.2-1
473fc7
- Update to 1.8.2
473fc7
473fc7
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1-4
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
473fc7
473fc7
* Fri May 9 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-3
473fc7
- Rebuild for Python 3.4
473fc7
473fc7
* Wed May 07 2014 Jaromir Capik <jcapik@redhat.com> - 1:1.8.1-2
473fc7
- Fixing FTBFS on ppc64le (#1078354)
473fc7
473fc7
* Tue Mar 25 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-1
473fc7
- Update to 1.8.1
473fc7
473fc7
* Tue Mar 4 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.0-5
473fc7
- Fix __pycache__ ownership (bug #1072467)
473fc7
473fc7
* Mon Feb 10 2014 Thomas Spura <tomspur@fedoraproject.org> - 1:1.8.0-4
473fc7
- Fix CVE-2014-1858, CVE-2014-1859: #1062009, #1062359
473fc7
473fc7
* Mon Nov 25 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-3
473fc7
- Ship doc module (bug #1034357)
473fc7
473fc7
* Wed Nov 6 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-2
473fc7
- Move f2py documentation to f2py package (bug #1027394)
473fc7
473fc7
* Wed Oct 30 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-1
473fc7
- Update to 1.8.0 final
473fc7
473fc7
* Mon Oct 14 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.7.rc2
473fc7
- Update to 1.8.0rc2
473fc7
- Create clean site.cfg
473fc7
- Use serial atlas
473fc7
473fc7
* Mon Sep 23 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.6.b2
473fc7
- Add [atlas] to site.cfg for new atlas library names
473fc7
473fc7
* Sun Sep 22 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.5.b2
473fc7
- Update site.cfg for new atlas library names
473fc7
473fc7
* Sat Sep 21 2013 David Tardon <dtardon@redhat.com> - 1:1.8.0-0.4.b2
473fc7
- rebuild for atlas 3.10
473fc7
473fc7
* Tue Sep 10 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.8.0-0.3.b2
473fc7
- Fix libdir path in site.cfg, BZ 1006242.
473fc7
473fc7
* Sun Sep 8 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.2.b2
473fc7
- Update to 1.8.0b2
473fc7
473fc7
* Wed Sep 4 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.1.b1
473fc7
- Update to 1.8.0b1
473fc7
- Drop f2py patch applied upstream
473fc7
473fc7
* Tue Aug 27 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.7.1-5
473fc7
- URL Fix, BZ 1001337
473fc7
473fc7
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.1-4
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
473fc7
473fc7
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-3
473fc7
- Fix rpmlint warnings
473fc7
- Update License
473fc7
- Apply patch: change shebang of f2py to use binary directly
473fc7
473fc7
* Sun Jun 2 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-2
473fc7
- Specfile cleanup (bug #969854)
473fc7
473fc7
* Wed Apr 10 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-1
473fc7
- Update to 1.7.1
473fc7
473fc7
* Sat Feb 9 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.0-1
473fc7
- Update to 1.7.0 final
473fc7
473fc7
* Sun Dec 30 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.5.rc1
473fc7
- Update to 1.7.0rc1
473fc7
473fc7
* Thu Sep 20 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.4.b2
473fc7
- Update to 1.7.0b2
473fc7
- Drop patches applied upstream
473fc7
473fc7
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.3.b1
473fc7
- Add patch from github pull 371 to fix python 3.3 pickle issue
473fc7
- Remove cython .c source regeneration - fails now
473fc7
473fc7
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.2.b1
473fc7
- add workaround for rhbz#849713 (fixes FTBFS)
473fc7
473fc7
* Tue Aug 21 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.7.0-0.1.b1
473fc7
- Update to 1.7.0b1
473fc7
- Rebase python 3.3 patchs to current git master
473fc7
- Drop patches applied upstream
473fc7
473fc7
* Sun Aug  5 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-5
473fc7
- rework patches for 3.3 to more directly reflect upstream's commits
473fc7
- re-enable test suite on python 3
473fc7
- forcibly regenerate Cython .c source to avoid import issues on Python 3.3
473fc7
473fc7
* Sun Aug  5 2012 Thomas Spura <tomspur@fedoraproject.org> - 1:1.6.2-4
473fc7
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
473fc7
- needs unicode patch
473fc7
473fc7
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-3
473fc7
- remove rhel logic from with_python3 conditional
473fc7
473fc7
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.2-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
473fc7
473fc7
* Sun May 20 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2-1
473fc7
- Update to 1.6.2 final
473fc7
473fc7
* Sat May 12 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2rc1-0.1
473fc7
- Update to 1.6.2rc1
473fc7
473fc7
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.1-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
473fc7
473fc7
* Mon Nov 7 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.1-1
473fc7
- Update to 1.6.1
473fc7
473fc7
* Fri Jun 17 2011 Jon Ciesla <limb@jcomserv.net> - 1:1.6.0-2
473fc7
- Bump and rebuild for BZ 712251.
473fc7
473fc7
* Mon May 16 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-1
473fc7
- Update to 1.6.0 final
473fc7
473fc7
* Mon Apr 4 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.2.b2
473fc7
- Update to 1.6.0b2
473fc7
- Drop import patch fixed upstream
473fc7
473fc7
* Thu Mar 31 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.1.b1
473fc7
- Update to 1.6.0b1
473fc7
- Build python3  module with python3
473fc7
- Add patch from upstream to fix build time import error
473fc7
473fc7
* Wed Mar 30 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.5.1-1
473fc7
- Update to 1.5.1 final
473fc7
473fc7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.1-0.4
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
473fc7
473fc7
* Thu Jan 13 2011 Dan Horák <dan[at]danny.cz> - 1:1.5.1-0.3
473fc7
- fix the AttributeError during tests
473fc7
- fix build on s390(x)
473fc7
473fc7
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.5.1-0.2
473fc7
- rebuild for newer python3
473fc7
473fc7
* Wed Oct 27 2010 Thomas Spura <tomspur@fedoraproject.org> - 1:1.5.1-0.1
473fc7
- update to 1.5.1rc1
473fc7
- add python3 subpackage
473fc7
- some spec-cleanups
473fc7
473fc7
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-6
473fc7
- actually add the patch this time
473fc7
473fc7
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-5
473fc7
- fix segfault within %%check on 2.7 (patch 2)
473fc7
473fc7
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-4
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
473fc7
473fc7
* Sun Jul 18 2010 Dan Horák <dan[at]danny.cz> 1.4.1-3
473fc7
- ignore the "Ticket #1299 second test" failure on s390(x)
473fc7
473fc7
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-2
473fc7
- source commit fix
473fc7
473fc7
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-1
473fc7
- New upstream release. Include backported doublefree patch
473fc7
473fc7
* Mon Apr 26 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-8
473fc7
- Moved distutils back to the main package, BZ 572820.
473fc7
473fc7
* Thu Apr 08 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-7
473fc7
- Reverted to 1.3.0 after upstream pulled 1.4.0, BZ 579065.
473fc7
473fc7
* Tue Mar 02 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-5
473fc7
- Linking /usr/include/numpy to .h files, BZ 185079.
473fc7
473fc7
* Tue Feb 16 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-4
473fc7
- Re-enabling atlas BR, dropping lapack Requires.
473fc7
473fc7
* Wed Feb 10 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-3
473fc7
- Since the previous didn't work, Requiring lapack.
473fc7
473fc7
* Tue Feb 09 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-2
473fc7
- Temporarily dropping atlas BR to work around 562577.
473fc7
473fc7
* Fri Jan 22 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-1
473fc7
- 1.4.0.
473fc7
- Dropped ARM patch, ARM support added upstream.
473fc7
473fc7
* Tue Nov 17 2009 Jitesh Shah <jiteshs@marvell.com> - 1.3.0-6.fa1
473fc7
- Add ARM support
473fc7
473fc7
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
473fc7
473fc7
* Thu Jun 11 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-5
473fc7
- Fixed atlas BR, BZ 505376.
473fc7
473fc7
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-4
473fc7
- EVR bump for pygame chainbuild.
473fc7
473fc7
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-3
473fc7
- Moved linalg, fft back to main package.
473fc7
473fc7
* Tue Apr 14 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-2
473fc7
- Split out f2py into subpackage, thanks Peter Robinson pbrobinson@gmail.com.
473fc7
473fc7
* Tue Apr 07 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-1
473fc7
- Update to latest upstream.
473fc7
- Fixed Source0 URL.
473fc7
473fc7
* Thu Apr 02 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-0.rc1
473fc7
- Update to latest upstream.
473fc7
473fc7
* Thu Mar 05 2009 Jon Ciesla <limb@jcomserv.net> 1.2.1-3
473fc7
- Require python-devel, BZ 488464.
473fc7
473fc7
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
473fc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
473fc7
473fc7
* Fri Dec 19 2008 Jon Ciesla <limb@jcomserv.net> 1.2.1-1
473fc7
- Update to 1.2.1.
473fc7
473fc7
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-2
473fc7
- Rebuild for Python 2.6
473fc7
473fc7
* Tue Oct 07 2008 Jon Ciesla <limb@jcomserv.net> 1.2.0-1
473fc7
- New upstream release, added python-nose BR. BZ 465999.
473fc7
- Using atlas blas, not blas-devel. BZ 461472.
473fc7
473fc7
* Wed Aug 06 2008 Jon Ciesla <limb@jcomserv.net> 1.1.1-1
473fc7
- New upstream release
473fc7
473fc7
* Thu May 29 2008 Jarod Wilson <jwilson@redhat.com> 1.1.0-1
473fc7
- New upstream release
473fc7
473fc7
* Tue May 06 2008 Jarod Wilson <jwilson@redhat.com> 1.0.4-1
473fc7
- New upstream release
473fc7
473fc7
* Mon Feb 11 2008 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-2
473fc7
- Add python egg to %%files on f9+
473fc7
473fc7
* Wed Aug 22 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-1
473fc7
- New upstream release
473fc7
473fc7
* Wed Jun 06 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3-1
473fc7
- New upstream release
473fc7
473fc7
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-2
473fc7
- Drop BR: atlas-devel, since it just provides binary-compat
473fc7
  blas and lapack libs. Atlas can still be optionally used
473fc7
  at runtime. (Note: this is all per the atlas maintainer).
473fc7
473fc7
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-1
473fc7
- New upstream release
473fc7
473fc7
* Tue Apr 17 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-4
473fc7
- Update gfortran patch to recognize latest gfortran f95 support
473fc7
- Resolves rhbz#236444
473fc7
473fc7
* Fri Feb 23 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-3
473fc7
- Fix up cpuinfo bug (#229753). Upstream bug/change:
473fc7
  http://projects.scipy.org/scipy/scipy/ticket/349
473fc7
473fc7
* Thu Jan 04 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-2
473fc7
- Per discussion w/Jose Matos, Obsolete/Provide f2py, as the
473fc7
  stand-alone one is no longer supported/maintained upstream
473fc7
473fc7
* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> 1.0.1-1
473fc7
- New upstream release
473fc7
473fc7
* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.0-2
473fc7
- Rebuild for python 2.5
473fc7
473fc7
* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.0-1
473fc7
- New upstream release
473fc7
473fc7
* Wed Sep 06 2006 Jarod Wilson <jwilson@redhat.com> 0.9.8-1
473fc7
- New upstream release
473fc7
473fc7
* Wed Apr 26 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.6-1
473fc7
- Upstream update
473fc7
473fc7
* Thu Feb 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.5-1
473fc7
- Upstream update
473fc7
473fc7
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-2
473fc7
- Rebuild for Fedora Extras 5
473fc7
473fc7
* Thu Feb  2 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-1
473fc7
- Initial RPM release
473fc7
- Added gfortran patch from Neal Becker