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