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