2015-08-14 01:54:19 +00:00
|
|
|
%if 0%{?fedora}
|
2010-10-26 21:32:14 +00:00
|
|
|
%global with_python3 1
|
2010-10-26 11:19:33 +00:00
|
|
|
%else
|
2015-08-14 01:54:19 +00:00
|
|
|
%{!?python2_sitearch: %global python2_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
2010-10-26 10:52:47 +00:00
|
|
|
%endif
|
2006-02-04 05:46:41 +00:00
|
|
|
|
2010-10-26 13:27:14 +00:00
|
|
|
#uncomment next line for a release candidate or a beta
|
2016-10-04 03:08:45 +00:00
|
|
|
#global relc rc1
|
2010-10-26 13:27:14 +00:00
|
|
|
|
2015-10-14 11:58:51 +00:00
|
|
|
%global modname numpy
|
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
Name: numpy
|
2017-03-29 13:53:07 +00:00
|
|
|
Version: 1.12.1
|
2017-01-31 22:02:00 +00:00
|
|
|
Release: 1%{?dist}
|
2013-06-02 19:04:47 +00:00
|
|
|
Epoch: 1
|
2006-02-04 05:46:41 +00:00
|
|
|
Summary: A fast multidimensional array facility for Python
|
|
|
|
|
|
|
|
Group: Development/Languages
|
2013-07-23 11:54:06 +00:00
|
|
|
# Everything is BSD except for class SafeEval in numpy/lib/utils.py which is Python
|
|
|
|
License: BSD and Python
|
2013-08-27 13:56:31 +00:00
|
|
|
URL: http://www.numpy.org/
|
2017-01-31 22:02:00 +00:00
|
|
|
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
2012-08-05 23:39:40 +00:00
|
|
|
|
2010-10-26 11:19:33 +00:00
|
|
|
BuildRequires: python2-devel lapack-devel python-setuptools gcc-gfortran atlas-devel python-nose
|
2012-08-05 23:39:40 +00:00
|
|
|
BuildRequires: Cython
|
2007-01-04 16:39:26 +00:00
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
%description
|
2006-12-13 18:12:41 +00:00
|
|
|
NumPy is a general-purpose array-processing package designed to
|
|
|
|
efficiently manipulate large multi-dimensional arrays of arbitrary
|
|
|
|
records without sacrificing too much speed for small multi-dimensional
|
|
|
|
arrays. NumPy is built on the Numeric code base and adds features
|
|
|
|
introduced by numarray as well as an extended C-API and the ability to
|
|
|
|
create arrays of arbitrary type.
|
2006-02-04 05:46:41 +00:00
|
|
|
|
2006-12-13 18:12:41 +00:00
|
|
|
There are also basic facilities for discrete fourier transform,
|
|
|
|
basic linear algebra and random number generation. Also included in
|
|
|
|
this package is a version of f2py that works properly with NumPy.
|
2006-02-04 05:46:41 +00:00
|
|
|
|
2015-10-14 11:58:51 +00:00
|
|
|
|
|
|
|
%package -n python2-numpy
|
|
|
|
Summary: A fast multidimensional array facility for Python
|
|
|
|
Requires: python-nose
|
|
|
|
%{?python_provide:%python_provide python2-%{modname}}
|
|
|
|
# General provides of plain 'numpy' that is in use by 1 package as of F24
|
|
|
|
Provides: numpy = %{epoch}:%{version}-%{release}
|
2015-11-13 10:20:05 +00:00
|
|
|
Provides: numpy%{?_isa} = %{epoch}:%{version}-%{release}
|
2015-11-12 11:32:02 +00:00
|
|
|
Obsoletes: numpy < 1:1.10.1-3
|
2015-10-14 11:58:51 +00:00
|
|
|
%description -n python2-numpy
|
|
|
|
NumPy is a general-purpose array-processing package designed to
|
|
|
|
efficiently manipulate large multi-dimensional arrays of arbitrary
|
|
|
|
records without sacrificing too much speed for small multi-dimensional
|
|
|
|
arrays. NumPy is built on the Numeric code base and adds features
|
|
|
|
introduced by numarray as well as an extended C-API and the ability to
|
|
|
|
create arrays of arbitrary type.
|
|
|
|
|
|
|
|
There are also basic facilities for discrete fourier transform,
|
|
|
|
basic linear algebra and random number generation. Also included in
|
|
|
|
this package is a version of f2py that works properly with NumPy.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python2-numpy-f2py
|
2009-04-14 16:23:51 +00:00
|
|
|
Summary: f2py for numpy
|
|
|
|
Group: Development/Libraries
|
2010-04-09 12:44:56 +00:00
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
2009-04-14 16:23:51 +00:00
|
|
|
Requires: python-devel
|
2015-11-12 18:35:53 +00:00
|
|
|
Provides: f2py = %{epoch}:%{version}-%{release}
|
2015-11-12 11:32:02 +00:00
|
|
|
Provides: numpy-f2py = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: numpy-f2py < 1:1.10.1-3
|
2015-10-14 11:58:51 +00:00
|
|
|
%{?python_provide:%python_provide python2-numpy-f2py}
|
2009-04-14 16:23:51 +00:00
|
|
|
|
2015-10-14 11:58:51 +00:00
|
|
|
|
|
|
|
%description -n python2-numpy-f2py
|
2009-04-14 16:23:51 +00:00
|
|
|
This package includes a version of f2py that works properly with NumPy.
|
|
|
|
|
2010-10-26 11:19:33 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-numpy
|
|
|
|
Summary: A fast multidimensional array facility for Python
|
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
License: BSD
|
2015-10-14 11:58:51 +00:00
|
|
|
%{?python_provide:%python_provide python3-numpy}
|
2015-08-14 01:54:19 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-nose
|
|
|
|
|
2010-10-26 11:19:33 +00:00
|
|
|
%description -n python3-numpy
|
|
|
|
NumPy is a general-purpose array-processing package designed to
|
|
|
|
efficiently manipulate large multi-dimensional arrays of arbitrary
|
|
|
|
records without sacrificing too much speed for small multi-dimensional
|
|
|
|
arrays. NumPy is built on the Numeric code base and adds features
|
|
|
|
introduced by numarray as well as an extended C-API and the ability to
|
|
|
|
create arrays of arbitrary type.
|
|
|
|
|
|
|
|
There are also basic facilities for discrete fourier transform,
|
|
|
|
basic linear algebra and random number generation. Also included in
|
|
|
|
this package is a version of f2py that works properly with NumPy.
|
|
|
|
|
|
|
|
%package -n python3-numpy-f2py
|
|
|
|
Summary: f2py for numpy
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: python3-numpy = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python3-devel
|
2013-06-02 19:04:47 +00:00
|
|
|
Provides: python3-f2py = %{version}-%{release}
|
2010-10-26 11:19:33 +00:00
|
|
|
Obsoletes: python3-f2py <= 2.45.241_1927
|
2015-10-14 11:58:51 +00:00
|
|
|
%{?python_provide:%python_provide python3-numpy-f2py}
|
2010-10-26 11:19:33 +00:00
|
|
|
|
|
|
|
%description -n python3-numpy-f2py
|
|
|
|
This package includes a version of f2py that works properly with NumPy.
|
|
|
|
%endif # with_python3
|
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
%prep
|
2016-01-31 20:14:53 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?relc}
|
|
|
|
#%setup -q -n numpy-cc2b04
|
2014-05-07 14:32:19 +00:00
|
|
|
|
2012-08-22 14:57:10 +00:00
|
|
|
# workaround for rhbz#849713
|
|
|
|
# http://mail.scipy.org/pipermail/numpy-discussion/2012-July/063530.html
|
|
|
|
rm numpy/distutils/command/__init__.py && touch numpy/distutils/command/__init__.py
|
|
|
|
|
2013-09-22 19:24:14 +00:00
|
|
|
# Atlas 3.10 library names
|
|
|
|
%if 0%{?fedora} >= 21
|
2013-09-23 17:00:57 +00:00
|
|
|
cat >> site.cfg <<EOF
|
|
|
|
[atlas]
|
|
|
|
library_dirs = %{_libdir}/atlas
|
2013-10-15 22:30:38 +00:00
|
|
|
atlas_libs = satlas
|
2013-09-23 17:00:57 +00:00
|
|
|
EOF
|
2013-10-15 22:09:18 +00:00
|
|
|
%endif
|
2013-09-10 13:11:33 +00:00
|
|
|
|
2010-10-26 11:19:33 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
rm -rf %{py3dir}
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
%endif
|
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
%build
|
2010-10-26 11:19:33 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
2014-06-02 15:58:17 +00:00
|
|
|
env ATLAS=%{_libdir} BLAS=%{_libdir} \
|
2010-10-26 21:32:14 +00:00
|
|
|
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
2011-04-01 14:56:44 +00:00
|
|
|
%{__python3} setup.py build
|
2010-10-26 11:19:33 +00:00
|
|
|
popd
|
|
|
|
%endif # with _python3
|
|
|
|
|
2014-06-02 15:58:17 +00:00
|
|
|
env ATLAS=%{_libdir} BLAS=%{_libdir} \
|
2010-10-26 21:32:14 +00:00
|
|
|
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
2006-12-13 18:12:41 +00:00
|
|
|
%{__python} setup.py build
|
2006-02-04 05:46:41 +00:00
|
|
|
|
|
|
|
%install
|
2010-10-26 11:19:33 +00:00
|
|
|
# first install python3 so the binaries are overwritten by the python2 ones
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
2013-07-22 14:31:26 +00:00
|
|
|
#%%{__python} setup.py install -O1 --skip-build --root %%{buildroot}
|
2010-10-26 11:19:33 +00:00
|
|
|
# skip-build currently broken, this works around it for now
|
|
|
|
env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
|
2010-10-26 21:32:14 +00:00
|
|
|
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
2010-10-26 11:23:46 +00:00
|
|
|
%{__python3} setup.py install --root %{buildroot}
|
|
|
|
pushd %{buildroot}%{_bindir} &> /dev/null
|
2010-10-26 11:19:33 +00:00
|
|
|
popd &> /dev/null
|
|
|
|
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
|
|
|
|
2013-07-22 14:31:26 +00:00
|
|
|
#%%{__python} setup.py install -O1 --skip-build --root %%{buildroot}
|
2006-10-25 21:55:43 +00:00
|
|
|
# skip-build currently broken, this works around it for now
|
2008-12-19 20:46:27 +00:00
|
|
|
env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
|
2010-10-26 21:32:14 +00:00
|
|
|
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
2015-10-14 11:58:51 +00:00
|
|
|
%{__python2} setup.py install --root %{buildroot}
|
2010-10-26 11:23:46 +00:00
|
|
|
pushd %{buildroot}%{_bindir} &> /dev/null
|
2007-01-04 16:39:26 +00:00
|
|
|
# symlink for anyone who was using f2py.numpy
|
|
|
|
ln -s f2py f2py.numpy
|
2006-02-04 05:46:41 +00:00
|
|
|
popd &> /dev/null
|
2014-08-27 22:32:19 +00:00
|
|
|
install -D -p -m 0644 doc/f2py/f2py.1 %{buildroot}%{_mandir}/man1/f2py.1
|
2006-02-04 05:46:41 +00:00
|
|
|
|
2010-03-02 17:55:47 +00:00
|
|
|
#symlink for includes, BZ 185079
|
2010-10-26 11:23:46 +00:00
|
|
|
mkdir -p %{buildroot}/usr/include
|
2015-08-14 01:54:19 +00:00
|
|
|
ln -s %{python2_sitearch}/%{name}/core/include/numpy/ %{buildroot}/usr/include/numpy
|
2010-03-02 17:55:47 +00:00
|
|
|
|
2009-04-14 16:23:51 +00:00
|
|
|
|
2008-05-29 15:24:31 +00:00
|
|
|
%check
|
2006-02-04 05:46:41 +00:00
|
|
|
pushd doc &> /dev/null
|
2015-10-14 11:58:51 +00:00
|
|
|
PYTHONPATH="%{buildroot}%{python2_sitearch}" %{__python2} -c "import pkg_resources, numpy ; numpy.test(verbose=2)" \
|
2010-07-18 07:09:44 +00:00
|
|
|
%ifarch s390 s390x
|
|
|
|
|| :
|
|
|
|
%endif
|
|
|
|
# don't remove this comment
|
2006-02-04 05:46:41 +00:00
|
|
|
popd &> /dev/null
|
|
|
|
|
2010-10-26 11:19:33 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd doc &> /dev/null
|
2015-10-14 11:58:51 +00:00
|
|
|
PYTHONPATH="%{buildroot}%{python3_sitearch}" %{__python3} -c "import pkg_resources, numpy ; numpy.test(verbose=2)" \
|
2010-10-26 11:19:33 +00:00
|
|
|
%ifarch s390 s390x
|
2012-08-05 23:39:40 +00:00
|
|
|
|| :
|
2010-10-26 11:19:33 +00:00
|
|
|
%endif
|
|
|
|
# don't remove this comment
|
|
|
|
popd &> /dev/null
|
|
|
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
|
2015-10-14 11:58:51 +00:00
|
|
|
%files -n python2-numpy
|
2015-08-14 01:54:19 +00:00
|
|
|
%license LICENSE.txt
|
2016-01-31 20:14:53 +00:00
|
|
|
%doc THANKS.txt site.cfg.example
|
2015-08-14 01:54:19 +00:00
|
|
|
%dir %{python2_sitearch}/%{name}
|
|
|
|
%{python2_sitearch}/%{name}/*.py*
|
|
|
|
%{python2_sitearch}/%{name}/core
|
|
|
|
%{python2_sitearch}/%{name}/distutils
|
|
|
|
%{python2_sitearch}/%{name}/doc
|
|
|
|
%{python2_sitearch}/%{name}/fft
|
|
|
|
%{python2_sitearch}/%{name}/lib
|
|
|
|
%{python2_sitearch}/%{name}/linalg
|
|
|
|
%{python2_sitearch}/%{name}/ma
|
|
|
|
%{python2_sitearch}/%{name}/random
|
|
|
|
%{python2_sitearch}/%{name}/testing
|
|
|
|
%{python2_sitearch}/%{name}/tests
|
|
|
|
%{python2_sitearch}/%{name}/compat
|
|
|
|
%{python2_sitearch}/%{name}/matrixlib
|
|
|
|
%{python2_sitearch}/%{name}/polynomial
|
|
|
|
%{python2_sitearch}/%{name}-*.egg-info
|
2010-03-02 17:55:47 +00:00
|
|
|
%{_includedir}/numpy
|
2006-02-04 05:46:41 +00:00
|
|
|
|
2015-10-14 11:58:51 +00:00
|
|
|
%files -n python2-numpy-f2py
|
2014-08-27 22:32:19 +00:00
|
|
|
%doc doc/f2py/*.txt
|
2009-04-14 16:23:51 +00:00
|
|
|
%{_mandir}/man*/*
|
|
|
|
%{_bindir}/f2py
|
2015-10-14 11:58:51 +00:00
|
|
|
%{_bindir}/f2py2
|
2009-04-14 16:23:51 +00:00
|
|
|
%{_bindir}/f2py.numpy
|
2015-08-14 01:54:19 +00:00
|
|
|
%{python2_sitearch}/%{name}/f2py
|
2009-04-17 17:39:03 +00:00
|
|
|
|
2010-10-26 11:19:33 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-numpy
|
2015-08-14 01:54:19 +00:00
|
|
|
%license LICENSE.txt
|
2016-01-31 20:14:53 +00:00
|
|
|
%doc THANKS.txt site.cfg.example
|
2014-03-04 16:08:18 +00:00
|
|
|
%{python3_sitearch}/%{name}/__pycache__
|
2010-10-26 11:19:33 +00:00
|
|
|
%dir %{python3_sitearch}/%{name}
|
|
|
|
%{python3_sitearch}/%{name}/*.py*
|
|
|
|
%{python3_sitearch}/%{name}/core
|
|
|
|
%{python3_sitearch}/%{name}/distutils
|
2013-11-26 05:43:18 +00:00
|
|
|
%{python3_sitearch}/%{name}/doc
|
2010-10-26 11:19:33 +00:00
|
|
|
%{python3_sitearch}/%{name}/fft
|
|
|
|
%{python3_sitearch}/%{name}/lib
|
|
|
|
%{python3_sitearch}/%{name}/linalg
|
|
|
|
%{python3_sitearch}/%{name}/ma
|
|
|
|
%{python3_sitearch}/%{name}/random
|
|
|
|
%{python3_sitearch}/%{name}/testing
|
|
|
|
%{python3_sitearch}/%{name}/tests
|
|
|
|
%{python3_sitearch}/%{name}/compat
|
|
|
|
%{python3_sitearch}/%{name}/matrixlib
|
|
|
|
%{python3_sitearch}/%{name}/polynomial
|
|
|
|
%{python3_sitearch}/%{name}-*.egg-info
|
|
|
|
|
|
|
|
%files -n python3-numpy-f2py
|
2010-10-26 21:32:14 +00:00
|
|
|
%{_bindir}/f2py3
|
2010-10-26 11:19:33 +00:00
|
|
|
%{python3_sitearch}/%{name}/f2py
|
|
|
|
%endif # with_python3
|
|
|
|
|
2009-04-14 16:23:51 +00:00
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
%changelog
|
2017-03-29 13:53:07 +00:00
|
|
|
* Wed Mar 29 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.12.1-1
|
|
|
|
- 1.12.1
|
|
|
|
|
2017-01-31 22:02:00 +00:00
|
|
|
* Tue Jan 31 2017 Simone Caronni <negativo17@gmail.com> - 1:1.12.0-1
|
|
|
|
- Update to 1.12.0, build with gcc 7.0.
|
|
|
|
|
2016-12-12 18:24:14 +00:00
|
|
|
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1:1.11.2-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-10-04 03:08:45 +00:00
|
|
|
* Mon Oct 3 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.2-1
|
|
|
|
- Update to 1.11.2 final
|
|
|
|
|
2016-09-15 14:28:46 +00:00
|
|
|
* Thu Sep 15 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.2-0.rc1
|
|
|
|
- Update to 1.11.2rc1, BZ 1340440.
|
|
|
|
|
2016-07-19 08:04:25 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.11.1-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-28 23:43:23 +00:00
|
|
|
* Tue Jun 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.1-1
|
|
|
|
- Update to 1.11.1 final
|
|
|
|
|
2016-06-07 22:46:28 +00:00
|
|
|
* Tue Jun 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.1-0.rc1
|
|
|
|
- Update to 1.11.1rc1, BZ 1340440.
|
|
|
|
|
2016-03-29 01:55:25 +00:00
|
|
|
* Mon Mar 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-4
|
|
|
|
- Update to 1.11.0 final
|
|
|
|
|
2016-03-24 00:01:45 +00:00
|
|
|
* Wed Mar 23 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-3.rc2
|
|
|
|
- Update to 1.11.0rc2
|
|
|
|
|
2016-03-06 10:09:58 +00:00
|
|
|
* Sun Mar 6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1:1.11.0-2.b3
|
|
|
|
- Bump Release. 1b2 is higher than 0b3
|
|
|
|
|
2016-02-10 16:21:11 +00:00
|
|
|
* Wed Feb 10 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b3
|
|
|
|
- Update to 1.11.0b2, BZ 1306249.
|
|
|
|
|
2016-02-04 10:59:33 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.11.0-1b2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-31 20:14:53 +00:00
|
|
|
* Sun Jan 31 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b2
|
|
|
|
- Update to 1.11.0b2, BZ 1303387.
|
|
|
|
|
2016-01-26 19:10:28 +00:00
|
|
|
* Tue Jan 26 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-020161016.cc2b04git
|
|
|
|
- Update to git snapshot (due to build issue) after 1.11.0b1, BZ 1301943.
|
|
|
|
|
2016-01-07 14:47:31 +00:00
|
|
|
* Thu Jan 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.10.4-1
|
|
|
|
- Update to 1.10.4, BZ 1296509.
|
|
|
|
|
2015-12-15 14:45:39 +00:00
|
|
|
* Tue Dec 15 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-1
|
|
|
|
- Update to 1.10.2, BZ 1291674.
|
|
|
|
|
2015-12-08 13:51:44 +00:00
|
|
|
* Tue Dec 08 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-0.2.rc2
|
|
|
|
- Update to 1.10.2rc1, BZ 1289550.
|
|
|
|
|
2015-11-13 23:01:24 +00:00
|
|
|
* Fri Nov 13 2015 Orion Poplawski <orion@cora.nwra.com> - 1:1.10.2-0.1.rc1
|
|
|
|
- Update to 1.10.2rc1
|
|
|
|
- Drop opt-flags patch applied upstream
|
|
|
|
|
2015-11-13 10:20:05 +00:00
|
|
|
* Fri Nov 13 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-6
|
|
|
|
- Add provides to satisfy numpy%%{_isa} requires in other packages
|
|
|
|
|
2015-11-12 18:35:53 +00:00
|
|
|
* Thu Nov 12 2015 Orion Poplawski <orion@nwra.com> - 1:1.10.1-5
|
|
|
|
- Re-add provides f2py
|
|
|
|
|
2015-11-12 11:32:02 +00:00
|
|
|
* Thu Nov 12 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-4
|
|
|
|
- Fix obsoletes / provides for numpy -> python2-numpy rename
|
|
|
|
|
2015-10-14 19:48:03 +00:00
|
|
|
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-3
|
|
|
|
- Remove fortran flags or arm would build with -march=x86-64
|
|
|
|
|
2015-10-14 11:58:51 +00:00
|
|
|
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-2
|
|
|
|
- Provide python2-* packages
|
|
|
|
- Run tests with verbose=2
|
|
|
|
|
2015-10-13 12:40:39 +00:00
|
|
|
* Tue Oct 13 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.1-1
|
|
|
|
- Update to 1.10.1, BZ 1271022.
|
|
|
|
|
2015-10-13 06:52:54 +00:00
|
|
|
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1:1.10.0-2
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-10-06 13:13:46 +00:00
|
|
|
* Tue Oct 06 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-1
|
|
|
|
- Update to 1.10.0 final.
|
|
|
|
|
2015-09-02 17:38:03 +00:00
|
|
|
* Wed Sep 02 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-0.b1
|
|
|
|
- Update to 1.10.0b1, BZ 1252641.
|
|
|
|
|
2015-08-14 01:54:19 +00:00
|
|
|
* Thu Aug 13 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-3
|
|
|
|
- Add python2-numpy provides (bug #1249423)
|
|
|
|
- Spec cleanup
|
|
|
|
|
2015-06-17 23:26:57 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-01 21:58:33 +00:00
|
|
|
* Sun Mar 1 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-1
|
|
|
|
- Update to 1.9.2
|
|
|
|
|
2015-01-06 22:18:20 +00:00
|
|
|
* Tue Jan 6 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.1-2
|
|
|
|
- Add upstream patch to fix xerbla linkage (bug #1172834)
|
|
|
|
|
2014-11-04 14:15:10 +00:00
|
|
|
* Tue Nov 04 2014 Jon Ciesla <limburgher@gmail.com> - 1:1.9.1-1
|
|
|
|
- Update to 1.9.1, BZ 1160273.
|
|
|
|
|
2014-09-08 14:16:22 +00:00
|
|
|
* Sun Sep 7 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-1
|
|
|
|
- Update to 1.9.0
|
2014-09-08 03:29:35 +00:00
|
|
|
|
2014-08-27 22:32:19 +00:00
|
|
|
* Wed Aug 27 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-0.1.rc1
|
|
|
|
- Update to 1.9.0rc1
|
|
|
|
|
2014-08-17 12:30:25 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-11 03:29:43 +00:00
|
|
|
* Sun Aug 10 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.2-1
|
|
|
|
- Update to 1.8.2
|
|
|
|
|
2014-06-07 15:17:09 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-09 21:07:15 +00:00
|
|
|
* Fri May 9 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-3
|
|
|
|
- Rebuild for Python 3.4
|
|
|
|
|
2014-05-07 14:32:19 +00:00
|
|
|
* Wed May 07 2014 Jaromir Capik <jcapik@redhat.com> - 1:1.8.1-2
|
|
|
|
- Fixing FTBFS on ppc64le (#1078354)
|
|
|
|
|
2014-03-26 02:50:23 +00:00
|
|
|
* Tue Mar 25 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-1
|
|
|
|
- Update to 1.8.1
|
|
|
|
|
2014-03-04 16:08:18 +00:00
|
|
|
* Tue Mar 4 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.0-5
|
|
|
|
- Fix __pycache__ ownership (bug #1072467)
|
|
|
|
|
2014-02-10 07:45:43 +00:00
|
|
|
* Mon Feb 10 2014 Thomas Spura <tomspur@fedoraproject.org> - 1:1.8.0-4
|
2014-02-10 07:43:10 +00:00
|
|
|
- Fix CVE-2014-1858, CVE-2014-1859: #1062009, #1062359
|
|
|
|
|
2013-11-26 05:43:18 +00:00
|
|
|
* Mon Nov 25 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-3
|
|
|
|
- Ship doc module (bug #1034357)
|
|
|
|
|
2013-11-06 22:00:56 +00:00
|
|
|
* Wed Nov 6 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-2
|
|
|
|
- Move f2py documentation to f2py package (bug #1027394)
|
|
|
|
|
2013-10-30 22:55:35 +00:00
|
|
|
* Wed Oct 30 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-1
|
|
|
|
- Update to 1.8.0 final
|
|
|
|
|
2013-10-15 22:09:18 +00:00
|
|
|
* Mon Oct 14 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.7.rc2
|
|
|
|
- Update to 1.8.0rc2
|
|
|
|
- Create clean site.cfg
|
2013-10-15 22:30:38 +00:00
|
|
|
- Use serial atlas
|
2013-10-15 22:09:18 +00:00
|
|
|
|
2013-09-23 17:00:57 +00:00
|
|
|
* Mon Sep 23 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.6.b2
|
|
|
|
- Add [atlas] to site.cfg for new atlas library names
|
|
|
|
|
2013-09-22 19:24:14 +00:00
|
|
|
* Sun Sep 22 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.5.b2
|
|
|
|
- Update site.cfg for new atlas library names
|
|
|
|
|
2013-09-21 15:40:41 +00:00
|
|
|
* Sat Sep 21 2013 David Tardon <dtardon@redhat.com> - 1:1.8.0-0.4.b2
|
|
|
|
- rebuild for atlas 3.10
|
|
|
|
|
2013-09-10 13:11:33 +00:00
|
|
|
* Tue Sep 10 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.8.0-0.3.b2
|
|
|
|
- Fix libdir path in site.cfg, BZ 1006242.
|
|
|
|
|
2013-09-09 02:02:24 +00:00
|
|
|
* Sun Sep 8 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.2.b2
|
|
|
|
- Update to 1.8.0b2
|
|
|
|
|
2013-09-04 23:02:13 +00:00
|
|
|
* Wed Sep 4 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.1.b1
|
|
|
|
- Update to 1.8.0b1
|
|
|
|
- Drop f2py patch applied upstream
|
|
|
|
|
2013-08-27 13:56:31 +00:00
|
|
|
* Tue Aug 27 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.7.1-5
|
|
|
|
- URL Fix, BZ 1001337
|
|
|
|
|
2013-08-03 14:36:12 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-22 14:31:26 +00:00
|
|
|
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-3
|
|
|
|
- Fix rpmlint warnings
|
2013-07-23 11:54:06 +00:00
|
|
|
- Update License
|
2013-07-23 11:32:01 +00:00
|
|
|
- Apply patch: change shebang of f2py to use binary directly
|
2013-07-22 14:31:26 +00:00
|
|
|
|
2013-06-02 19:04:47 +00:00
|
|
|
* Sun Jun 2 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-2
|
|
|
|
- Specfile cleanup (bug #969854)
|
|
|
|
|
2013-04-10 16:16:09 +00:00
|
|
|
* Wed Apr 10 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-1
|
|
|
|
- Update to 1.7.1
|
|
|
|
|
2013-02-10 04:15:07 +00:00
|
|
|
* Sat Feb 9 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.0-1
|
|
|
|
- Update to 1.7.0 final
|
|
|
|
|
2012-12-31 03:36:14 +00:00
|
|
|
* Sun Dec 30 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.5.rc1
|
|
|
|
- Update to 1.7.0rc1
|
|
|
|
|
2012-09-20 20:02:13 +00:00
|
|
|
* Thu Sep 20 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.4.b2
|
|
|
|
- Update to 1.7.0b2
|
|
|
|
- Drop patches applied upstream
|
|
|
|
|
2012-08-23 04:21:14 +00:00
|
|
|
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.3.b1
|
|
|
|
- Add patch from github pull 371 to fix python 3.3 pickle issue
|
|
|
|
- Remove cython .c source regeneration - fails now
|
|
|
|
|
2012-08-22 16:15:26 +00:00
|
|
|
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.2.b1
|
2012-08-22 14:57:10 +00:00
|
|
|
- add workaround for rhbz#849713 (fixes FTBFS)
|
|
|
|
|
2012-08-21 22:46:29 +00:00
|
|
|
* Tue Aug 21 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.7.0-0.1.b1
|
|
|
|
- Update to 1.7.0b1
|
|
|
|
- Rebase python 3.3 patchs to current git master
|
|
|
|
- Drop patches applied upstream
|
|
|
|
|
2012-08-05 23:39:40 +00:00
|
|
|
* Sun Aug 5 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-5
|
|
|
|
- rework patches for 3.3 to more directly reflect upstream's commits
|
|
|
|
- re-enable test suite on python 3
|
|
|
|
- forcibly regenerate Cython .c source to avoid import issues on Python 3.3
|
|
|
|
|
2012-08-05 12:32:50 +00:00
|
|
|
* Sun Aug 5 2012 Thomas Spura <tomspur@fedoraproject.org> - 1:1.6.2-4
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
2012-08-05 13:08:40 +00:00
|
|
|
- needs unicode patch
|
2012-08-05 12:32:50 +00:00
|
|
|
|
2012-08-03 16:15:57 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-3
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-20 05:36:10 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-21 02:15:21 +00:00
|
|
|
* Sun May 20 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2-1
|
|
|
|
- Update to 1.6.2 final
|
|
|
|
|
2012-05-13 02:14:28 +00:00
|
|
|
* Sat May 12 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2rc1-0.1
|
|
|
|
- Update to 1.6.2rc1
|
|
|
|
|
2012-01-13 11:20:41 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-07 23:27:40 +00:00
|
|
|
* Mon Nov 7 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.1-1
|
|
|
|
- Update to 1.6.1
|
|
|
|
|
2011-06-17 13:13:27 +00:00
|
|
|
* Fri Jun 17 2011 Jon Ciesla <limb@jcomserv.net> - 1:1.6.0-2
|
|
|
|
- Bump and rebuild for BZ 712251.
|
|
|
|
|
2011-05-16 20:09:51 +00:00
|
|
|
* Mon May 16 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-1
|
|
|
|
- Update to 1.6.0 final
|
|
|
|
|
2011-04-04 21:29:35 +00:00
|
|
|
* Mon Apr 4 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.2.b2
|
|
|
|
- Update to 1.6.0b2
|
|
|
|
- Drop import patch fixed upstream
|
|
|
|
|
2011-04-01 14:56:44 +00:00
|
|
|
* Thu Mar 31 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.1.b1
|
|
|
|
- Update to 1.6.0b1
|
|
|
|
- Build python3 module with python3
|
|
|
|
- Add patch from upstream to fix build time import error
|
|
|
|
|
2011-03-30 15:04:21 +00:00
|
|
|
* Wed Mar 30 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.5.1-1
|
|
|
|
- Update to 1.5.1 final
|
|
|
|
|
2011-02-09 01:20:22 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.1-0.4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-13 14:27:51 +00:00
|
|
|
* Thu Jan 13 2011 Dan Horák <dan[at]danny.cz> - 1:1.5.1-0.3
|
|
|
|
- fix the AttributeError during tests
|
|
|
|
- fix build on s390(x)
|
|
|
|
|
2010-12-30 01:33:35 +00:00
|
|
|
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.5.1-0.2
|
|
|
|
- rebuild for newer python3
|
|
|
|
|
2010-10-26 21:32:14 +00:00
|
|
|
* Wed Oct 27 2010 Thomas Spura <tomspur@fedoraproject.org> - 1:1.5.1-0.1
|
|
|
|
- update to 1.5.1rc1
|
|
|
|
- add python3 subpackage
|
|
|
|
- some spec-cleanups
|
|
|
|
|
2010-07-22 23:31:12 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-6
|
|
|
|
- actually add the patch this time
|
|
|
|
|
2010-07-22 23:29:29 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-5
|
2013-06-02 19:04:47 +00:00
|
|
|
- fix segfault within %%check on 2.7 (patch 2)
|
2010-07-22 23:29:29 +00:00
|
|
|
|
2010-07-22 03:55:57 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-18 07:09:44 +00:00
|
|
|
* Sun Jul 18 2010 Dan Horák <dan[at]danny.cz> 1.4.1-3
|
|
|
|
- ignore the "Ticket #1299 second test" failure on s390(x)
|
|
|
|
|
2010-06-25 08:37:39 +00:00
|
|
|
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-2
|
2013-07-22 14:32:05 +00:00
|
|
|
- source commit fix
|
2010-06-25 08:37:39 +00:00
|
|
|
|
2010-06-25 08:31:45 +00:00
|
|
|
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-1
|
|
|
|
- New upstream release. Include backported doublefree patch
|
|
|
|
|
2010-04-26 20:31:24 +00:00
|
|
|
* Mon Apr 26 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-8
|
|
|
|
- Moved distutils back to the main package, BZ 572820.
|
|
|
|
|
2010-04-09 12:44:56 +00:00
|
|
|
* Thu Apr 08 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-7
|
|
|
|
- Reverted to 1.3.0 after upstream pulled 1.4.0, BZ 579065.
|
|
|
|
|
2010-03-02 17:55:47 +00:00
|
|
|
* Tue Mar 02 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-5
|
|
|
|
- Linking /usr/include/numpy to .h files, BZ 185079.
|
|
|
|
|
2010-02-16 17:36:48 +00:00
|
|
|
* Tue Feb 16 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-4
|
|
|
|
- Re-enabling atlas BR, dropping lapack Requires.
|
|
|
|
|
2010-02-10 14:11:38 +00:00
|
|
|
* Wed Feb 10 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-3
|
|
|
|
- Since the previous didn't work, Requiring lapack.
|
|
|
|
|
2010-02-09 14:41:31 +00:00
|
|
|
* Tue Feb 09 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-2
|
|
|
|
- Temporarily dropping atlas BR to work around 562577.
|
|
|
|
|
2010-01-22 23:17:07 +00:00
|
|
|
* Fri Jan 22 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-1
|
|
|
|
- 1.4.0.
|
|
|
|
- Dropped ARM patch, ARM support added upstream.
|
|
|
|
|
2009-11-17 15:15:33 +00:00
|
|
|
* Tue Nov 17 2009 Jitesh Shah <jiteshs@marvell.com> - 1.3.0-6.fa1
|
|
|
|
- Add ARM support
|
|
|
|
|
2009-07-25 19:42:01 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-11 19:21:24 +00:00
|
|
|
* Thu Jun 11 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-5
|
|
|
|
- Fixed atlas BR, BZ 505376.
|
|
|
|
|
2009-04-17 18:17:14 +00:00
|
|
|
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-4
|
|
|
|
- EVR bump for pygame chainbuild.
|
|
|
|
|
2009-04-17 17:39:03 +00:00
|
|
|
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-3
|
|
|
|
- Moved linalg, fft back to main package.
|
|
|
|
|
2009-04-14 16:23:51 +00:00
|
|
|
* Tue Apr 14 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-2
|
|
|
|
- Split out f2py into subpackage, thanks Peter Robinson pbrobinson@gmail.com.
|
|
|
|
|
2009-04-07 16:19:56 +00:00
|
|
|
* Tue Apr 07 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-1
|
|
|
|
- Update to latest upstream.
|
|
|
|
- Fixed Source0 URL.
|
|
|
|
|
2009-04-02 19:33:29 +00:00
|
|
|
* Thu Apr 02 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-0.rc1
|
|
|
|
- Update to latest upstream.
|
|
|
|
|
2009-03-05 14:13:32 +00:00
|
|
|
* Thu Mar 05 2009 Jon Ciesla <limb@jcomserv.net> 1.2.1-3
|
|
|
|
- Require python-devel, BZ 488464.
|
|
|
|
|
2009-02-26 06:25:40 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-19 20:46:27 +00:00
|
|
|
* Fri Dec 19 2008 Jon Ciesla <limb@jcomserv.net> 1.2.1-1
|
|
|
|
- Update to 1.2.1.
|
2008-12-16 05:25:34 +00:00
|
|
|
|
2008-11-29 16:55:44 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-10-08 13:50:24 +00:00
|
|
|
* Tue Oct 07 2008 Jon Ciesla <limb@jcomserv.net> 1.2.0-1
|
|
|
|
- New upstream release, added python-nose BR. BZ 465999.
|
|
|
|
- Using atlas blas, not blas-devel. BZ 461472.
|
|
|
|
|
2008-08-06 16:43:27 +00:00
|
|
|
* Wed Aug 06 2008 Jon Ciesla <limb@jcomserv.net> 1.1.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2008-05-29 15:02:07 +00:00
|
|
|
* Thu May 29 2008 Jarod Wilson <jwilson@redhat.com> 1.1.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2008-05-07 03:22:06 +00:00
|
|
|
* Tue May 06 2008 Jarod Wilson <jwilson@redhat.com> 1.0.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2008-02-11 20:10:46 +00:00
|
|
|
* Mon Feb 11 2008 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-2
|
|
|
|
- Add python egg to %%files on f9+
|
|
|
|
|
2007-08-22 15:03:20 +00:00
|
|
|
* Wed Aug 22 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2007-06-06 14:18:31 +00:00
|
|
|
* Wed Jun 06 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2007-05-14 18:29:44 +00:00
|
|
|
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-2
|
|
|
|
- Drop BR: atlas-devel, since it just provides binary-compat
|
|
|
|
blas and lapack libs. Atlas can still be optionally used
|
|
|
|
at runtime. (Note: this is all per the atlas maintainer).
|
|
|
|
|
2007-05-14 16:46:09 +00:00
|
|
|
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2007-04-17 15:29:10 +00:00
|
|
|
* Tue Apr 17 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-4
|
2013-07-22 14:32:05 +00:00
|
|
|
- Update gfortran patch to recognize latest gfortran f95 support
|
2007-04-17 15:29:10 +00:00
|
|
|
- Resolves rhbz#236444
|
|
|
|
|
2007-02-23 22:17:05 +00:00
|
|
|
* Fri Feb 23 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-3
|
|
|
|
- Fix up cpuinfo bug (#229753). Upstream bug/change:
|
|
|
|
http://projects.scipy.org/scipy/scipy/ticket/349
|
|
|
|
|
2007-01-04 16:39:26 +00:00
|
|
|
* Thu Jan 04 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-2
|
|
|
|
- Per discussion w/Jose Matos, Obsolete/Provide f2py, as the
|
|
|
|
stand-alone one is no longer supported/maintained upstream
|
|
|
|
|
2006-12-13 18:12:41 +00:00
|
|
|
* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> 1.0.1-1
|
2006-12-13 18:15:11 +00:00
|
|
|
- New upstream release
|
2006-12-13 05:33:21 +00:00
|
|
|
|
2006-12-12 14:25:06 +00:00
|
|
|
* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.0-2
|
|
|
|
- Rebuild for python 2.5
|
|
|
|
|
2006-10-25 21:55:43 +00:00
|
|
|
* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-07-22 14:31:26 +00:00
|
|
|
* Wed Sep 06 2006 Jarod Wilson <jwilson@redhat.com> 0.9.8-1
|
2006-09-05 20:36:23 +00:00
|
|
|
- New upstream release
|
|
|
|
|
2006-04-27 00:47:34 +00:00
|
|
|
* Wed Apr 26 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.6-1
|
|
|
|
- Upstream update
|
|
|
|
|
2006-02-17 01:08:01 +00:00
|
|
|
* Thu Feb 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.5-1
|
|
|
|
- Upstream update
|
|
|
|
|
2006-02-14 05:02:36 +00:00
|
|
|
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-2
|
|
|
|
- Rebuild for Fedora Extras 5
|
|
|
|
|
2006-02-04 05:46:41 +00:00
|
|
|
* Thu Feb 2 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-1
|
|
|
|
- Initial RPM release
|
2006-02-04 19:22:38 +00:00
|
|
|
- Added gfortran patch from Neal Becker
|