c8-stream-2.7
imports/c8-stream-2.7/numpy-1.14.2-16.module+el8.4.0+9406+221a4565
commit
a0073fc35c
@ -0,0 +1,2 @@
|
||||
SOURCES/numpy-1.14.2.tar.gz
|
||||
SOURCES/numpy-html-1.13.0.zip
|
@ -0,0 +1,2 @@
|
||||
c00e70468703830a26ee9173ba1cf4aedf08718f SOURCES/numpy-1.14.2.tar.gz
|
||||
b23d66880bba5f56baa81ce02eb5a55de046c0a7 SOURCES/numpy-html-1.13.0.zip
|
@ -0,0 +1,166 @@
|
||||
From 0fcfa065d900040c80628b31b8b6ea606c131086 Mon Sep 17 00:00:00 2001
|
||||
From: Paul Ivanov <pivanov5@bloomberg.net>
|
||||
Date: Wed, 30 Jan 2019 14:22:44 -0800
|
||||
Subject: [PATCH] BUG: load fails when using pickle without allow_pickle=True
|
||||
|
||||
a partial mitigation of #12759.
|
||||
|
||||
see also https://nvd.nist.gov/vuln/detail/CVE-2019-6446
|
||||
---
|
||||
numpy/core/tests/test_regression.py | 2 +-
|
||||
numpy/lib/format.py | 8 ++++++--
|
||||
numpy/lib/npyio.py | 17 ++++++++++++-----
|
||||
numpy/lib/tests/test_format.py | 15 +++++++++------
|
||||
numpy/lib/tests/test_io.py | 2 +-
|
||||
5 files changed, 29 insertions(+), 15 deletions(-)
|
||||
|
||||
diff --git a/numpy/core/tests/test_regression.py b/numpy/core/tests/test_regression.py
|
||||
index a3b0114..2be6bf3 100644
|
||||
--- a/numpy/core/tests/test_regression.py
|
||||
+++ b/numpy/core/tests/test_regression.py
|
||||
@@ -96,7 +96,7 @@ class TestRegression(object):
|
||||
ca = np.char.array(np.arange(1000, 1010), itemsize=4)
|
||||
ca.dump(f)
|
||||
f.seek(0)
|
||||
- ca = np.load(f)
|
||||
+ ca = np.load(f, allow_pickle=True)
|
||||
f.close()
|
||||
|
||||
def test_noncontiguous_fill(self):
|
||||
diff --git a/numpy/lib/format.py b/numpy/lib/format.py
|
||||
index 363bb21..b91142c 100644
|
||||
--- a/numpy/lib/format.py
|
||||
+++ b/numpy/lib/format.py
|
||||
@@ -602,7 +602,7 @@ def write_array(fp, array, version=None, allow_pickle=True, pickle_kwargs=None):
|
||||
fp.write(chunk.tobytes('C'))
|
||||
|
||||
|
||||
-def read_array(fp, allow_pickle=True, pickle_kwargs=None):
|
||||
+def read_array(fp, allow_pickle=False, pickle_kwargs=None):
|
||||
"""
|
||||
Read an array from an NPY file.
|
||||
|
||||
@@ -612,7 +612,11 @@ def read_array(fp, allow_pickle=True, pickle_kwargs=None):
|
||||
If this is not a real file object, then this may take extra memory
|
||||
and time.
|
||||
allow_pickle : bool, optional
|
||||
- Whether to allow reading pickled data. Default: True
|
||||
+ Whether to allow writing pickled data. Default: False
|
||||
+
|
||||
+ .. versionchanged:: 1.14.2
|
||||
+ Made default False in response to CVE-2019-6446.
|
||||
+
|
||||
pickle_kwargs : dict
|
||||
Additional keyword arguments to pass to pickle.load. These are only
|
||||
useful when loading object arrays saved on Python 2 when using
|
||||
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py
|
||||
index 76b135c..c6522f5 100644
|
||||
--- a/numpy/lib/npyio.py
|
||||
+++ b/numpy/lib/npyio.py
|
||||
@@ -130,7 +130,11 @@ class NpzFile(object):
|
||||
An object on which attribute can be performed as an alternative
|
||||
to getitem access on the `NpzFile` instance itself.
|
||||
allow_pickle : bool, optional
|
||||
- Allow loading pickled data. Default: True
|
||||
+ Allow loading pickled data. Default: False
|
||||
+
|
||||
+ .. versionchanged:: 1.14.2
|
||||
+ Made default False in response to CVE-2019-6446.
|
||||
+
|
||||
pickle_kwargs : dict, optional
|
||||
Additional keyword arguments to pass on to pickle.load.
|
||||
These are only useful when loading object arrays saved on
|
||||
@@ -166,7 +170,7 @@ class NpzFile(object):
|
||||
|
||||
"""
|
||||
|
||||
- def __init__(self, fid, own_fid=False, allow_pickle=True,
|
||||
+ def __init__(self, fid, own_fid=False, allow_pickle=False,
|
||||
pickle_kwargs=None):
|
||||
# Import is postponed to here since zipfile depends on gzip, an
|
||||
# optional component of the so-called standard library.
|
||||
@@ -265,7 +269,7 @@ class NpzFile(object):
|
||||
return self.files.__contains__(key)
|
||||
|
||||
|
||||
-def load(file, mmap_mode=None, allow_pickle=True, fix_imports=True,
|
||||
+def load(file, mmap_mode=None, allow_pickle=False, fix_imports=True,
|
||||
encoding='ASCII'):
|
||||
"""
|
||||
Load arrays or pickled objects from ``.npy``, ``.npz`` or pickled files.
|
||||
@@ -287,8 +291,11 @@ def load(file, mmap_mode=None, allow_pickle=True, fix_imports=True,
|
||||
Allow loading pickled object arrays stored in npy files. Reasons for
|
||||
disallowing pickles include security, as loading pickled data can
|
||||
execute arbitrary code. If pickles are disallowed, loading object
|
||||
- arrays will fail.
|
||||
- Default: True
|
||||
+ arrays will fail. Default: False
|
||||
+
|
||||
+ .. versionchanged:: 1.14.2
|
||||
+ Made default False in response to CVE-2019-6446.
|
||||
+
|
||||
fix_imports : bool, optional
|
||||
Only useful when loading Python 2 generated pickled files on Python 3,
|
||||
which includes npy/npz files containing object arrays. If `fix_imports`
|
||||
diff --git a/numpy/lib/tests/test_format.py b/numpy/lib/tests/test_format.py
|
||||
index 2d2b4ce..04e090c 100644
|
||||
--- a/numpy/lib/tests/test_format.py
|
||||
+++ b/numpy/lib/tests/test_format.py
|
||||
@@ -426,7 +426,7 @@ def roundtrip(arr):
|
||||
f = BytesIO()
|
||||
format.write_array(f, arr)
|
||||
f2 = BytesIO(f.getvalue())
|
||||
- arr2 = format.read_array(f2)
|
||||
+ arr2 = format.read_array(f2, allow_pickle=True)
|
||||
return arr2
|
||||
|
||||
|
||||
@@ -553,7 +553,7 @@ def test_pickle_python2_python3():
|
||||
path = os.path.join(data_dir, fname)
|
||||
|
||||
for encoding in ['bytes', 'latin1']:
|
||||
- data_f = np.load(path, encoding=encoding)
|
||||
+ data_f = np.load(path, allow_pickle=True, encoding=encoding)
|
||||
if fname.endswith('.npz'):
|
||||
data = data_f['x']
|
||||
data_f.close()
|
||||
@@ -575,16 +575,19 @@ def test_pickle_python2_python3():
|
||||
if sys.version_info[0] >= 3:
|
||||
if fname.startswith('py2'):
|
||||
if fname.endswith('.npz'):
|
||||
- data = np.load(path)
|
||||
+ data = np.load(path, allow_pickle=True)
|
||||
assert_raises(UnicodeError, data.__getitem__, 'x')
|
||||
data.close()
|
||||
- data = np.load(path, fix_imports=False, encoding='latin1')
|
||||
+ data = np.load(path, allow_pickle=True, fix_imports=False,
|
||||
+ encoding='latin1')
|
||||
assert_raises(ImportError, data.__getitem__, 'x')
|
||||
data.close()
|
||||
else:
|
||||
- assert_raises(UnicodeError, np.load, path)
|
||||
+ assert_raises(UnicodeError, np.load, path,
|
||||
+ allow_pickle=True)
|
||||
assert_raises(ImportError, np.load, path,
|
||||
- encoding='latin1', fix_imports=False)
|
||||
+ allow_pickle=True, fix_imports=False,
|
||||
+ encoding='latin1')
|
||||
|
||||
|
||||
def test_pickle_disallow():
|
||||
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py
|
||||
index 2daa015..bde2567 100644
|
||||
--- a/numpy/lib/tests/test_io.py
|
||||
+++ b/numpy/lib/tests/test_io.py
|
||||
@@ -87,7 +87,7 @@ class RoundtripTest(object):
|
||||
|
||||
"""
|
||||
save_kwds = kwargs.get('save_kwds', {})
|
||||
- load_kwds = kwargs.get('load_kwds', {})
|
||||
+ load_kwds = kwargs.get('load_kwds', {"allow_pickle": True})
|
||||
file_on_disk = kwargs.get('file_on_disk', False)
|
||||
|
||||
if file_on_disk:
|
||||
--
|
||||
2.21.0
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,858 @@
|
||||
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||
%bcond_without python3
|
||||
%else
|
||||
%bcond_with python3
|
||||
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
%endif
|
||||
|
||||
#uncomment next line for a release candidate or a beta
|
||||
#%%global relc rc1
|
||||
|
||||
%global modname numpy
|
||||
|
||||
Name: numpy
|
||||
Version: 1.14.2
|
||||
Release: 16%{?dist}
|
||||
Epoch: 1
|
||||
Summary: A fast multidimensional array facility for Python
|
||||
|
||||
Group: Development/Languages
|
||||
# Everything is BSD except for class SafeEval in numpy/lib/utils.py which is Python
|
||||
License: BSD and Python
|
||||
URL: http://www.numpy.org/
|
||||
Source0: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||
Source1: https://docs.scipy.org/doc/numpy/numpy-html-1.13.0.zip
|
||||
Patch0: numpy-1.14.2-float128.patch
|
||||
Patch1: numpy-1.14.2-CVE-2019-6446.patch
|
||||
|
||||
BuildRequires: python2-devel lapack-devel python2-setuptools gcc-gfortran python2-nose
|
||||
BuildRequires: /usr/bin/sed
|
||||
BuildRequires: python2-Cython
|
||||
%ifarch %{openblas_arches}
|
||||
BuildRequires: openblas-devel
|
||||
%else
|
||||
BuildRequires: atlas-devel
|
||||
%endif
|
||||
|
||||
|
||||
%description
|
||||
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
|
||||
Summary: A fast multidimensional array facility for Python
|
||||
Requires: python2-nose
|
||||
%{?python_provide:%python_provide python2-%{modname}}
|
||||
Obsoletes: numpy < 1:1.10.1-3
|
||||
%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
|
||||
Summary: f2py for numpy
|
||||
Group: Development/Libraries
|
||||
Requires: python2-%{name} = %{epoch}:%{version}-%{release}
|
||||
Requires: python2-devel
|
||||
Obsoletes: numpy-f2py < 1:1.10.1-3
|
||||
%{?python_provide:%python_provide python2-numpy-f2py}
|
||||
|
||||
|
||||
%description -n python2-numpy-f2py
|
||||
This package includes a version of f2py that works properly with NumPy.
|
||||
|
||||
|
||||
%package -n python2-numpy-doc
|
||||
Summary: Documentation for numpy
|
||||
Requires: python2-%{name} = %{epoch}:%{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n python2-numpy-doc
|
||||
This package provides the complete documentation for NumPy.
|
||||
|
||||
%if %{with python3}
|
||||
%package -n python3-numpy
|
||||
Summary: A fast multidimensional array facility for Python
|
||||
|
||||
Group: Development/Languages
|
||||
License: BSD
|
||||
%{?python_provide:%python_provide python3-numpy}
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-nose
|
||||
|
||||
%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
|
||||
Provides: python3-f2py = %{version}-%{release}
|
||||
Obsoletes: python3-f2py <= 2.45.241_1927
|
||||
%{?python_provide:%python_provide python3-numpy-f2py}
|
||||
|
||||
%description -n python3-numpy-f2py
|
||||
This package includes a version of f2py that works properly with NumPy.
|
||||
|
||||
%package -n python3-numpy-doc
|
||||
Summary: Documentation for numpy
|
||||
Requires: python3-numpy = %{epoch}:%{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n python3-numpy-doc
|
||||
This package provides the complete documentation for NumPy.
|
||||
|
||||
%endif # with python3
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}%{?relc}
|
||||
#%setup -q -n numpy-cc2b04
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
# 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
|
||||
|
||||
%ifarch %{openblas_arches}
|
||||
# Use openblas pthreads as recommended by upstream (see comment in site.cfg.example)
|
||||
cat >> site.cfg <<EOF
|
||||
[openblas]
|
||||
library_dirs = %{_libdir}
|
||||
openblas_libs = openblasp
|
||||
EOF
|
||||
%else
|
||||
# Atlas 3.10 library names
|
||||
%if 0%{?fedora} >= 21 || 0%{?rhel} > 7
|
||||
cat >> site.cfg <<EOF
|
||||
[atlas]
|
||||
library_dirs = %{_libdir}/atlas
|
||||
atlas_libs = satlas
|
||||
EOF
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if %{with python3}
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
%endif
|
||||
|
||||
%build
|
||||
%set_build_flags
|
||||
%if %{with python3}
|
||||
pushd %{py3dir}
|
||||
%ifarch %{openblas_arches}
|
||||
env OPENBLAS=%{_libdir} \
|
||||
%else
|
||||
env ATLAS=%{_libdir} \
|
||||
%endif
|
||||
BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python3} setup.py build
|
||||
popd
|
||||
%endif # with _python3
|
||||
|
||||
%ifarch %{openblas_arches}
|
||||
env OPENBLAS=%{_libdir} \
|
||||
%else
|
||||
env ATLAS=%{_libdir} \
|
||||
%endif
|
||||
BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python2} setup.py build
|
||||
|
||||
%install
|
||||
mkdir docs
|
||||
pushd docs
|
||||
unzip %{SOURCE1}
|
||||
popd
|
||||
|
||||
# first install python3 so the binaries are overwritten by the python2 ones
|
||||
%if %{with python3}
|
||||
pushd %{py3dir}
|
||||
#%%{__python2} setup.py install -O1 --skip-build --root %%{buildroot}
|
||||
# skip-build currently broken, this works around it for now
|
||||
%ifarch %{openblas_arches}
|
||||
env OPENBLAS=%{_libdir} \
|
||||
%else
|
||||
env ATLAS=%{_libdir} \
|
||||
%endif
|
||||
FFTW=%{_libdir} BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python3} setup.py install --root %{buildroot}
|
||||
pushd %{buildroot}%{_bindir} &> /dev/null
|
||||
|
||||
# The custom install script gets the Python version from the executable name,
|
||||
# e.g. "python3" -> "3", but when built by "platform-python" it guesses the
|
||||
# version as "rm-python". Renaming the file here is the easiest correction.
|
||||
mv f2pyrm-python f2py3
|
||||
|
||||
popd &> /dev/null
|
||||
|
||||
popd
|
||||
|
||||
%endif # with python3
|
||||
|
||||
#%%{__python2} setup.py install -O1 --skip-build --root %%{buildroot}
|
||||
# skip-build currently broken, this works around it for now
|
||||
%ifarch %{openblas_arches}
|
||||
env OPENBLAS=%{_libdir} \
|
||||
%else
|
||||
env ATLAS=%{_libdir} \
|
||||
%endif
|
||||
FFTW=%{_libdir} BLAS=%{_libdir} \
|
||||
LAPACK=%{_libdir} CFLAGS="%{optflags}" \
|
||||
%{__python2} setup.py install --root %{buildroot}
|
||||
|
||||
pushd %{buildroot}%{_bindir} &> /dev/null
|
||||
# symlink for anyone who was using f2py.numpy
|
||||
mv f2py{2,-%{python2_version}}
|
||||
ln -s f2py-%{python2_version} f2py-2
|
||||
ln -s f2py-%{python2_version} f2py2
|
||||
popd &> /dev/null
|
||||
#install -D -p -m 0644 docs/f2py/f2py.1 %{buildroot}%{_mandir}/man1/f2py.1
|
||||
|
||||
#symlink for includes, BZ 185079
|
||||
mkdir -p %{buildroot}%{_includedir}
|
||||
ln -s %{python2_sitearch}/%{name}/core/include/numpy/ %{buildroot}%{_includedir}/numpy
|
||||
|
||||
|
||||
|
||||
%check
|
||||
# Having LDFLAGS set in the environment (for Flatpak builds, in particular), breaks
|
||||
# f2py Makefiles which use that variable like: 'LDFLAGS = -s -shared'
|
||||
unset LDFLAGS
|
||||
pushd doc &> /dev/null
|
||||
PATH="%{buildroot}%{_bindir}:${PATH}" \
|
||||
PYTHONPATH="%{buildroot}%{python2_sitearch}" \
|
||||
%{__python2} -c "import pkg_resources, numpy, sys ; sys.exit(0 if numpy.test(verbose=2).wasSuccessful() else 1)" \
|
||||
%ifarch s390 s390x
|
||||
|| :
|
||||
%endif
|
||||
# don't remove this comment
|
||||
popd &> /dev/null
|
||||
|
||||
%if %{with python3}
|
||||
pushd doc &> /dev/null
|
||||
PATH="%{buildroot}%{_bindir}:${PATH}" \
|
||||
PYTHONPATH="%{buildroot}%{python3_sitearch}" \
|
||||
%{__python3} -c "import pkg_resources, numpy, sys ; sys.exit(0 if numpy.test(verbose=2).wasSuccessful() else 1)" \
|
||||
%ifarch s390 s390x
|
||||
|| :
|
||||
%endif
|
||||
# don't remove this comment
|
||||
popd &> /dev/null
|
||||
|
||||
%endif # with python3
|
||||
|
||||
|
||||
%files -n python2-numpy
|
||||
%license LICENSE.txt
|
||||
%doc THANKS.txt site.cfg.example
|
||||
%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
|
||||
%{_includedir}/numpy
|
||||
%exclude %{python2_sitearch}/%{name}/LICENSE.txt
|
||||
|
||||
%files -n python2-numpy-f2py
|
||||
%doc docs/f2py/*.html
|
||||
#%{_mandir}/man*/*
|
||||
%{_bindir}/f2py2
|
||||
%{_bindir}/f2py-2
|
||||
%{_bindir}/f2py-%{python2_version}
|
||||
%{python2_sitearch}/%{name}/f2py
|
||||
|
||||
%files -n python2-numpy-doc
|
||||
%doc docs/*
|
||||
|
||||
%if %{with python3}
|
||||
%files -n python3-numpy
|
||||
%license LICENSE.txt
|
||||
%doc THANKS.txt site.cfg.example
|
||||
%{python3_sitearch}/%{name}/__pycache__
|
||||
%dir %{python3_sitearch}/%{name}
|
||||
%{python3_sitearch}/%{name}/*.py*
|
||||
%{python3_sitearch}/%{name}/core
|
||||
%{python3_sitearch}/%{name}/distutils
|
||||
%{python3_sitearch}/%{name}/doc
|
||||
%{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
|
||||
%exclude %{python3_sitearch}/%{name}/LICENSE.txt
|
||||
|
||||
%files -n python3-numpy-f2py
|
||||
%{_bindir}/f2py3
|
||||
%{python3_sitearch}/%{name}/f2py
|
||||
|
||||
%files -n python3-numpy-doc
|
||||
%doc docs/*
|
||||
|
||||
%endif # with python3
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jan 08 2021 Nikola Forró <nforro@redhat.com> - 1:1.14.2-16
|
||||
- Fix include path
|
||||
- Related: rhbz#1907601
|
||||
|
||||
* Wed Dec 16 2020 Nikola Forró <nforro@redhat.com> - 1:1.14.2-15
|
||||
- Fix %check
|
||||
- Related: rhbz#1907601
|
||||
|
||||
* Tue Dec 15 2020 Nikola Forró <nforro@redhat.com> - 1:1.14.2-14
|
||||
- Use macros rather than hardcoded paths
|
||||
- Resolves: rhbz#1907601
|
||||
|
||||
* Wed Jun 05 2019 Nikola Forró <nforro@redhat.com> - 1:1.14.2-13
|
||||
- Fix CVE-2019-6446
|
||||
- Resolves: rhbz#1668829
|
||||
|
||||
* Thu May 30 2019 Charalampos Stratakis <cstratak@redhat.com> - 1.14.2-12
|
||||
- Set proper build flags for https://fedoraproject.org/wiki/Changes/Python_Extension_Flags
|
||||
- Resolves: rhbz#1715036
|
||||
|
||||
* Thu May 30 2019 Nikola Forró <nforro@redhat.com> - 1.14.2-11
|
||||
- Fix broken float128 on all arches except x86_64
|
||||
- Resolves: rhbz#1688709
|
||||
|
||||
* Thu Apr 25 2019 Tomas Orsava <torsava@redhat.com> - 1.14.2-10
|
||||
- Bumping due to problems with modular RPM upgrade path
|
||||
- Resolves: rhbz#1695587
|
||||
|
||||
* Tue Oct 09 2018 Lumír Balhar <lbalhar@redhat.com> - 1:1.14.2-9
|
||||
- Remove unversioned provides
|
||||
- Resolves: rhbz#1628242
|
||||
|
||||
* Tue Oct 02 2018 Lumír Balhar <lbalhar@redhat.com> - 1:1.14.2-8
|
||||
- Fix unversioned requires/buildrequires
|
||||
- Resolves: rhbz#1628242
|
||||
|
||||
* Tue Aug 14 2018 Lumír Balhar <lbalhar@redhat.com> - 1:1.14.2-7
|
||||
- Bring symlink f2py2 back for symlink modules
|
||||
- Resolves: rhbz#1615727
|
||||
|
||||
* Wed Aug 08 2018 Lumír Balhar <lbalhar@redhat.com> - 1:1.14.2-6
|
||||
- Remove unversioned binaries from python2 subpackage
|
||||
- Resolves: rhbz#1613343
|
||||
|
||||
* Tue Jul 31 2018 Lumír Balhar <lbalhar@redhat.com> - 1:1.14.2-5
|
||||
- Switch python3 coditions to bcond
|
||||
|
||||
* Mon Jun 25 2018 Tomas Orsava <torsava@redhat.com> - 1:1.14.2-4
|
||||
- Use python2 macros instead of unversioned python macros
|
||||
|
||||
* Sat Apr 28 2018 Tomas Orsava <torsava@redhat.com> - 1:1.14.2-3
|
||||
- Change the shebang of f2py to the versioned /usr/bin/python2
|
||||
|
||||
* Fri Apr 27 2018 Tomas Orsava <torsava@redhat.com> - 1:1.14.2-2
|
||||
- Fix incorrect Python version guess when building on Platform-Python
|
||||
|
||||
* Mon Mar 12 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.2-1
|
||||
- 1.14.2
|
||||
|
||||
* Wed Feb 21 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.1-1
|
||||
- 1.14.1
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.0-0.rc1.1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Dec 13 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.0-0.rc1
|
||||
- 1.14.0 rc1
|
||||
|
||||
* Mon Dec 11 2017 Iryna Shcherbina <ishcherb@redhat.com> - 1:1.13.3-5
|
||||
- Fix ambiguous Python 2 dependency declarations
|
||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||
|
||||
* Thu Nov 16 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.3-4
|
||||
- Split out doc subpackage.
|
||||
|
||||
* Mon Nov 06 2017 Merlin Mathesius <mmathesi@redhat.com> - 1:1.13.3-3
|
||||
- Cleanup spec file conditionals
|
||||
|
||||
* Tue Oct 31 2017 Christian Dersch <lupinix@mailbox.org> - 1:1.13.3-2
|
||||
- set proper environment variables for openblas
|
||||
|
||||
* Wed Oct 04 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.3-1
|
||||
- 1.13.3
|
||||
|
||||
* Thu Sep 28 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.2-1
|
||||
- 1.13.2
|
||||
|
||||
* Tue Aug 08 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.1-4
|
||||
- Use openblas where available, BZ 1472318.
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Jul 07 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.1-1
|
||||
- 1.13.1 final
|
||||
|
||||
* Fri Jun 09 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-1
|
||||
- 1.13.0 final
|
||||
|
||||
* Fri May 19 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-0.rc2
|
||||
- 1.13.0 rc2
|
||||
|
||||
* Thu May 11 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-0.rc1
|
||||
- 1.13.0 rc1
|
||||
|
||||
* Wed Mar 29 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.12.1-1
|
||||
- 1.12.1
|
||||
|
||||
* Tue Jan 31 2017 Simone Caronni <negativo17@gmail.com> - 1:1.12.0-1
|
||||
- Update to 1.12.0, build with gcc 7.0.
|
||||
|
||||
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1:1.11.2-2
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Mon Oct 3 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.2-1
|
||||
- Update to 1.11.2 final
|
||||
|
||||
* Thu Sep 15 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.2-0.rc1
|
||||
- Update to 1.11.2rc1, BZ 1340440.
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Jun 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.1-1
|
||||
- Update to 1.11.1 final
|
||||
|
||||
* Tue Jun 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.1-0.rc1
|
||||
- Update to 1.11.1rc1, BZ 1340440.
|
||||
|
||||
* Mon Mar 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-4
|
||||
- Update to 1.11.0 final
|
||||
|
||||
* Wed Mar 23 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-3.rc2
|
||||
- Update to 1.11.0rc2
|
||||
|
||||
* Sun Mar 6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1:1.11.0-2.b3
|
||||
- Bump Release. 1b2 is higher than 0b3
|
||||
|
||||
* Wed Feb 10 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b3
|
||||
- Update to 1.11.0b2, BZ 1306249.
|
||||
|
||||
* 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
|
||||
|
||||
* Sun Jan 31 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b2
|
||||
- Update to 1.11.0b2, BZ 1303387.
|
||||
|
||||
* 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.
|
||||
|
||||
* Thu Jan 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.10.4-1
|
||||
- Update to 1.10.4, BZ 1296509.
|
||||
|
||||
* Tue Dec 15 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-1
|
||||
- Update to 1.10.2, BZ 1291674.
|
||||
|
||||
* Tue Dec 08 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-0.2.rc2
|
||||
- Update to 1.10.2rc1, BZ 1289550.
|
||||
|
||||
* 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
|
||||
|
||||
* Fri Nov 13 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-6
|
||||
- Add provides to satisfy numpy%%{_isa} requires in other packages
|
||||
|
||||
* Thu Nov 12 2015 Orion Poplawski <orion@nwra.com> - 1:1.10.1-5
|
||||
- Re-add provides f2py
|
||||
|
||||
* Thu Nov 12 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-4
|
||||
- Fix obsoletes / provides for numpy -> python2-numpy rename
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-2
|
||||
- Provide python2-* packages
|
||||
- Run tests with verbose=2
|
||||
|
||||
* Tue Oct 13 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.1-1
|
||||
- Update to 1.10.1, BZ 1271022.
|
||||
|
||||
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1:1.10.0-2
|
||||
- Rebuilt for Python3.5 rebuild
|
||||
|
||||
* Tue Oct 06 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-1
|
||||
- Update to 1.10.0 final.
|
||||
|
||||
* Wed Sep 02 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-0.b1
|
||||
- Update to 1.10.0b1, BZ 1252641.
|
||||
|
||||
* Thu Aug 13 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-3
|
||||
- Add python2-numpy provides (bug #1249423)
|
||||
- Spec cleanup
|
||||
|
||||
* 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
|
||||
|
||||
* Sun Mar 1 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-1
|
||||
- Update to 1.9.2
|
||||
|
||||
* Tue Jan 6 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.1-2
|
||||
- Add upstream patch to fix xerbla linkage (bug #1172834)
|
||||
|
||||
* Tue Nov 04 2014 Jon Ciesla <limburgher@gmail.com> - 1:1.9.1-1
|
||||
- Update to 1.9.1, BZ 1160273.
|
||||
|
||||
* Sun Sep 7 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-1
|
||||
- Update to 1.9.0
|
||||
|
||||
* Wed Aug 27 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-0.1.rc1
|
||||
- Update to 1.9.0rc1
|
||||
|
||||
* 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
|
||||
|
||||
* Sun Aug 10 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.2-1
|
||||
- Update to 1.8.2
|
||||
|
||||
* 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
|
||||
|
||||
* Fri May 9 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-3
|
||||
- Rebuild for Python 3.4
|
||||
|
||||
* Wed May 07 2014 Jaromir Capik <jcapik@redhat.com> - 1:1.8.1-2
|
||||
- Fixing FTBFS on ppc64le (#1078354)
|
||||
|
||||
* Tue Mar 25 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-1
|
||||
- Update to 1.8.1
|
||||
|
||||
* Tue Mar 4 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.0-5
|
||||
- Fix __pycache__ ownership (bug #1072467)
|
||||
|
||||
* Mon Feb 10 2014 Thomas Spura <tomspur@fedoraproject.org> - 1:1.8.0-4
|
||||
- Fix CVE-2014-1858, CVE-2014-1859: #1062009, #1062359
|
||||
|
||||
* Mon Nov 25 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-3
|
||||
- Ship doc module (bug #1034357)
|
||||
|
||||
* Wed Nov 6 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-2
|
||||
- Move f2py documentation to f2py package (bug #1027394)
|
||||
|
||||
* Wed Oct 30 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-1
|
||||
- Update to 1.8.0 final
|
||||
|
||||
* 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
|
||||
- Use serial atlas
|
||||
|
||||
* 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
|
||||
|
||||
* Sun Sep 22 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.5.b2
|
||||
- Update site.cfg for new atlas library names
|
||||
|
||||
* Sat Sep 21 2013 David Tardon <dtardon@redhat.com> - 1:1.8.0-0.4.b2
|
||||
- rebuild for atlas 3.10
|
||||
|
||||
* Tue Sep 10 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.8.0-0.3.b2
|
||||
- Fix libdir path in site.cfg, BZ 1006242.
|
||||
|
||||
* Sun Sep 8 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.2.b2
|
||||
- Update to 1.8.0b2
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Aug 27 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.7.1-5
|
||||
- URL Fix, BZ 1001337
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-3
|
||||
- Fix rpmlint warnings
|
||||
- Update License
|
||||
- Apply patch: change shebang of f2py to use binary directly
|
||||
|
||||
* Sun Jun 2 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-2
|
||||
- Specfile cleanup (bug #969854)
|
||||
|
||||
* Wed Apr 10 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-1
|
||||
- Update to 1.7.1
|
||||
|
||||
* Sat Feb 9 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.0-1
|
||||
- Update to 1.7.0 final
|
||||
|
||||
* Sun Dec 30 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.5.rc1
|
||||
- Update to 1.7.0rc1
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.2.b1
|
||||
- add workaround for rhbz#849713 (fixes FTBFS)
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Sun Aug 5 2012 Thomas Spura <tomspur@fedoraproject.org> - 1:1.6.2-4
|
||||
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
||||
- needs unicode patch
|
||||
|
||||
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-3
|
||||
- remove rhel logic from with_python3 conditional
|
||||
|
||||
* 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
|
||||
|
||||
* Sun May 20 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2-1
|
||||
- Update to 1.6.2 final
|
||||
|
||||
* Sat May 12 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2rc1-0.1
|
||||
- Update to 1.6.2rc1
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Nov 7 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.1-1
|
||||
- Update to 1.6.1
|
||||
|
||||
* Fri Jun 17 2011 Jon Ciesla <limb@jcomserv.net> - 1:1.6.0-2
|
||||
- Bump and rebuild for BZ 712251.
|
||||
|
||||
* Mon May 16 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-1
|
||||
- Update to 1.6.0 final
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Mar 30 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.5.1-1
|
||||
- Update to 1.5.1 final
|
||||
|
||||
* 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
|
||||
|
||||
* 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)
|
||||
|
||||
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.5.1-0.2
|
||||
- rebuild for newer python3
|
||||
|
||||
* 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
|
||||
|
||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-6
|
||||
- actually add the patch this time
|
||||
|
||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-5
|
||||
- fix segfault within %%check on 2.7 (patch 2)
|
||||
|
||||
* 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
|
||||
|
||||
* 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)
|
||||
|
||||
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-2
|
||||
- source commit fix
|
||||
|
||||
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-1
|
||||
- New upstream release. Include backported doublefree patch
|
||||
|
||||
* Mon Apr 26 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-8
|
||||
- Moved distutils back to the main package, BZ 572820.
|
||||
|
||||
* 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.
|
||||
|
||||
* Tue Mar 02 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-5
|
||||
- Linking /usr/include/numpy to .h files, BZ 185079.
|
||||
|
||||
* Tue Feb 16 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-4
|
||||
- Re-enabling atlas BR, dropping lapack Requires.
|
||||
|
||||
* Wed Feb 10 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-3
|
||||
- Since the previous didn't work, Requiring lapack.
|
||||
|
||||
* Tue Feb 09 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-2
|
||||
- Temporarily dropping atlas BR to work around 562577.
|
||||
|
||||
* Fri Jan 22 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-1
|
||||
- 1.4.0.
|
||||
- Dropped ARM patch, ARM support added upstream.
|
||||
|
||||
* Tue Nov 17 2009 Jitesh Shah <jiteshs@marvell.com> - 1.3.0-6.fa1
|
||||
- Add ARM support
|
||||
|
||||
* 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
|
||||
|
||||
* Thu Jun 11 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-5
|
||||
- Fixed atlas BR, BZ 505376.
|
||||
|
||||
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-4
|
||||
- EVR bump for pygame chainbuild.
|
||||
|
||||
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-3
|
||||
- Moved linalg, fft back to main package.
|
||||
|
||||
* Tue Apr 14 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-2
|
||||
- Split out f2py into subpackage, thanks Peter Robinson pbrobinson@gmail.com.
|
||||
|
||||
* Tue Apr 07 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-1
|
||||
- Update to latest upstream.
|
||||
- Fixed Source0 URL.
|
||||
|
||||
* Thu Apr 02 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-0.rc1
|
||||
- Update to latest upstream.
|
||||
|
||||
* Thu Mar 05 2009 Jon Ciesla <limb@jcomserv.net> 1.2.1-3
|
||||
- Require python-devel, BZ 488464.
|
||||
|
||||
* 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
|
||||
|
||||
* Fri Dec 19 2008 Jon Ciesla <limb@jcomserv.net> 1.2.1-1
|
||||
- Update to 1.2.1.
|
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-2
|
||||
- Rebuild for Python 2.6
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Aug 06 2008 Jon Ciesla <limb@jcomserv.net> 1.1.1-1
|
||||
- New upstream release
|
||||
|
||||
* Thu May 29 2008 Jarod Wilson <jwilson@redhat.com> 1.1.0-1
|
||||
- New upstream release
|
||||
|
||||
* Tue May 06 2008 Jarod Wilson <jwilson@redhat.com> 1.0.4-1
|
||||
- New upstream release
|
||||
|
||||
* Mon Feb 11 2008 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-2
|
||||
- Add python egg to %%files on f9+
|
||||
|
||||
* Wed Aug 22 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Jun 06 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3-1
|
||||
- New upstream release
|
||||
|
||||
* 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).
|
||||
|
||||
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-1
|
||||
- New upstream release
|
||||
|
||||
* Tue Apr 17 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-4
|
||||
- Update gfortran patch to recognize latest gfortran f95 support
|
||||
- Resolves rhbz#236444
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> 1.0.1-1
|
||||
- New upstream release
|
||||
|
||||
* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.0-2
|
||||
- Rebuild for python 2.5
|
||||
|
||||
* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.0-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Sep 06 2006 Jarod Wilson <jwilson@redhat.com> 0.9.8-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Apr 26 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.6-1
|
||||
- Upstream update
|
||||
|
||||
* Thu Feb 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.5-1
|
||||
- Upstream update
|
||||
|
||||
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-2
|
||||
- Rebuild for Fedora Extras 5
|
||||
|
||||
* Thu Feb 2 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-1
|
||||
- Initial RPM release
|
||||
- Added gfortran patch from Neal Becker
|
Loading…
Reference in new issue