7a8cac
# RHEL8: Tests disabled due to missing dependencies
7a8cac
%bcond_with tests
7a8cac
7a8cac
%global blaslib openblas
7a8cac
%global blasvar p
7a8cac
7a8cac
%global modname numpy
7a8cac
7a8cac
Name:           numpy
7a8cac
Version:        1.19.4
7a82dd
Release:        3%{?dist}
7a8cac
Summary:        A fast multidimensional array facility for Python
7a8cac
7a8cac
# Everything is BSD except for class SafeEval in numpy/lib/utils.py which is Python
7a8cac
License:        BSD and Python and ASL 2.0
7a8cac
URL:            http://www.numpy.org/
7a8cac
Source0:        https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
7a8cac
Source1:        https://numpy.org/doc/1.19/numpy-html.zip
7a8cac
7a8cac
Patch0:         numpy-1.19.2-FIPS.patch
7a8cac
7a8cac
# Exclude i686 arch. Due to a modularity issue it's being added to the
7a8cac
# x86_64 compose of CRB, but we don't want to ship it at all.
7a8cac
# See: https://projects.engineering.redhat.com/browse/RCM-72605
7a8cac
ExcludeArch: i686
7a8cac
7a8cac
%description
7a8cac
NumPy is a general-purpose array-processing package designed to
7a8cac
efficiently manipulate large multi-dimensional arrays of arbitrary
7a8cac
records without sacrificing too much speed for small multi-dimensional
7a8cac
arrays.  NumPy is built on the Numeric code base and adds features
7a8cac
introduced by numarray as well as an extended C-API and the ability to
7a8cac
create arrays of arbitrary type.
7a8cac
7a8cac
There are also basic facilities for discrete fourier transform,
7a8cac
basic linear algebra and random number generation. Also included in
7a8cac
this package is a version of f2py that works properly with NumPy.
7a8cac
7a8cac
7a8cac
%package -n python%{python3_pkgversion}-numpy
7a8cac
Summary:        A fast multidimensional array facility for Python
7a8cac
7a8cac
License:        BSD
7a8cac
%{?python_provide:%python_provide python%{python3_pkgversion}-numpy}
7a8cac
7a8cac
BuildRequires:  python%{python3_pkgversion}-devel
7a8cac
BuildRequires:  python%{python3_pkgversion}-rpm-macros
7a8cac
BuildRequires:  python%{python3_pkgversion}-setuptools
7a8cac
BuildRequires:  python%{python3_pkgversion}-Cython
7a8cac
BuildRequires:  gcc-gfortran gcc
7a8cac
BuildRequires:  lapack-devel
7a8cac
%if %{with tests}
7a8cac
BuildRequires:  python%{python3_pkgversion}-pytest
7a8cac
BuildRequires:  python%{python3_pkgversion}-test
7a8cac
BuildRequires:  python%{python3_pkgversion}-hypothesis
7a8cac
%endif
7a8cac
BuildRequires:  %{blaslib}-devel
7a8cac
7a8cac
Requires:       python%{python3_pkgversion}-setuptools
7a8cac
7a8cac
%description -n python%{python3_pkgversion}-numpy
7a8cac
NumPy is a general-purpose array-processing package designed to
7a8cac
efficiently manipulate large multi-dimensional arrays of arbitrary
7a8cac
records without sacrificing too much speed for small multi-dimensional
7a8cac
arrays.  NumPy is built on the Numeric code base and adds features
7a8cac
introduced by numarray as well as an extended C-API and the ability to
7a8cac
create arrays of arbitrary type.
7a8cac
7a8cac
There are also basic facilities for discrete fourier transform,
7a8cac
basic linear algebra and random number generation. Also included in
7a8cac
this package is a version of f2py that works properly with NumPy.
7a8cac
7a8cac
%package -n python%{python3_pkgversion}-numpy-f2py
7a8cac
Summary:        f2py for numpy
7a8cac
Requires:       python%{python3_pkgversion}-numpy%{?_isa} = %{version}-%{release}
7a8cac
Requires:       python%{python3_pkgversion}-devel
7a8cac
Provides:       python%{python3_pkgversion}-f2py = %{version}-%{release}
7a8cac
%{?python_provide:%python_provide python%{python3_pkgversion}-numpy-f2py}
7a8cac
7a82dd
# Require alternatives version that implements the --keep-foreign flag
7a82dd
Requires(postun): alternatives >= 1.19.1-1
7a8cac
# python39 installs the alternatives master symlink to which we attach a slave
7a8cac
Requires: python%{python3_pkgversion}
7a8cac
Requires(post): python%{python3_pkgversion}
7a8cac
Requires(postun): python%{python3_pkgversion}
7a8cac
7a8cac
%description -n python%{python3_pkgversion}-numpy-f2py
7a8cac
This package includes a version of f2py that works properly with NumPy.
7a8cac
7a8cac
%package -n python%{python3_pkgversion}-numpy-doc
7a8cac
Summary:    Documentation for numpy
7a8cac
Requires:   python%{python3_pkgversion}-numpy = %{version}-%{release}
7a8cac
BuildArch:  noarch
7a8cac
7a8cac
%description -n python%{python3_pkgversion}-numpy-doc
7a8cac
This package provides the complete documentation for NumPy.
7a8cac
7a8cac
7a8cac
%prep
7a8cac
%autosetup -n %{name}-%{version} -p1
7a8cac
7a8cac
# Force re-cythonization (ifed for PKG-INFO presence in setup.py)
7a8cac
rm PKG-INFO
7a8cac
7a8cac
# openblas is provided by flexiblas by default; otherwise,
7a8cac
# Use openblas pthreads as recommended by upstream (see comment in site.cfg.example)
7a8cac
cat >> site.cfg <
7a8cac
[openblas]
7a8cac
libraries = %{blaslib}%{blasvar}
7a8cac
library_dirs = %{_libdir}
7a8cac
EOF
7a8cac
7a8cac
%build
7a8cac
%set_build_flags
7a8cac
7a8cac
env OPENBLAS=%{_libdir} \
7a8cac
    BLAS=%{_libdir} \
7a8cac
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
7a8cac
    %{__python3} setup.py build
7a8cac
7a8cac
%install
7a8cac
mkdir docs
7a8cac
pushd docs
7a8cac
unzip %{SOURCE1}
7a8cac
popd
7a8cac
7a8cac
#%%{__python3} setup.py install -O1 --skip-build --root %%{buildroot}
7a8cac
# skip-build currently broken, this works around it for now
7a8cac
env OPENBLAS=%{_libdir} \
7a8cac
    FFTW=%{_libdir} BLAS=%{_libdir} \
7a8cac
    LAPACK=%{_libdir} CFLAGS="%{optflags}" \
7a8cac
    %{__python3} setup.py install --root %{buildroot}
7a8cac
pushd %{buildroot}%{_bindir} &> /dev/null
7a8cac
# Remove unversioned binaries
7a8cac
rm f2py
7a8cac
rm f2py3
7a8cac
popd &> /dev/null
7a8cac
7a8cac
# All ghost files controlled by alternatives need to exist for the files
7a8cac
# section check to succeed
7a8cac
touch %{buildroot}%{_bindir}/f2py3
7a8cac
7a8cac
7a8cac
%check
7a8cac
%if %{with tests}
7a8cac
%ifarch ppc64le
7a8cac
# https://github.com/numpy/numpy/issues/14357
7a8cac
%{__python3} runtests.py -v -- -k 'not test_einsum_sums_cfloat64'
7a8cac
%else
7a8cac
%{__python3} runtests.py -v
7a8cac
%endif
7a8cac
%endif
7a8cac
7a8cac
7a8cac
%post -n python%{python3_pkgversion}-numpy-f2py
7a8cac
alternatives --add-slave python3 %{_bindir}/python%{python3_version} \
7a8cac
    %{_bindir}/f2py3 \
7a8cac
    f2py3 \
7a8cac
    %{_bindir}/f2py%{python3_version}
7a8cac
7a8cac
%postun -n python%{python3_pkgversion}-numpy-f2py
7a8cac
# Do this only during uninstall process (not during update)
7a8cac
if [ $1 -eq 0 ]; then
7a82dd
    alternatives --keep-foreign --remove-slave python3 %{_bindir}/python%{python3_version} \
7a8cac
        f2py3
7a8cac
fi
7a8cac
7a8cac
7a8cac
%files -n python%{python3_pkgversion}-numpy
7a8cac
%license LICENSE.txt
7a8cac
%doc THANKS.txt site.cfg.example
7a8cac
%{python3_sitearch}/%{name}/__pycache__/
7a8cac
%dir %{python3_sitearch}/%{name}
7a8cac
%{python3_sitearch}/%{name}/*.py*
7a8cac
%{python3_sitearch}/%{name}/core
7a8cac
%{python3_sitearch}/%{name}/distutils
7a8cac
%{python3_sitearch}/%{name}/doc
7a8cac
%{python3_sitearch}/%{name}/fft
7a8cac
%{python3_sitearch}/%{name}/lib
7a8cac
%{python3_sitearch}/%{name}/linalg
7a8cac
%{python3_sitearch}/%{name}/ma
7a8cac
%{python3_sitearch}/%{name}/random
7a8cac
%{python3_sitearch}/%{name}/testing
7a8cac
%{python3_sitearch}/%{name}/tests
7a8cac
%{python3_sitearch}/%{name}/compat
7a8cac
%{python3_sitearch}/%{name}/matrixlib
7a8cac
%{python3_sitearch}/%{name}/polynomial
7a8cac
%{python3_sitearch}/%{name}-*.egg-info
7a8cac
%exclude %{python3_sitearch}/%{name}/LICENSE.txt
7a8cac
%{python3_sitearch}/%{name}/__init__.pxd
7a8cac
%{python3_sitearch}/%{name}/__init__.cython-30.pxd
7a8cac
7a8cac
%files -n python%{python3_pkgversion}-numpy-f2py
7a8cac
%{_bindir}/f2py%{python3_version}
7a8cac
%ghost %{_bindir}/f2py3
7a8cac
%{python3_sitearch}/%{name}/f2py
7a8cac
7a8cac
%files -n python%{python3_pkgversion}-numpy-doc
7a8cac
%doc docs/*
7a8cac
7a8cac
7a8cac
%changelog
7a82dd
* Thu Aug 05 2021 Tomas Orsava <torsava@redhat.com> - 1.19.4-3
7a82dd
- Adjusted the postun scriptlets to enable upgrading to RHEL 9
7a82dd
- Resolves: rhbz#1933055
7a82dd
7a8cac
* Mon Jan 18 2021 Tomas Orsava <torsava@redhat.com> - 1.19.4-2
7a8cac
- Convert from Fedora to the python39 module in RHEL8
7a8cac
- Resolves: rhbz#1877430
7a8cac
7a8cac
* Tue Nov 03 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.4-1
7a8cac
- 1.19.4
7a8cac
7a8cac
* Thu Oct 29 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.3-1
7a8cac
- 1.19.3
7a8cac
7a8cac
* Tue Oct 27 2020 Nikola Forró <nforro@redhat.com> - 1:1.19.2-2
7a8cac
- Make test suite work in FIPS (140-2) Mode
7a8cac
7a8cac
* Thu Sep 10 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.2-1
7a8cac
- 1.19.2
7a8cac
7a8cac
* Sun Aug 16 2020 Iñaki Úcar <iucar@fedoraproject.org> - 1:1.19.1-3
7a8cac
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
7a8cac
7a8cac
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.19.1-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
7a8cac
7a8cac
* Wed Jul 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.1-1
7a8cac
- 1.19.1
7a8cac
7a8cac
* Thu Jul 16 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-2
7a8cac
- Assume old-style numpy provides from python2-numpy
7a8cac
7a8cac
* Mon Jun 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-1
7a8cac
- 1.19.0 final.
7a8cac
7a8cac
* Mon Jun 01 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.19.0-0.rc2
7a8cac
- 1.19.0 rc2
7a8cac
7a8cac
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1:1.18.4-3
7a8cac
- Rebuilt for Python 3.9
7a8cac
7a8cac
* Fri May 08 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.4-2
7a8cac
- Own __pycache__ dir, 1833392
7a8cac
7a8cac
* Sun May 03 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.4-1
7a8cac
- 1.18.4
7a8cac
7a8cac
* Mon Apr 20 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.3-1
7a8cac
- 1.18.3
7a8cac
7a8cac
* Wed Mar 18 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.2-1
7a8cac
- 1.18.2
7a8cac
7a8cac
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18.1-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
7a8cac
7a8cac
* Mon Jan 06 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.1-1
7a8cac
- 1.18.1
7a8cac
7a8cac
* Mon Dec 30 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.18.0-1
7a8cac
- 1.18.0
7a8cac
7a8cac
* Mon Nov 11 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.17.4-2
7a8cac
- Backport patch for s390x failures
7a8cac
- Enable non-broken tests on ppc64le
7a8cac
7a8cac
* Mon Nov 11 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.4-1
7a8cac
- 1.17.4
7a8cac
7a8cac
* Fri Oct 18 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.3-1
7a8cac
- 1.17.3
7a8cac
7a8cac
* Sat Sep 07 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.2-1
7a8cac
- 1.17.2
7a8cac
7a8cac
* Thu Aug 29 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.17.1-1
7a8cac
- 1.17.1
7a8cac
7a8cac
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.17.0-3
7a8cac
- Rebuilt for Python 3.8
7a8cac
7a8cac
* Thu Aug 01 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.17.0-2
7a8cac
- Reintroduce libnpymath.a (#1735674)
7a8cac
7a8cac
* Tue Jul 30 2019 Gwyn Ciesla <gwync@protonmail.com> 1:1.17.0-1
7a8cac
- 1.17.0, split out Python 2.
7a8cac
7a8cac
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.16.4-3
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
7a8cac
7a8cac
* Thu Jun 20 2019 Kalev Lember <klember@redhat.com> - 1:1.16.4-2
7a8cac
- Avoid hardcoding /usr prefix
7a8cac
7a8cac
* Tue May 28 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.4-1
7a8cac
- 1.16.4
7a8cac
7a8cac
* Thu May 16 2019 Orion Poplawski <orion@nwra.com> - 1:1.16.3-2
7a8cac
- Build only with openblasp (bugz#1709161)
7a8cac
7a8cac
* Mon Apr 22 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.3-1
7a8cac
- 1.16.3.
7a8cac
7a8cac
* Tue Feb 26 2019 Gwyn Ciesla <gwync@protonmail.com> - 1:1.16.2-1
7a8cac
- 1.16.2.
7a8cac
7a8cac
* Fri Feb 01 2019 Gwyn Ciesla <limburgher@gmail.com> - 1:1.16.1-1
7a8cac
- 1.16.1.
7a8cac
7a8cac
* Tue Jan 22 2019 Gwyn Ciesla <limburgher@gmail.com> - 1:1.16.0-1
7a8cac
- 1.16.0.
7a8cac
7a8cac
* Wed Aug 29 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.1-2
7a8cac
- Switch to pytest for running tests during check
7a8cac
- Stop ignoring failures when running tests
7a8cac
- Set PATH in check so that f2py tests work
7a8cac
- Update docs to match release
7a8cac
- Remove outdated workaround from rhbz#849713
7a8cac
7a8cac
* Wed Aug 22 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.1-1
7a8cac
- Update to latest version
7a8cac
7a8cac
* Sat Aug 11 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1:1.15.0-2
7a8cac
- Fix broken build on s390x
7a8cac
- Remove bytecode produced by pytest
7a8cac
- Re-enable tests on s390x
7a8cac
7a8cac
* Tue Jul 24 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.15.0-1
7a8cac
- 1.15.0
7a8cac
7a8cac
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.5-3
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
7a8cac
7a8cac
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1:1.14.5-2
7a8cac
- Rebuilt for Python 3.7
7a8cac
7a8cac
* Wed Jun 13 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.5-1
7a8cac
- 1.14.5
7a8cac
7a8cac
* Tue May 01 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.3-1
7a8cac
- 1.14.3
7a8cac
7a8cac
* Mon Mar 12 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.2-1
7a8cac
- 1.14.2
7a8cac
7a8cac
* Wed Feb 21 2018 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.1-1
7a8cac
- 1.14.1
7a8cac
7a8cac
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.0-0.rc1.1
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7a8cac
7a8cac
* Wed Dec 13 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.14.0-0.rc1
7a8cac
- 1.14.0 rc1
7a8cac
7a8cac
* Mon Dec 11 2017 Iryna Shcherbina <ishcherb@redhat.com> - 1:1.13.3-5
7a8cac
- Fix ambiguous Python 2 dependency declarations
7a8cac
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
7a8cac
7a8cac
* Thu Nov 16 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.3-4
7a8cac
- Split out doc subpackage.
7a8cac
7a8cac
* Mon Nov 06 2017 Merlin Mathesius <mmathesi@redhat.com> - 1:1.13.3-3
7a8cac
- Cleanup spec file conditionals
7a8cac
7a8cac
* Tue Oct 31 2017 Christian Dersch <lupinix@mailbox.org> - 1:1.13.3-2
7a8cac
- set proper environment variables for openblas
7a8cac
7a8cac
* Wed Oct 04 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.3-1
7a8cac
- 1.13.3
7a8cac
7a8cac
* Thu Sep 28 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.2-1
7a8cac
- 1.13.2
7a8cac
7a8cac
* Tue Aug 08 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.1-4
7a8cac
- Use openblas where available, BZ 1472318.
7a8cac
7a8cac
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-3
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
7a8cac
7a8cac
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7a8cac
7a8cac
* Fri Jul 07 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.1-1
7a8cac
- 1.13.1 final
7a8cac
7a8cac
* Fri Jun 09 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-1
7a8cac
- 1.13.0 final
7a8cac
7a8cac
* Fri May 19 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-0.rc2
7a8cac
- 1.13.0 rc2
7a8cac
7a8cac
* Thu May 11 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.13.0-0.rc1
7a8cac
- 1.13.0 rc1
7a8cac
7a8cac
* Wed Mar 29 2017 Gwyn Ciesla <limburgher@gmail.com> - 1:1.12.1-1
7a8cac
- 1.12.1
7a8cac
7a8cac
* Tue Jan 31 2017 Simone Caronni <negativo17@gmail.com> - 1:1.12.0-1
7a8cac
- Update to 1.12.0, build with gcc 7.0.
7a8cac
7a8cac
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1:1.11.2-2
7a8cac
- Rebuild for Python 3.6
7a8cac
7a8cac
* Mon Oct 3 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.2-1
7a8cac
- Update to 1.11.2 final
7a8cac
7a8cac
* Thu Sep 15 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.2-0.rc1
7a8cac
- Update to 1.11.2rc1, BZ 1340440.
7a8cac
7a8cac
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.11.1-2
7a8cac
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
7a8cac
7a8cac
* Tue Jun 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.1-1
7a8cac
- Update to 1.11.1 final
7a8cac
7a8cac
* Tue Jun 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.1-0.rc1
7a8cac
- Update to 1.11.1rc1, BZ 1340440.
7a8cac
7a8cac
* Mon Mar 28 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-4
7a8cac
- Update to 1.11.0 final
7a8cac
7a8cac
* Wed Mar 23 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.11.0-3.rc2
7a8cac
- Update to 1.11.0rc2
7a8cac
7a8cac
* Sun Mar  6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1:1.11.0-2.b3
7a8cac
- Bump Release. 1b2 is higher than 0b3
7a8cac
7a8cac
* Wed Feb 10 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b3
7a8cac
- Update to 1.11.0b2, BZ 1306249.
7a8cac
7a8cac
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.11.0-1b2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7a8cac
7a8cac
* Sun Jan 31 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-0.b2
7a8cac
- Update to 1.11.0b2, BZ 1303387.
7a8cac
7a8cac
* Tue Jan 26 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.11.0-020161016.cc2b04git
7a8cac
- Update to git snapshot (due to build issue) after 1.11.0b1, BZ 1301943.
7a8cac
7a8cac
* Thu Jan 07 2016 Jon Ciesla <limburgher@gmail.com> - 1:1.10.4-1
7a8cac
- Update to 1.10.4, BZ 1296509.
7a8cac
7a8cac
* Tue Dec 15 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-1
7a8cac
- Update to 1.10.2, BZ 1291674.
7a8cac
7a8cac
* Tue Dec 08 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.2-0.2.rc2
7a8cac
- Update to 1.10.2rc1, BZ 1289550.
7a8cac
7a8cac
* Fri Nov 13 2015 Orion Poplawski <orion@cora.nwra.com> - 1:1.10.2-0.1.rc1
7a8cac
- Update to 1.10.2rc1
7a8cac
- Drop opt-flags patch applied upstream
7a8cac
7a8cac
* Fri Nov 13 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-6
7a8cac
- Add provides to satisfy numpy%%{_isa} requires in other packages
7a8cac
7a8cac
* Thu Nov 12 2015 Orion Poplawski <orion@nwra.com> - 1:1.10.1-5
7a8cac
- Re-add provides f2py
7a8cac
7a8cac
* Thu Nov 12 2015 Kalev Lember <klember@redhat.com> - 1:1.10.1-4
7a8cac
- Fix obsoletes / provides for numpy -> python2-numpy rename
7a8cac
7a8cac
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-3
7a8cac
- Remove fortran flags or arm would build with -march=x86-64
7a8cac
7a8cac
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 1:1.10.1-2
7a8cac
- Provide python2-* packages
7a8cac
- Run tests with verbose=2
7a8cac
7a8cac
* Tue Oct 13 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.1-1
7a8cac
- Update to 1.10.1, BZ 1271022.
7a8cac
7a8cac
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1:1.10.0-2
7a8cac
- Rebuilt for Python3.5 rebuild
7a8cac
7a8cac
* Tue Oct 06 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-1
7a8cac
- Update to 1.10.0 final.
7a8cac
7a8cac
* Wed Sep 02 2015 Jon Ciesla <limburgher@gmail.com> - 1:1.10.0-0.b1
7a8cac
- Update to 1.10.0b1, BZ 1252641.
7a8cac
7a8cac
* Thu Aug 13 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-3
7a8cac
- Add python2-numpy provides (bug #1249423)
7a8cac
- Spec cleanup
7a8cac
7a8cac
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.2-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7a8cac
7a8cac
* Sun Mar 1 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.2-1
7a8cac
- Update to 1.9.2
7a8cac
7a8cac
* Tue Jan 6 2015 Orion Poplawski <orion@nwra.com> - 1:1.9.1-2
7a8cac
- Add upstream patch to fix xerbla linkage (bug #1172834)
7a8cac
7a8cac
* Tue Nov 04 2014 Jon Ciesla <limburgher@gmail.com> - 1:1.9.1-1
7a8cac
- Update to 1.9.1, BZ 1160273.
7a8cac
7a8cac
* Sun Sep 7 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-1
7a8cac
- Update to 1.9.0
7a8cac
7a8cac
* Wed Aug 27 2014 Orion Poplawski <orion@nwra.com> - 1:1.9.0-0.1.rc1
7a8cac
- Update to 1.9.0rc1
7a8cac
7a8cac
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.2-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7a8cac
7a8cac
* Sun Aug 10 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.2-1
7a8cac
- Update to 1.8.2
7a8cac
7a8cac
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1-4
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7a8cac
7a8cac
* Fri May 9 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-3
7a8cac
- Rebuild for Python 3.4
7a8cac
7a8cac
* Wed May 07 2014 Jaromir Capik <jcapik@redhat.com> - 1:1.8.1-2
7a8cac
- Fixing FTBFS on ppc64le (#1078354)
7a8cac
7a8cac
* Tue Mar 25 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.1-1
7a8cac
- Update to 1.8.1
7a8cac
7a8cac
* Tue Mar 4 2014 Orion Poplawski <orion@nwra.com> - 1:1.8.0-5
7a8cac
- Fix __pycache__ ownership (bug #1072467)
7a8cac
7a8cac
* Mon Feb 10 2014 Thomas Spura <tomspur@fedoraproject.org> - 1:1.8.0-4
7a8cac
- Fix CVE-2014-1858, CVE-2014-1859: #1062009, #1062359
7a8cac
7a8cac
* Mon Nov 25 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-3
7a8cac
- Ship doc module (bug #1034357)
7a8cac
7a8cac
* Wed Nov 6 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-2
7a8cac
- Move f2py documentation to f2py package (bug #1027394)
7a8cac
7a8cac
* Wed Oct 30 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-1
7a8cac
- Update to 1.8.0 final
7a8cac
7a8cac
* Mon Oct 14 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.7.rc2
7a8cac
- Update to 1.8.0rc2
7a8cac
- Create clean site.cfg
7a8cac
- Use serial atlas
7a8cac
7a8cac
* Mon Sep 23 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.6.b2
7a8cac
- Add [atlas] to site.cfg for new atlas library names
7a8cac
7a8cac
* Sun Sep 22 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.5.b2
7a8cac
- Update site.cfg for new atlas library names
7a8cac
7a8cac
* Sat Sep 21 2013 David Tardon <dtardon@redhat.com> - 1:1.8.0-0.4.b2
7a8cac
- rebuild for atlas 3.10
7a8cac
7a8cac
* Tue Sep 10 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.8.0-0.3.b2
7a8cac
- Fix libdir path in site.cfg, BZ 1006242.
7a8cac
7a8cac
* Sun Sep 8 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.2.b2
7a8cac
- Update to 1.8.0b2
7a8cac
7a8cac
* Wed Sep 4 2013 Orion Poplawski <orion@nwra.com> - 1:1.8.0-0.1.b1
7a8cac
- Update to 1.8.0b1
7a8cac
- Drop f2py patch applied upstream
7a8cac
7a8cac
* Tue Aug 27 2013 Jon Ciesla <limburgher@gmail.com> - 1:1.7.1-5
7a8cac
- URL Fix, BZ 1001337
7a8cac
7a8cac
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.1-4
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
7a8cac
7a8cac
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 1:1.7.1-3
7a8cac
- Fix rpmlint warnings
7a8cac
- Update License
7a8cac
- Apply patch: change shebang of f2py to use binary directly
7a8cac
7a8cac
* Sun Jun 2 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-2
7a8cac
- Specfile cleanup (bug #969854)
7a8cac
7a8cac
* Wed Apr 10 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.1-1
7a8cac
- Update to 1.7.1
7a8cac
7a8cac
* Sat Feb 9 2013 Orion Poplawski <orion@nwra.com> - 1:1.7.0-1
7a8cac
- Update to 1.7.0 final
7a8cac
7a8cac
* Sun Dec 30 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.5.rc1
7a8cac
- Update to 1.7.0rc1
7a8cac
7a8cac
* Thu Sep 20 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.4.b2
7a8cac
- Update to 1.7.0b2
7a8cac
- Drop patches applied upstream
7a8cac
7a8cac
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.3.b1
7a8cac
- Add patch from github pull 371 to fix python 3.3 pickle issue
7a8cac
- Remove cython .c source regeneration - fails now
7a8cac
7a8cac
* Wed Aug 22 2012 Orion Poplawski <orion@nwra.com> - 1:1.7.0-0.2.b1
7a8cac
- add workaround for rhbz#849713 (fixes FTBFS)
7a8cac
7a8cac
* Tue Aug 21 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.7.0-0.1.b1
7a8cac
- Update to 1.7.0b1
7a8cac
- Rebase python 3.3 patchs to current git master
7a8cac
- Drop patches applied upstream
7a8cac
7a8cac
* Sun Aug  5 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-5
7a8cac
- rework patches for 3.3 to more directly reflect upstream's commits
7a8cac
- re-enable test suite on python 3
7a8cac
- forcibly regenerate Cython .c source to avoid import issues on Python 3.3
7a8cac
7a8cac
* Sun Aug  5 2012 Thomas Spura <tomspur@fedoraproject.org> - 1:1.6.2-4
7a8cac
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
7a8cac
- needs unicode patch
7a8cac
7a8cac
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 1:1.6.2-3
7a8cac
- remove rhel logic from with_python3 conditional
7a8cac
7a8cac
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.2-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7a8cac
7a8cac
* Sun May 20 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2-1
7a8cac
- Update to 1.6.2 final
7a8cac
7a8cac
* Sat May 12 2012 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.2rc1-0.1
7a8cac
- Update to 1.6.2rc1
7a8cac
7a8cac
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.1-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7a8cac
7a8cac
* Mon Nov 7 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.1-1
7a8cac
- Update to 1.6.1
7a8cac
7a8cac
* Fri Jun 17 2011 Jon Ciesla <limb@jcomserv.net> - 1:1.6.0-2
7a8cac
- Bump and rebuild for BZ 712251.
7a8cac
7a8cac
* Mon May 16 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-1
7a8cac
- Update to 1.6.0 final
7a8cac
7a8cac
* Mon Apr 4 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.2.b2
7a8cac
- Update to 1.6.0b2
7a8cac
- Drop import patch fixed upstream
7a8cac
7a8cac
* Thu Mar 31 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.6.0-0.1.b1
7a8cac
- Update to 1.6.0b1
7a8cac
- Build python3  module with python3
7a8cac
- Add patch from upstream to fix build time import error
7a8cac
7a8cac
* Wed Mar 30 2011 Orion Poplawski <orion@cora.nwra.com> - 1:1.5.1-1
7a8cac
- Update to 1.5.1 final
7a8cac
7a8cac
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.1-0.4
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7a8cac
7a8cac
* Thu Jan 13 2011 Dan Horák <dan[at]danny.cz> - 1:1.5.1-0.3
7a8cac
- fix the AttributeError during tests
7a8cac
- fix build on s390(x)
7a8cac
7a8cac
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.5.1-0.2
7a8cac
- rebuild for newer python3
7a8cac
7a8cac
* Wed Oct 27 2010 Thomas Spura <tomspur@fedoraproject.org> - 1:1.5.1-0.1
7a8cac
- update to 1.5.1rc1
7a8cac
- add python3 subpackage
7a8cac
- some spec-cleanups
7a8cac
7a8cac
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-6
7a8cac
- actually add the patch this time
7a8cac
7a8cac
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-5
7a8cac
- fix segfault within %%check on 2.7 (patch 2)
7a8cac
7a8cac
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-4
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
7a8cac
7a8cac
* Sun Jul 18 2010 Dan Horák <dan[at]danny.cz> 1.4.1-3
7a8cac
- ignore the "Ticket #1299 second test" failure on s390(x)
7a8cac
7a8cac
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-2
7a8cac
- source commit fix
7a8cac
7a8cac
* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-1
7a8cac
- New upstream release. Include backported doublefree patch
7a8cac
7a8cac
* Mon Apr 26 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-8
7a8cac
- Moved distutils back to the main package, BZ 572820.
7a8cac
7a8cac
* Thu Apr 08 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-7
7a8cac
- Reverted to 1.3.0 after upstream pulled 1.4.0, BZ 579065.
7a8cac
7a8cac
* Tue Mar 02 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-5
7a8cac
- Linking /usr/include/numpy to .h files, BZ 185079.
7a8cac
7a8cac
* Tue Feb 16 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-4
7a8cac
- Re-enabling atlas BR, dropping lapack Requires.
7a8cac
7a8cac
* Wed Feb 10 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-3
7a8cac
- Since the previous didn't work, Requiring lapack.
7a8cac
7a8cac
* Tue Feb 09 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-2
7a8cac
- Temporarily dropping atlas BR to work around 562577.
7a8cac
7a8cac
* Fri Jan 22 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-1
7a8cac
- 1.4.0.
7a8cac
- Dropped ARM patch, ARM support added upstream.
7a8cac
7a8cac
* Tue Nov 17 2009 Jitesh Shah <jiteshs@marvell.com> - 1.3.0-6.fa1
7a8cac
- Add ARM support
7a8cac
7a8cac
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7a8cac
7a8cac
* Thu Jun 11 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-5
7a8cac
- Fixed atlas BR, BZ 505376.
7a8cac
7a8cac
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-4
7a8cac
- EVR bump for pygame chainbuild.
7a8cac
7a8cac
* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-3
7a8cac
- Moved linalg, fft back to main package.
7a8cac
7a8cac
* Tue Apr 14 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-2
7a8cac
- Split out f2py into subpackage, thanks Peter Robinson pbrobinson@gmail.com.
7a8cac
7a8cac
* Tue Apr 07 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-1
7a8cac
- Update to latest upstream.
7a8cac
- Fixed Source0 URL.
7a8cac
7a8cac
* Thu Apr 02 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-0.rc1
7a8cac
- Update to latest upstream.
7a8cac
7a8cac
* Thu Mar 05 2009 Jon Ciesla <limb@jcomserv.net> 1.2.1-3
7a8cac
- Require python-devel, BZ 488464.
7a8cac
7a8cac
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
7a8cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
7a8cac
7a8cac
* Fri Dec 19 2008 Jon Ciesla <limb@jcomserv.net> 1.2.1-1
7a8cac
- Update to 1.2.1.
7a8cac
7a8cac
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-2
7a8cac
- Rebuild for Python 2.6
7a8cac
7a8cac
* Tue Oct 07 2008 Jon Ciesla <limb@jcomserv.net> 1.2.0-1
7a8cac
- New upstream release, added python-nose BR. BZ 465999.
7a8cac
- Using atlas blas, not blas-devel. BZ 461472.
7a8cac
7a8cac
* Wed Aug 06 2008 Jon Ciesla <limb@jcomserv.net> 1.1.1-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Thu May 29 2008 Jarod Wilson <jwilson@redhat.com> 1.1.0-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Tue May 06 2008 Jarod Wilson <jwilson@redhat.com> 1.0.4-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Mon Feb 11 2008 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-2
7a8cac
- Add python egg to %%files on f9+
7a8cac
7a8cac
* Wed Aug 22 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Wed Jun 06 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-2
7a8cac
- Drop BR: atlas-devel, since it just provides binary-compat
7a8cac
  blas and lapack libs. Atlas can still be optionally used
7a8cac
  at runtime. (Note: this is all per the atlas maintainer).
7a8cac
7a8cac
* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Tue Apr 17 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-4
7a8cac
- Update gfortran patch to recognize latest gfortran f95 support
7a8cac
- Resolves rhbz#236444
7a8cac
7a8cac
* Fri Feb 23 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-3
7a8cac
- Fix up cpuinfo bug (#229753). Upstream bug/change:
7a8cac
  http://projects.scipy.org/scipy/scipy/ticket/349
7a8cac
7a8cac
* Thu Jan 04 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-2
7a8cac
- Per discussion w/Jose Matos, Obsolete/Provide f2py, as the
7a8cac
  stand-alone one is no longer supported/maintained upstream
7a8cac
7a8cac
* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> 1.0.1-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.0-2
7a8cac
- Rebuild for python 2.5
7a8cac
7a8cac
* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.0-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Wed Sep 06 2006 Jarod Wilson <jwilson@redhat.com> 0.9.8-1
7a8cac
- New upstream release
7a8cac
7a8cac
* Wed Apr 26 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.6-1
7a8cac
- Upstream update
7a8cac
7a8cac
* Thu Feb 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.5-1
7a8cac
- Upstream update
7a8cac
7a8cac
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-2
7a8cac
- Rebuild for Fedora Extras 5
7a8cac
7a8cac
* Thu Feb  2 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-1
7a8cac
- Initial RPM release
7a8cac
- Added gfortran patch from Neal Becker