9b8313
# without means enabled
9b8313
%bcond_with doc
9b8313
9b8313
%bcond_with tests
9b8313
9b8313
# Set to pre-release version suffix if building pre-release, else %%{nil}
9b8313
%global rcver %{nil}
9b8313
9b8313
Summary:    Scientific Tools for Python
9b8313
Name:       scipy
9b8313
Version:    1.3.1
9b8313
Release:    4%{?dist}
9b8313
9b8313
# BSD -- whole package except:
9b8313
# Boost -- scipy/special/cephes/scipy_iv.c
9b8313
# Public Domain -- scipy/odr/__odrpack.c
9b8313
License:    BSD and Boost and Public Domain
9b8313
Url:        http://www.scipy.org/scipylib/index.html
9b8313
Source0:    https://github.com/scipy/scipy/releases/download/v%{version}/scipy-%{version}.tar.gz
9b8313
9b8313
# Previously we ignored the tests results, because they don't always pass
9b8313
# Instead of ignoring the results entirely, we allow certain failure rate
9b8313
# https://stackoverflow.com/a/47731333/1839451
9b8313
Patch0:     acceptable_failure_rate.patch
9b8313
9b8313
# The C API of PyArrayObject has changed in Python 3.8 and the
9b8313
# structure fields accessed in __odrpack.c are now deprecated.
9b8313
Patch1:     numpy-deprecation-warnings.patch
9b8313
9b8313
# Bugfix of cKDTree
9b8313
# PR: https://github.com/scipy/scipy/pull/10567
9b8313
# Issue: https://github.com/scipy/scipy/issues/11021
9b8313
Patch2:     ckdtree_bugfix.patch
9b8313
9b8313
# Exclude i686 arch. Due to a modularity issue it's being added to the
9b8313
# x86_64 compose of CRB, but we don't want to ship it at all.
9b8313
# See: https://projects.engineering.redhat.com/browse/RCM-72605
9b8313
ExcludeArch: i686
9b8313
9b8313
BuildRequires: fftw-devel, blas-devel, lapack-devel, suitesparse-devel
9b8313
%ifarch %{openblas_arches}
9b8313
BuildRequires: openblas-devel
9b8313
%else
9b8313
BuildRequires: atlas-devel
9b8313
%endif
9b8313
BuildRequires: gcc-gfortran, swig, gcc-c++
9b8313
BuildRequires: qhull-devel
9b8313
BuildRequires: /usr/bin/pathfix3.8.py
9b8313
9b8313
BuildRequires:  python%{python3_pkgversion}-devel
9b8313
BuildRequires:  python%{python3_pkgversion}-numpy
9b8313
BuildRequires:  python%{python3_pkgversion}-numpy-f2py
9b8313
BuildRequires:  python%{python3_pkgversion}-setuptools
9b8313
BuildRequires:  python%{python3_pkgversion}-Cython
9b8313
BuildRequires:  python%{python3_pkgversion}-rpm-macros
9b8313
9b8313
%if %{with tests}
9b8313
BuildRequires:  python%{python3_pkgversion}-pytest
9b8313
BuildRequires:  python%{python3_pkgversion}-pytest-xdist
9b8313
BuildRequires:  python%{python3_pkgversion}-pytest-timeout
9b8313
%endif
9b8313
9b8313
%if %{with doc}
9b8313
BuildRequires:  python%{python3_pkgversion}-sphinx
9b8313
BuildRequires:  python%{python3_pkgversion}-matplotlib
9b8313
BuildRequires:  python%{python3_pkgversion}-numpydoc
9b8313
%endif
9b8313
9b8313
%global _description %{expand:
9b8313
Scipy is open-source software for mathematics, science, and
9b8313
engineering. The core library is NumPy which provides convenient and
9b8313
fast N-dimensional array manipulation. The SciPy library is built to
9b8313
work with NumPy arrays, and provides many user-friendly and efficient
9b8313
numerical routines such as routines for numerical integration and
9b8313
optimization. Together, they run on all popular operating systems, are
9b8313
quick to install, and are free of charge. NumPy and SciPy are easy to
9b8313
use, but powerful enough to be depended upon by some of the world's
9b8313
leading scientists and engineers.}
9b8313
9b8313
%description %_description
9b8313
9b8313
%package -n python%{python3_pkgversion}-scipy
9b8313
Summary:    Scientific Tools for Python
9b8313
Requires:   python%{python3_pkgversion}-numpy, python%{python3_pkgversion}-numpy-f2py
9b8313
%{?python_provide:%python_provide python%{python3_pkgversion}-scipy}
9b8313
%description -n python%{python3_pkgversion}-scipy %_description
9b8313
9b8313
%if %{with doc}
9b8313
%package -n python%{python3_pkgversion}-scipy-doc
9b8313
Summary:    Scientific Tools for Python - documentation
9b8313
Requires:   python%{python3_pkgversion}-scipy = %{version}-%{release}
9b8313
%description -n python%{python3_pkgversion}-scipy-doc
9b8313
HTML documentation for Scipy
9b8313
%endif
9b8313
9b8313
9b8313
%prep
9b8313
%autosetup -p1 -n %{name}-%{version}%{?rcver}
9b8313
cat > site.cfg << EOF
9b8313
9b8313
[amd]
9b8313
library_dirs = %{_libdir}
9b8313
include_dirs = /usr/include/suitesparse
9b8313
amd_libs = amd
9b8313
9b8313
[umfpack]
9b8313
library_dirs = %{_libdir}
9b8313
include_dirs = /usr/include/suitesparse
9b8313
umfpack_libs = umfpack
9b8313
9b8313
%ifarch %{openblas_arches}
9b8313
[openblas]
9b8313
libraries = openblasp
9b8313
library_dirs = %{_libdir}
9b8313
%endif
9b8313
EOF
9b8313
9b8313
# Docs won't build unless the .dat files are specified here
9b8313
sed -i 's/metadata = dict(/metadata = dict(package_data={"": ["*.dat"]},/' setup.py
9b8313
9b8313
# remove bundled numpydoc
9b8313
rm doc/sphinxext -r
9b8313
9b8313
rm $(grep -rl '/\* Generated by Cython') PKG-INFO
9b8313
9b8313
%build
9b8313
for PY in %{python3_version}; do
9b8313
  env CFLAGS="$RPM_OPT_FLAGS -lm" \
9b8313
      FFLAGS="$RPM_OPT_FLAGS -fPIC -cpp" \
9b8313
      LDFLAGS="$RPM_LD_FLAGS -shared" \
9b8313
  %ifarch %{openblas_arches}
9b8313
    OPENBLAS=%{_libdir} \
9b8313
  %else
9b8313
    ATLAS=%{_libdir}/atlas \
9b8313
  %endif
9b8313
    FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
9b8313
    %{_bindir}/python$PY setup.py config_fc \
9b8313
    --fcompiler=gnu95 --noarch \
9b8313
    build
9b8313
9b8313
  %if %{with doc}
9b8313
  pushd doc
9b8313
  export PYTHONPATH=$(echo ../build/lib.linux-*-$PY/)
9b8313
  make html SPHINXBUILD=sphinx-build-$PY
9b8313
  rm -rf build/html/.buildinfo
9b8313
  mv build build-$PY
9b8313
  popd
9b8313
  %endif
9b8313
done
9b8313
9b8313
%install
9b8313
%py3_install
9b8313
# Some files got ambiguous python shebangs, we fix them after everything else is done
9b8313
pathfix3.8.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{python3_sitearch}
9b8313
9b8313
%if %{with tests}
9b8313
%check
9b8313
# Skip all tests on s390x because they hangs unexpectedly and randomly
9b8313
# and pytest-timeout has no effect. Note that the outcome of the tests
9b8313
# was previously ignored anyway so by disabling the test for s390x we
9b8313
# are not doing anything more dangerous.
9b8313
%ifarch s390x
9b8313
exit 0
9b8313
%endif
9b8313
9b8313
%ifarch x86_64
9b8313
export ACCEPTABLE_FAILURE_RATE=0
9b8313
%else
9b8313
# there are usually 10-21 test failing, so we allow 1% failure rate
9b8313
export ACCEPTABLE_FAILURE_RATE=1
9b8313
%endif
9b8313
9b8313
%ifarch ppc64le
9b8313
# test_decomp segfaults on ppc64le
9b8313
export k="not test_denormals and not test_decomp"
9b8313
%else
9b8313
# test_denormals tends to stuck
9b8313
export k="not test_denormals"
9b8313
%endif
9b8313
9b8313
# Do not create -PYTEST.pyc files
9b8313
export PYTHONDONTWRITEBYTECODE=1
9b8313
9b8313
pushd %{buildroot}/%{python3_sitearch}
9b8313
# TODO TestIQR.test_scale fails on Python 3.8+ due to some warnings, investigate
9b8313
%{__python3} -m pytest --timeout=300 -k "$k and not (TestIQR and test_scale)" scipy --numprocesses=auto
9b8313
# Remove test remnants
9b8313
rm -rf gram{A,B}
9b8313
popd
9b8313
%endif
9b8313
9b8313
%files -n python%{python3_pkgversion}-scipy
9b8313
%doc LICENSE.txt
9b8313
%{python3_sitearch}/scipy/
9b8313
%{python3_sitearch}/*.egg-info
9b8313
9b8313
%if %{with doc}
9b8313
%files -n python%{python3_pkgversion}-scipy-doc
9b8313
%license LICENSE.txt
9b8313
%doc doc/build-%{python3_version}/html
9b8313
%endif
9b8313
9b8313
%changelog
9b8313
* Thu Dec 12 2019 Tomas Orsava <torsava@redhat.com> - 1.3.1-4
9b8313
- Exclude unsupported i686 arch
9b8313
9b8313
* Tue Dec 03 2019 Lumír Balhar <lbalhar@redhat.com> - 1.3.1-3
9b8313
- Specify LDFLAGS explicitly
9b8313
- Force preprocessing of Fortran sources to make annobin record proper flags
9b8313
- Resolves: rhbz#1778983
9b8313
9b8313
* Thu Nov 21 2019 Lumír Balhar <lbalhar@redhat.com> - 1.3.1-2
9b8313
- Adjusted for Python 3.8 module in RHEL 8
9b8313
9b8313
* Fri Oct 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.3.1-1
9b8313
- Update to 1.3.1 (#1674101)
9b8313
- Drop Python 2 packages (not supported by SciPy >= 1.3)
9b8313
- Backported upstream patch for cKDTree (fixes FTBFS)
9b8313
9b8313
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-8
9b8313
- Rebuilt for Python 3.8.0rc1 (#1748018)
9b8313
9b8313
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-7
9b8313
- Rebuilt for Python 3.8
9b8313
9b8313
* Tue Jul 30 2019 Petr Viktorin <pviktori@redhat.com> - 1.2.1-6
9b8313
- Remove build dependency on python2-pytest-xdist and python2-pytest-timeout
9b8313
- Enable parallel tests in Python 3 %%check
9b8313
- Use macros for Python interpreter in tests
9b8313
9b8313
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-5
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
9b8313
9b8313
* Mon Jun 10 2019 Marcel Plch <mplch@redhat.com> - 1.2.1-4
9b8313
- Fix FTBFS with Py3.8 (#1606315)
9b8313
9b8313
* Thu May 16 2019 Orion Poplawski <orion@nwra.com> - 1.2.1-3
9b8313
- Build only against openblasp (bugz#1709161)
9b8313
9b8313
* Fri Apr 26 2019 Orion Poplawski <orion@nwra.com> - 1.2.1-2
9b8313
- Do not create *-PYTEST.pyc files
9b8313
9b8313
* Tue Apr 23 2019 Orion Poplawski <orion@nwra.com> - 1.2.1-1
9b8313
- Update to 1.2.1
9b8313
- Drop scipy2-doc
9b8313
9b8313
* Wed Feb 06 2019 Charalampos Stratakis <cstratak@redhat.com> - 1.2.0-1
9b8313
- Update to 1.2.0
9b8313
9b8313
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-4
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
9b8313
9b8313
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
9b8313
9b8313
* Sat Jun 23 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
9b8313
- Don't ignore the tests results but rather have a tolerance rate
9b8313
- Skip test_decomp on ppc64le as it currently segfaults
9b8313
9b8313
* Fri Jun 22 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-1
9b8313
- Update to 1.1.0 (#1560265, #1594355)
9b8313
9b8313
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.0-8
9b8313
- Rebuilt for Python 3.7
9b8313
9b8313
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-7
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
9b8313
9b8313
* Fri Feb 02 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.0-6
9b8313
- Link with -lm to build with new stricter Fedora flags
9b8313
  https://bugzilla.redhat.com/show_bug.cgi?id=1541416
9b8313
9b8313
* Wed Jan 31 2018 Christian Dersch <lupinix@mailbox.org> - 1.0.0-5
9b8313
- rebuilt for GCC 8.x (gfortran soname bump)
9b8313
9b8313
* Mon Dec 11 2017 Lumír Balhar <lbalhar@redhat.com> - 1.0.0-4
9b8313
- Disable tests on s390x
9b8313
9b8313
* Mon Nov 20 2017 Lumír Balhar <lbalhar@redhat.com> - 1.0.0-3
9b8313
- New subpackages with HTML documentation
9b8313
9b8313
* Tue Oct 31 2017 Christian Dersch <lupinix@mailbox.org> - 1.0.0-2
9b8313
- Use openblas where available https://fedoraproject.org/wiki/Changes/OpenBLAS_as_default_BLAS
9b8313
- Remove ppc64 hackery for OpenBLAS
9b8313
- Don't run tests in parallel as pytest crashes
9b8313
- Don't run test_denormals as it tends to stuck
9b8313
9b8313
* Thu Oct 26 2017 Thomas Spura <tomspur@fedoraproject.org> - 1.0.0-1
9b8313
- update to 1.0.0 and use pytest instead of nose
9b8313
- use timeout during parallel %%check
9b8313
9b8313
* Wed Oct 04 2017 Christian Dersch <lupinix@mailbox.org> - 0.19.1-5
9b8313
- Use openblas where available (except ppc64), to use same as numpy (BZ 1472318)
9b8313
9b8313
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.1-4
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
9b8313
9b8313
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.1-3
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9b8313
9b8313
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.19.1-2
9b8313
- Rebuild due to bug in RPM (RHBZ #1468476)
9b8313
9b8313
* Tue Jun 27 2017 Christian Dersch <lupinix@mailbox.org> - 0.19.1-1
9b8313
- new version
9b8313
9b8313
* Wed Jun 07 2017 Christian Dersch <lupinix@mailbox.org> - 0.19.0-1
9b8313
- new version
9b8313
9b8313
* Tue Jan 31 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.18.0-3
9b8313
- Rebuild for libgfortran.so.3
9b8313
9b8313
* Mon Dec 12 2016 Stratakis Charalampos <cstratak@redhat.com> - 0.18.0-2
9b8313
- Rebuild for Python 3.6
9b8313
9b8313
* Tue Jul 26 2016 Than Ngo <than@redhat.com> - 0.18.0-1
9b8313
- 0.18.0
9b8313
- %%check: make non-fatal as temporary workaround for scipy build on arm
9b8313
9b8313
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.0-2
9b8313
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
9b8313
9b8313
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
9b8313
- fix source URL
9b8313
9b8313
* Mon Feb 15 2016 Orion Poplawski <orion@cora.nwra.com> - 0.17.0-1
9b8313
- Update to 0.17.0
9b8313
- Drop ctypes patch applied upstream
9b8313
9b8313
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-7
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
9b8313
9b8313
* Sat Nov 21 2015 Kalev Lember <klember@redhat.com> - 0.16.1-6
9b8313
- Add provides to satisfy scipy%%{_isa} requires in other packages
9b8313
9b8313
* Sun Nov 15 2015 Björn Esser <fedora@besser82.io> - 0.16.1-5
9b8313
- Revert "Discard results of testsuite on %%{arm} for now"
9b8313
9b8313
* Sat Nov 14 2015 Björn Esser <besser82@fedoraproject.org> - 0.16.1-4
9b8313
- Discard results of testsuite on %%{arm} for now
9b8313
  Segfaults on non-aligned memory test (expected for arm)
9b8313
9b8313
* Sat Nov 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.1-3
9b8313
- Add patch to fix ctypes test
9b8313
- Move requires to correct python2 subpackage
9b8313
- Add FFLAGS also in %%install
9b8313
9b8313
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.1-2
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
9b8313
9b8313
* Mon Oct 26 2015 Orion Poplawski <orion@cora.nwra.com> - 0.16.1-1
9b8313
- Update to 0.16.1
9b8313
9b8313
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.0-1
9b8313
- Update to 0.16.0
9b8313
- Use python_provide macro
9b8313
9b8313
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9b8313
9b8313
* Tue Mar 31 2015 Orion Poplawski <orion@cora.nwra.com> - 0.15.1-1
9b8313
- Update to 0.15.1
9b8313
9b8313
* Sun Jan 4 2015 Orion Poplawski <orion@cora.nwra.com> - 0.14.1-1
9b8313
- Update to 0.14.1
9b8313
9b8313
* Wed Aug 20 2014 Kevin Fenzi <kevin@scrye.com> - 0.14.0-5
9b8313
- Rebuild for rpm bug 1131892
9b8313
9b8313
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-4
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
9b8313
9b8313
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-3
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9b8313
9b8313
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-2
9b8313
- Rebuild with Python 3.4
9b8313
9b8313
* Tue May  6 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-1
9b8313
- Update to 0.14
9b8313
- Do not use system python-six (bug #1046817)
9b8313
9b8313
* Thu Feb 20 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-2
9b8313
- use python2 macros everywhere (Requested by Han Boetes)
9b8313
9b8313
* Tue Feb  4 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-1
9b8313
- Update to 0.13.3
9b8313
9b8313
* Mon Dec 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.2-1
9b8313
- Update to 0.13.2
9b8313
9b8313
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 0.13.1-2
9b8313
- rebuild (suitesparse)
9b8313
9b8313
* Sun Nov 17 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.1-1
9b8313
- Update to 0.13.1
9b8313
9b8313
* Wed Oct 23 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-2
9b8313
- Update to 0.13.0 final
9b8313
9b8313
* Tue Oct 15 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.4.rc1
9b8313
- Update to 0.13.0rc1
9b8313
9b8313
* Tue Oct 01 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-0.3.b1
9b8313
- rebuilt with atlas 3.10
9b8313
9b8313
* Mon Sep 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.2.b1
9b8313
- Unbundle python-six (bug #1005350)
9b8313
9b8313
* Thu Aug 29 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.1.b1
9b8313
- Update to 0.13.0b1
9b8313
- Drop patches applied upstream
9b8313
- Fixup changelog and summary
9b8313
9b8313
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-4
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
9b8313
9b8313
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.12.0-4
9b8313
- Fix rpmlint warnings
9b8313
- License update
9b8313
- Add patch to use build_dir argument in build_extension
9b8313
9b8313
* Wed May 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-3
9b8313
- Remove old ufsparse references, use suitesparse
9b8313
- Spec cleanup
9b8313
9b8313
* Mon Apr 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-2
9b8313
- Add patch to fix segfaul in test of sgeqrf
9b8313
9b8313
* Wed Apr 10 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-1
9b8313
- Update to 0.12.0 final
9b8313
- No longer remove weave from python3 build
9b8313
9b8313
* Sat Feb 16 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-0.1.b1
9b8313
- Update to 0.12.0b1
9b8313
- Drop upstreamed linalg patch
9b8313
9b8313
* Wed Feb 13 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-4
9b8313
- Add patch from upstream to fix python3.3 issues in linalg routines
9b8313
9b8313
* Tue Feb 12 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-3
9b8313
- Disable python3 tests for now
9b8313
9b8313
* Mon Oct  8 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-2
9b8313
- Add requires python3-numpy, python3-f2py for python3-scipy (bug 863755)
9b8313
9b8313
* Sun Sep 30 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-1
9b8313
- Update to 0.11.0 final
9b8313
9b8313
* Thu Aug 23 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-0.1.rc2
9b8313
- Update to 0.11.0rc2
9b8313
9b8313
* Mon Aug  6 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-4
9b8313
- Rebuild for python 3.3
9b8313
9b8313
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.10.1-3
9b8313
- remove rhel logic from with_python3 conditional
9b8313
9b8313
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-2
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9b8313
9b8313
* Fri Mar 16 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-1
9b8313
- Update to 0.10.1
9b8313
9b8313
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9b8313
9b8313
* Mon Nov 14 2011 Orion Poplawski <orion@cora.nwra.com> - 0.10.0-1
9b8313
- Update to 0.10.0
9b8313
9b8313
* Sat Sep  3 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.9.0-2
9b8313
- little cosmetic changes
9b8313
- filter provides in python_sitearch
9b8313
9b8313
* Fri Sep 02 2011 Andrew McNabb <amcnabb@mcnabbs.org>
9b8313
- add python3 subpackage
9b8313
9b8313
* Fri Apr 1 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.0-1
9b8313
- Update to 0.9.0
9b8313
- Drop all stsci sources and patches, dropped from upstream
9b8313
- Drop gcc and py27 patches fixed upstream
9b8313
- Add %%check section to run tests
9b8313
9b8313
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-3
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9b8313
9b8313
* Sat Jul 31 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-3
9b8313
- Fix scipy build on python-2.7
9b8313
9b8313
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-2
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
9b8313
9b8313
* Thu Jul 1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.2-1
9b8313
- New upstream release
9b8313
9b8313
* Sun Apr 11 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-3
9b8313
- Bump for rebuild against numpy 1.3
9b8313
9b8313
* Thu Apr  1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-2
9b8313
- Bump for rebuild against numpy 1.4.0
9b8313
9b8313
* Thu Dec 10 2009 Jon Ciesla <limb@jcomserv.net> - 0.7.1-1
9b8313
- Update to 0.7.1.
9b8313
9b8313
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-5
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9b8313
9b8313
* Sun Jun 14  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-4
9b8313
- Fix for gcc34 weave blitz bug #505379
9b8313
9b8313
* Tue Apr 7  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-3
9b8313
- Add f2py requires to prepared for numpy packaging split
9b8313
9b8313
* Sun Mar 1  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-2
9b8313
- Patch for stsci image function syntax fix.
9b8313
9b8313
* Thu Feb 26 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-1
9b8313
- Update to final 0.7 release
9b8313
9b8313
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-0.3.b1
9b8313
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9b8313
9b8313
* Mon Dec 15 2008 Deji Akingunola <dakingun@gmail.com> - 0.7.0-0.2.b1
9b8313
- Rebuild for atlas-3.8.2
9b8313
9b8313
* Mon Dec 01 2008  Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-0.1.b1
9b8313
- Update to latest beta which lists python 2.6 support
9b8313
9b8313
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-8
9b8313
- Rebuild for Python 2.6
9b8313
9b8313
* Fri Oct 03 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-7
9b8313
- fix the stsci fix
9b8313
9b8313
* Thu Oct 02 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-6
9b8313
- include missing setup files for stsci module
9b8313
9b8313
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.6.0-5
9b8313
- Autorebuild for GCC 4.3
9b8313
9b8313
* Fri Jan 04 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-4
9b8313
- fix for egg-info file creation
9b8313
9b8313
* Wed Oct 03 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-3
9b8313
- include_dirs changes for ufsparse change in development
9b8313
9b8313
* Tue Oct 02 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-2
9b8313
- Fix licensing to match Fedora packaging guidance
9b8313
- Remove unnecessary library deps
9b8313
9b8313
* Tue Sep 25 2007 Jarrod Millman <millman@berkeley.edu> - 0.6.0-1
9b8313
- update to new upstream source
9b8313
- update Summary, License, Url, and description
9b8313
- added extra dependencies
9b8313
- remove symlink since Lib has been renamed scipy
9b8313
9b8313
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2.1-1
9b8313
- Update to new upstream source
9b8313
9b8313
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-3
9b8313
- fix licensing tag and bump for buildid rebuild
9b8313
9b8313
* Wed Apr 18 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.2
9b8313
- go back to using gfortran now that numpy is patched
9b8313
9b8313
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.1
9b8313
- minor correction for f77 usage
9b8313
9b8313
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2
9b8313
- revert to f77 due to issue with numpy in development
9b8313
9b8313
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1.1
9b8313
- remove arch specific optimizations
9b8313
9b8313
* Wed Feb 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1
9b8313
- Update for new upstream release
9b8313
9b8313
* Mon Dec  11 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-5
9b8313
- Bump for rebuild against python 2.5 in devel tree
9b8313
9b8313
* Sun Dec  3 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-4
9b8313
- Minor adjustments to specfile for packaging guidelines.
9b8313
- Changed buildrequires fftw version 3  from fftw2
9b8313
9b8313
* Sat Dec  2 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-2
9b8313
- Updated spec for FE Packaging Guidelines and for upstream version 0.5.1
9b8313
9b8313
* Mon May  8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-4
9b8313
- Add BuildRequires gcc-c++
9b8313
- Add python-devel
9b8313
- Add libstdc++
9b8313
9b8313
* Mon May  8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
9b8313
- Add BuildRequires gcc-gfortran
9b8313
9b8313
* Sun May  7 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
9b8313
- Add BuildRequires numpy
9b8313
9b8313
9b8313
* Wed May  3 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-2
9b8313
- Fix BuildRoot
9b8313
- Add BuildRequires, Requires
9b8313
- Test remove d1mach patch
9b8313
- Fix defattr
9b8313
- Add changelog
9b8313
- Removed Prefix, Vendor
9b8313
- Fix Source0