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