Blame python2-numpy.spec

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