b14d49
%global with_python3 0
b14d49
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
b14d49
b14d49
#uncomment next line for a release candidate or a beta
b14d49
#global relc rc1
b14d49
b14d49
Name:           numpy
b14d49
Version:        1.7.1
457ac0
Release:        11%{?dist}
b14d49
Epoch:          1
b14d49
Summary:        A fast multidimensional array facility for Python
b14d49
b14d49
Group:          Development/Languages
b14d49
# Everything is BSD except for class SafeEval in numpy/lib/utils.py which is Python
b14d49
License:        BSD and Python
b14d49
URL:            http://www.numpy.org/
b14d49
Source0:        http://downloads.sourceforge.net/numpy/%{name}-%{version}%{?relc}.tar.gz
b14d49
29e3c2
# Fix of CVE-2014-1858, CVE-2014-1859: #1062009
29e3c2
# Modified version of 3 upstream commits, so they apply to current version:
29e3c2
# - 8296aa0b911c036c984e23665ee0f7ddca579b91
29e3c2
# - 524b9eaa33ec67e34eb31a208e02bb934f778096
29e3c2
# - 0bb46c1448b0d3f5453d5182a17ea7ac5854ee15
29e3c2
Patch0:         CVE-2014-1858-CVE-2014-1859.patch
457ac0
# bz1125621
457ac0
Patch1:		numpy-1.8.1.ppc64le.patch
29e3c2
b14d49
BuildRequires:  python2-devel lapack-devel python-setuptools gcc-gfortran atlas-devel python-nose
b14d49
Requires:       python-nose
b14d49
%if 0%{?with_python3}
b14d49
BuildRequires:  python3-devel
b14d49
BuildRequires:  python3-setuptools
b14d49
BuildRequires:  python3-nose
b14d49
%endif
b14d49
BuildRequires:  Cython
b14d49
b14d49
%description
b14d49
NumPy is a general-purpose array-processing package designed to
b14d49
efficiently manipulate large multi-dimensional arrays of arbitrary
b14d49
records without sacrificing too much speed for small multi-dimensional
b14d49
arrays.  NumPy is built on the Numeric code base and adds features
b14d49
introduced by numarray as well as an extended C-API and the ability to
b14d49
create arrays of arbitrary type.
b14d49
b14d49
There are also basic facilities for discrete fourier transform,
b14d49
basic linear algebra and random number generation. Also included in
b14d49
this package is a version of f2py that works properly with NumPy.
b14d49
b14d49
%package f2py
b14d49
Summary:        f2py for numpy
b14d49
Group:          Development/Libraries
b14d49
Requires:       %{name} = %{epoch}:%{version}-%{release}
b14d49
Requires:       python-devel
b14d49
Provides:       f2py = %{version}-%{release}
b14d49
Obsoletes:      f2py <= 2.45.241_1927
b14d49
b14d49
%description f2py
b14d49
This package includes a version of f2py that works properly with NumPy.
b14d49
b14d49
%if 0%{?with_python3}
b14d49
%package -n python3-numpy
b14d49
Summary:        A fast multidimensional array facility for Python
b14d49
b14d49
Group:          Development/Languages
b14d49
License:        BSD
b14d49
%description -n python3-numpy
b14d49
NumPy is a general-purpose array-processing package designed to
b14d49
efficiently manipulate large multi-dimensional arrays of arbitrary
b14d49
records without sacrificing too much speed for small multi-dimensional
b14d49
arrays.  NumPy is built on the Numeric code base and adds features
b14d49
introduced by numarray as well as an extended C-API and the ability to
b14d49
create arrays of arbitrary type.
b14d49
b14d49
There are also basic facilities for discrete fourier transform,
b14d49
basic linear algebra and random number generation. Also included in
b14d49
this package is a version of f2py that works properly with NumPy.
b14d49
b14d49
%package -n python3-numpy-f2py
b14d49
Summary:        f2py for numpy
b14d49
Group:          Development/Libraries
b14d49
Requires:       python3-numpy = %{epoch}:%{version}-%{release}
b14d49
Requires:       python3-devel
b14d49
Provides:       python3-f2py = %{version}-%{release}
b14d49
Obsoletes:      python3-f2py <= 2.45.241_1927
b14d49
b14d49
%description -n python3-numpy-f2py
b14d49
This package includes a version of f2py that works properly with NumPy.
b14d49
%endif # with_python3
b14d49
b14d49
%prep
b14d49
%setup -q -n %{name}-%{version}%{?relc}
29e3c2
%patch0 -p1
b14d49
457ac0
%ifarch ppc64le
457ac0
%patch1 -p1
457ac0
%endif
457ac0
b14d49
# workaround for rhbz#849713
b14d49
# http://mail.scipy.org/pipermail/numpy-discussion/2012-July/063530.html
b14d49
rm numpy/distutils/command/__init__.py && touch numpy/distutils/command/__init__.py
b14d49
b14d49
%if 0%{?with_python3}
b14d49
rm -rf %{py3dir}
b14d49
cp -a . %{py3dir}
b14d49
%endif
b14d49
b14d49
cat >> site.cfg <
b14d49
[DEFAULT]
b14d49
library_dirs = %{_libdir}
b14d49
include_dirs = /usr/include
b14d49
[atlas]
b14d49
library_dirs = %{_libdir}/atlas
b14d49
atlas_libs = tatlas
b14d49
EOF
b14d49
b14d49
b14d49
%build
b14d49
%if 0%{?with_python3}
b14d49
pushd %{py3dir}
b14d49
env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
b14d49
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
b14d49
    %{__python3} setup.py build
b14d49
popd
b14d49
%endif # with _python3
b14d49
b14d49
env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
b14d49
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
b14d49
    %{__python} setup.py build
b14d49
b14d49
%install
b14d49
# first install python3 so the binaries are overwritten by the python2 ones
b14d49
%if 0%{?with_python3}
b14d49
pushd %{py3dir}
b14d49
#%%{__python} setup.py install -O1 --skip-build --root %%{buildroot}
b14d49
# skip-build currently broken, this works around it for now
b14d49
env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
b14d49
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
b14d49
    %{__python3} setup.py install --root %{buildroot}
b14d49
rm -rf docs-f2py ; mv %{buildroot}%{python3_sitearch}/%{name}/f2py/docs docs-f2py
b14d49
mv -f %{buildroot}%{python3_sitearch}/%{name}/f2py/f2py.1 f2py.1
b14d49
rm -rf doc ; mv -f %{buildroot}%{python3_sitearch}/%{name}/doc .
b14d49
install -D -p -m 0644 f2py.1 %{buildroot}%{_mandir}/man1/f2py.1
b14d49
pushd %{buildroot}%{_bindir} &> /dev/null
b14d49
popd &> /dev/null
b14d49
b14d49
# Remove doc files. They should in in %%doc
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/COMPATIBILITY
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/DEV_README.txt
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/INSTALL.txt
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/LICENSE.txt
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/README.txt
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/THANKS.txt
b14d49
rm -f %{buildroot}%{python3_sitearch}/%{name}/site.cfg.example
b14d49
b14d49
popd
b14d49
%endif # with_python3
b14d49
b14d49
#%%{__python} setup.py install -O1 --skip-build --root %%{buildroot}
b14d49
# skip-build currently broken, this works around it for now
b14d49
env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
b14d49
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
b14d49
    %{__python} setup.py install --root %{buildroot}
b14d49
rm -rf docs-f2py ; mv %{buildroot}%{python_sitearch}/%{name}/f2py/docs docs-f2py
b14d49
mv -f %{buildroot}%{python_sitearch}/%{name}/f2py/f2py.1 f2py.1
29e3c2
# remove sphinx docs, save dir for tests
29e3c2
rm -rf doc/*
b14d49
install -D -p -m 0644 f2py.1 %{buildroot}%{_mandir}/man1/f2py.1
b14d49
pushd %{buildroot}%{_bindir} &> /dev/null
b14d49
b14d49
# resolves rhbz#987032
b14d49
sed -i 's@#!/usr/bin/env python@#!/usr/bin/python@' f2py
b14d49
b14d49
# symlink for anyone who was using f2py.numpy
b14d49
ln -s f2py f2py.numpy
b14d49
popd &> /dev/null
b14d49
b14d49
#symlink for includes, BZ 185079
b14d49
mkdir -p %{buildroot}/usr/include
b14d49
ln -s %{python_sitearch}/%{name}/core/include/numpy/ %{buildroot}/usr/include/numpy
b14d49
b14d49
# Remove doc files. They should in in %%doc
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/COMPATIBILITY
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/DEV_README.txt
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/INSTALL.txt
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/LICENSE.txt
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/README.txt
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/THANKS.txt
b14d49
rm -f %{buildroot}%{python_sitearch}/%{name}/site.cfg.example
b14d49
b14d49
%check
b14d49
pushd doc &> /dev/null
b14d49
PYTHONPATH="%{buildroot}%{python_sitearch}" %{__python} -c "import pkg_resources, numpy ; numpy.test(verbose=3)" \
b14d49
%ifarch s390 s390x
b14d49
|| :
b14d49
%endif
b14d49
# don't remove this comment
b14d49
popd &> /dev/null
b14d49
b14d49
%if 0%{?with_python3}
b14d49
pushd doc &> /dev/null
b14d49
# there is no python3-nose yet
b14d49
PYTHONPATH="%{buildroot}%{python3_sitearch}" %{__python3} -c "import pkg_resources, numpy ; numpy.test()" \
b14d49
%ifarch s390 s390x
b14d49
|| :
b14d49
%endif
b14d49
# don't remove this comment
b14d49
popd &> /dev/null
b14d49
b14d49
%endif # with_python3
b14d49
b14d49
b14d49
%files
29e3c2
%doc docs-f2py LICENSE.txt README.txt THANKS.txt DEV_README.txt COMPATIBILITY site.cfg.example
b14d49
%dir %{python_sitearch}/%{name}
b14d49
%{python_sitearch}/%{name}/*.py*
b14d49
%{python_sitearch}/%{name}/core
b14d49
%{python_sitearch}/%{name}/distutils
29e3c2
%{python_sitearch}/%{name}/doc
b14d49
%{python_sitearch}/%{name}/fft
b14d49
%{python_sitearch}/%{name}/lib
b14d49
%{python_sitearch}/%{name}/linalg
b14d49
%{python_sitearch}/%{name}/ma
b14d49
%{python_sitearch}/%{name}/numarray
b14d49
%{python_sitearch}/%{name}/oldnumeric
b14d49
%{python_sitearch}/%{name}/random
b14d49
%{python_sitearch}/%{name}/testing
b14d49
%{python_sitearch}/%{name}/tests
b14d49
%{python_sitearch}/%{name}/compat
b14d49
%{python_sitearch}/%{name}/matrixlib
b14d49
%{python_sitearch}/%{name}/polynomial
b14d49
%{python_sitearch}/%{name}-*.egg-info
b14d49
%{_includedir}/numpy
b14d49
b14d49
%files f2py
b14d49
%{_mandir}/man*/*
b14d49
%{_bindir}/f2py
b14d49
%{_bindir}/f2py.numpy
b14d49
%{python_sitearch}/%{name}/f2py
b14d49
b14d49
%if 0%{?with_python3}
b14d49
%files -n python3-numpy
b14d49
%doc docs-f2py doc/* LICENSE.txt README.txt THANKS.txt DEV_README.txt COMPATIBILITY site.cfg.example
b14d49
%{python3_sitearch}/%{name}/__pycache__/*
b14d49
%dir %{python3_sitearch}/%{name}
b14d49
%{python3_sitearch}/%{name}/*.py*
b14d49
%{python3_sitearch}/%{name}/core
b14d49
%{python3_sitearch}/%{name}/distutils
b14d49
%{python3_sitearch}/%{name}/fft
b14d49
%{python3_sitearch}/%{name}/lib
b14d49
%{python3_sitearch}/%{name}/linalg
b14d49
%{python3_sitearch}/%{name}/ma
b14d49
%{python3_sitearch}/%{name}/numarray
b14d49
%{python3_sitearch}/%{name}/oldnumeric
b14d49
%{python3_sitearch}/%{name}/random
b14d49
%{python3_sitearch}/%{name}/testing
b14d49
%{python3_sitearch}/%{name}/tests
b14d49
%{python3_sitearch}/%{name}/compat
b14d49
%{python3_sitearch}/%{name}/matrixlib
b14d49
%{python3_sitearch}/%{name}/polynomial
b14d49
%{python3_sitearch}/%{name}-*.egg-info
b14d49
b14d49
%files -n python3-numpy-f2py
b14d49
%{_bindir}/f2py3
b14d49
%{python3_sitearch}/%{name}/f2py
b14d49
%endif # with_python3
b14d49
b14d49
b14d49
%changelog
457ac0
* Thu Aug 07 2014 jchaloup <jchaloup@redhat.com> - 1:1.7.1-11
457ac0
- resolves: #1125621
457ac0
  support for ppc64le, taken from private-rhel-7.0-ppc64le branch
457ac0
29e3c2
* Tue Mar 18 2014 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-10
29e3c2
- fix changelog entry below
29e3c2
29e3c2
* Mon Feb 10 2014 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-9
29e3c2
- Fix CVE-2014-1858, CVE-2014-1859: #1062009
29e3c2
29e3c2
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:1.7.1-8
29e3c2
- Mass rebuild 2014-01-24
29e3c2
29e3c2
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:1.7.1-7
29e3c2
- Mass rebuild 2013-12-27
29e3c2
29e3c2
* Mon Nov 25 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-6
29e3c2
- keep numpy.doc in site_arch
29e3c2
b14d49
* Wed Sep 25 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-5
b14d49
- rebuilt with atlas 3.10, rhbz#1009069
b14d49
b14d49
* Wed Aug 28 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-4
b14d49
- URL Fix, rhbz#1001337
b14d49
b14d49
* Tue Jul 23 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-3
b14d49
- Update License
b14d49
- Fix rpmlint warnings
b14d49
- Increase verbosity level of tests
b14d49
- Disable python 3 build
b14d49
- Fix rhbz#987032 (SCL related: wrong shebang)
b14d49
b14d49
* Sun Jun 2 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-2
b14d49
- Specfile cleanup (bug #969854)
b14d49
b14d49
* Wed Apr 10 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-1
b14d49
- Update to 1.7.1
b14d49
b14d49
* Sat Feb 9 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.0-1
b14d49
- Update to 1.7.0 final
b14d49
b14d49
* Sun Dec 30 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.5.rc1
b14d49
- Update to 1.7.0rc1
b14d49
b14d49
* Thu Sep 20 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.4.b2
b14d49
- Update to 1.7.0b2
b14d49
- Drop patches applied upstream
b14d49
b14d49
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.3.b1
b14d49
- Add patch from github pull 371 to fix python 3.3 pickle issue
b14d49
- Remove cython .c source regeneration - fails now
b14d49
b14d49
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.2.b1
b14d49
- add workaround for rhbz#849713 (fixes FTBFS)
b14d49
b14d49
* Tue Aug 21 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.7.0-0.1.b1
b14d49
- Update to 1.7.0b1
b14d49
- Rebase python 3.3 patchs to current git master
b14d49
- Drop patches applied upstream
b14d49
b14d49
* Sun Aug  5 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-5
b14d49
- rework patches for 3.3 to more directly reflect upstream's commits
b14d49
- re-enable test suite on python 3
b14d49
- forcibly regenerate Cython .c source to avoid import issues on Python 3.3
b14d49
b14d49
* Sun Aug  5 2012 Thomas Spura <tomspur@fedoraproject.org> - 1:1.6.2-4
b14d49
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
b14d49
- needs unicode patch
b14d49
b14d49
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-3
b14d49
- remove rhel logic from with_python3 conditional
b14d49
b14d49
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.2-2
b14d49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b14d49
b14d49
* Sun May 20 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2-1
b14d49
- Update to 1.6.2 final
b14d49
b14d49
* Sat May 12 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2rc1-0.1
b14d49
- Update to 1.6.2rc1
b14d49
b14d49
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.1-2
b14d49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b14d49
b14d49
* Mon Nov 7 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.1-1
b14d49
- Update to 1.6.1
b14d49
b14d49
* Fri Jun 17 2011 Jon Ciesla <limb@jcomserv.net> - 1:1.6.0-2
b14d49
- Bump and rebuild for BZ 712251.
b14d49
b14d49
* Mon May 16 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-1
b14d49
- Update to 1.6.0 final
b14d49
b14d49
* Mon Apr 4 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.2.b2
b14d49
- Update to 1.6.0b2
b14d49
- Drop import patch fixed upstream
b14d49
b14d49
* Thu Mar 31 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.1.b1
b14d49
- Update to 1.6.0b1
b14d49
- Build python3  module with python3
b14d49
- Add patch from upstream to fix build time import error
b14d49
b14d49
* Wed Mar 30 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.5.1-1
b14d49
- Update to 1.5.1 final
b14d49
b14d49
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.1-0.4
b14d49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b14d49
b14d49
* Thu Jan 13 2011 Dan Horák <dan[at]danny.cz> - 1:1.5.1-0.3
b14d49
- fix the AttributeError during tests
b14d49
- fix build on s390(x)
b14d49
b14d49
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.5.1-0.2
b14d49
- rebuild for newer python3
b14d49
b14d49
* Wed Oct 27 2010 Thomas Spura <tomspur@fedoraproject.org> - 1:1.5.1-0.1
b14d49
- update to 1.5.1rc1
b14d49
- add python3 subpackage
b14d49
- some spec-cleanups
b14d49
b14d49
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-6
b14d49
- actually add the patch this time
b14d49
b14d49
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-5
b14d49
- fix segfault within %%check on 2.7 (patch 2)
b14d49
b14d49
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-4
b14d49
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b14d49
b14d49
* Sun Jul 18 2010 Dan Horák <dan[at]danny.cz> 1.4.1-3
b14d49
- ignore the "Ticket #1299 second test" failure on s390(x)
b14d49
b14d49
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-2
b14d49
- source commit fix
b14d49
b14d49
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-1
b14d49
- New upstream release. Include backported doublefree patch
b14d49
b14d49
* Mon Apr 26 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-8
b14d49
- Moved distutils back to the main package, BZ 572820.
b14d49
b14d49
* Thu Apr 08 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-7
b14d49
- Reverted to 1.3.0 after upstream pulled 1.4.0, BZ 579065.
b14d49
b14d49
* Tue Mar 02 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-5
b14d49
- Linking /usr/include/numpy to .h files, BZ 185079.
b14d49
b14d49
* Tue Feb 16 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-4
b14d49
- Re-enabling atlas BR, dropping lapack Requires.
b14d49
b14d49
* Wed Feb 10 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-3
b14d49
- Since the previous didn't work, Requiring lapack.
b14d49
b14d49
* Tue Feb 09 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-2
b14d49
- Temporarily dropping atlas BR to work around 562577.
b14d49
b14d49
* Fri Jan 22 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-1
b14d49
- 1.4.0.
b14d49
- Dropped ARM patch, ARM support added upstream.
b14d49
b14d49
* Tue Nov 17 2009 Jitesh Shah <jiteshs@marvell.com> - 1.3.0-6.fa1
b14d49
- Add ARM support
b14d49
b14d49
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
b14d49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b14d49
b14d49
* Thu Jun 11 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-5
b14d49
- Fixed atlas BR, BZ 505376.
b14d49
b14d49
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-4
b14d49
- EVR bump for pygame chainbuild.
b14d49
b14d49
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-3
b14d49
- Moved linalg, fft back to main package.
b14d49
b14d49
* Tue Apr 14 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-2
b14d49
- Split out f2py into subpackage, thanks Peter Robinson pbrobinson@gmail.com.
b14d49
b14d49
* Tue Apr 07 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-1
b14d49
- Update to latest upstream.
b14d49
- Fixed Source0 URL.
b14d49
b14d49
* Thu Apr 02 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-0.rc1
b14d49
- Update to latest upstream.
b14d49
b14d49
* Thu Mar 05 2009 Jon Ciesla <limb@jcomserv.net> 1.2.1-3
b14d49
- Require python-devel, BZ 488464.
b14d49
b14d49
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
b14d49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b14d49
b14d49
* Fri Dec 19 2008 Jon Ciesla <limb@jcomserv.net> 1.2.1-1
b14d49
- Update to 1.2.1.
b14d49
b14d49
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-2
b14d49
- Rebuild for Python 2.6
b14d49
b14d49
* Tue Oct 07 2008 Jon Ciesla <limb@jcomserv.net> 1.2.0-1
b14d49
- New upstream release, added python-nose BR. BZ 465999.
b14d49
- Using atlas blas, not blas-devel. BZ 461472.
b14d49
b14d49
* Wed Aug 06 2008 Jon Ciesla <limb@jcomserv.net> 1.1.1-1
b14d49
- New upstream release
b14d49
b14d49
* Thu May 29 2008 Jarod Wilson <jwilson@redhat.com> 1.1.0-1
b14d49
- New upstream release
b14d49
b14d49
* Tue May 06 2008 Jarod Wilson <jwilson@redhat.com> 1.0.4-1
b14d49
- New upstream release
b14d49
b14d49
* Mon Feb 11 2008 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-2
b14d49
- Add python egg to %%files on f9+
b14d49
b14d49
* Wed Aug 22 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-1
b14d49
- New upstream release
b14d49
b14d49
* Wed Jun 06 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3-1
b14d49
- New upstream release
b14d49
b14d49
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-2
b14d49
- Drop BR: atlas-devel, since it just provides binary-compat
b14d49
  blas and lapack libs. Atlas can still be optionally used
b14d49
  at runtime. (Note: this is all per the atlas maintainer).
b14d49
b14d49
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-1
b14d49
- New upstream release
b14d49
b14d49
* Tue Apr 17 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-4
b14d49
- Update gfortran patch to recognize latest gfortran f95 support
b14d49
- Resolves rhbz#236444
b14d49
b14d49
* Fri Feb 23 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-3
b14d49
- Fix up cpuinfo bug (#229753). Upstream bug/change:
b14d49
  http://projects.scipy.org/scipy/scipy/ticket/349
b14d49
b14d49
* Thu Jan 04 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-2
b14d49
- Per discussion w/Jose Matos, Obsolete/Provide f2py, as the
b14d49
  stand-alone one is no longer supported/maintained upstream
b14d49
b14d49
* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> 1.0.1-1
b14d49
- New upstream release
b14d49
b14d49
* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.0-2
b14d49
- Rebuild for python 2.5
b14d49
b14d49
* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.0-1
b14d49
- New upstream release
b14d49
b14d49
* Wed Sep 06 2006 Jarod Wilson <jwilson@redhat.com> 0.9.8-1
b14d49
- New upstream release
b14d49
b14d49
* Wed Apr 26 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.6-1
b14d49
- Upstream update
b14d49
b14d49
* Thu Feb 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.5-1
b14d49
- Upstream update
b14d49
b14d49
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-2
b14d49
- Rebuild for Fedora Extras 5
b14d49
b14d49
* Thu Feb  2 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-1
b14d49
- Initial RPM release
b14d49
- Added gfortran patch from Neal Becker