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