975833
# without means enabled
975833
%bcond_with doc
975833
975833
# Set to pre-release version suffix if building pre-release, else %%{nil}
975833
%global rcver %{nil}
975833
975833
%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9
975833
%global blaslib flexiblas
975833
%global blasvar %{nil}
975833
%else
975833
%global blaslib openblas
975833
%global blasvar p
975833
%endif
975833
975833
Summary:    Scientific Tools for Python
975833
Name:       scipy
975833
Version:    1.6.2
975833
Release:    8%{?dist}
975833
975833
# BSD -- whole package except:
975833
# Boost -- scipy/special/cephes/scipy_iv.c
975833
# Public Domain -- scipy/odr/__odrpack.c
975833
License:    BSD and Boost and Public Domain
975833
Url:        http://www.scipy.org/scipylib/index.html
975833
Source0:    https://github.com/scipy/scipy/releases/download/v%{version}/scipy-%{version}.tar.gz
975833
975833
BuildRequires: fftw-devel, suitesparse-devel
975833
BuildRequires: %{blaslib}-devel
975833
BuildRequires: gcc-gfortran, swig, gcc-c++
975833
BuildRequires: qhull-devel
975833
BuildRequires: /usr/bin/pathfix.py
975833
975833
BuildRequires:  pybind11-devel
975833
BuildRequires:  python3-pybind11 >= 2.4.0
975833
BuildRequires:  python3-numpy, python3-devel, python3-numpy-f2py
975833
BuildRequires:  python3-setuptools
975833
BuildRequires:  python3-Cython
975833
BuildRequires:  python3-pytest
975833
BuildRequires:  python3-pytest-timeout
975833
975833
%if %{with doc}
975833
BuildRequires:  python3-sphinx
975833
BuildRequires:  python3-matplotlib
975833
BuildRequires:  python3-numpydoc
975833
%endif
975833
975833
%global _description %{expand:
975833
Scipy is open-source software for mathematics, science, and
975833
engineering. The core library is NumPy which provides convenient and
975833
fast N-dimensional array manipulation. The SciPy library is built to
975833
work with NumPy arrays, and provides many user-friendly and efficient
975833
numerical routines such as routines for numerical integration and
975833
optimization. Together, they run on all popular operating systems, are
975833
quick to install, and are free of charge. NumPy and SciPy are easy to
975833
use, but powerful enough to be depended upon by some of the world's
975833
leading scientists and engineers.}
975833
975833
%description %_description
975833
975833
%package -n python3-scipy
975833
Summary:    Scientific Tools for Python
975833
Requires:   python3-numpy, python3-f2py
975833
%{?python_provide:%python_provide python3-scipy}
975833
%description -n python3-scipy %_description
975833
975833
%if %{with doc}
975833
%package -n python3-scipy-doc
975833
Summary:    Scientific Tools for Python - documentation
975833
Requires:   python3-scipy = %{version}-%{release}
975833
%description -n python3-scipy-doc
975833
HTML documentation for Scipy
975833
%endif
975833
975833
975833
%prep
975833
%autosetup -p1 -n %{name}-%{version}%{?rcver}
975833
cat > site.cfg << EOF
975833
975833
[amd]
975833
library_dirs = %{_libdir}
975833
include_dirs = /usr/include/suitesparse
975833
amd_libs = amd
975833
975833
[umfpack]
975833
library_dirs = %{_libdir}
975833
include_dirs = /usr/include/suitesparse
975833
umfpack_libs = umfpack
975833
975833
[openblas]
975833
libraries = %{blaslib}%{blasvar}
975833
library_dirs = %{_libdir}
975833
EOF
975833
975833
# Docs won't build unless the .dat files are specified here
975833
sed -i 's/metadata = dict(/metadata = dict(package_data={"": ["*.dat"]},/' setup.py
975833
975833
# remove bundled numpydoc
975833
rm doc/sphinxext -r
975833
975833
rm $(grep -rl '/\* Generated by Cython') PKG-INFO
975833
975833
%build
975833
for PY in %{python3_version}; do
975833
  # Adding -fallow-argument-mismatch workaround for https://github.com/scipy/scipy/issues/11611
975833
  env CFLAGS="$RPM_OPT_FLAGS -lm" \
975833
  %if 0%{?fedora} >= 32 || 0%{?rhel} >= 9
975833
      FFLAGS="$RPM_OPT_FLAGS -fPIC -fallow-argument-mismatch" \
975833
  %else
975833
      FFLAGS="$RPM_OPT_FLAGS -fPIC" \
975833
  %endif
975833
    LDFLAGS="%{__global_ldflags}" \
975833
    %{_bindir}/python$PY setup.py config_fc \
975833
    --fcompiler=gnu95 --noarch \
975833
    build
975833
975833
  %if %{with doc}
975833
  pushd doc
975833
  export PYTHONPATH=$(echo ../build/lib.linux-*-$PY/)
975833
  make html SPHINXBUILD=sphinx-build-$PY
975833
  rm -rf build/html/.buildinfo
975833
  mv build build-$PY
975833
  popd
975833
  %endif
975833
done
975833
975833
%install
975833
%py3_install
975833
# Some files got ambiguous python shebangs, we fix them after everything else is done
975833
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{python3_sitearch}
975833
975833
%check
975833
# check against the reference BLAS/LAPACK
975833
export FLEXIBLAS=netlib
975833
975833
# default test timeout
975833
TIMEOUT=500
975833
975833
%ifarch s390x
975833
# skip failing tests on s390x for now
975833
export PYTEST_ADDOPTS="-k '\
975833
    not (TestNoData and test_nodata) and \
975833
    not test_fortranfile_read_mixed_record and \
975833
    not test_kde_1d and \
975833
    not test_kde_1d_weighted and \
975833
    not test_kde_2d and \
975833
    not test_kde_2d_weighted and \
975833
    not test_gaussian_kde_subclassing and \
975833
    not test_gaussian_kde_covariance_caching and \
975833
    not test_kde_integer_input and \
975833
    not test_pdf_logpdf and \
975833
    not test_pdf_logpdf_weighted'"
975833
975833
# some tests (namely test_logpdf_overflow) tend to run for a long time on s390x
975833
TIMEOUT=1000
975833
%endif
975833
975833
pushd %{buildroot}/%{python3_sitearch}
975833
%{pytest} --timeout=${TIMEOUT} scipy
975833
# Remove test remnants
975833
rm -rf gram{A,B}
975833
popd
975833
975833
%files -n python3-scipy
975833
%doc LICENSE.txt
975833
%{python3_sitearch}/scipy/
975833
%{python3_sitearch}/*.egg-info
975833
975833
%if %{with doc}
975833
%files -n python3-scipy-doc
975833
%license LICENSE.txt
975833
%doc doc/build-%{python3_version}/html
975833
%endif
975833
975833
%changelog
975833
* Mon Feb 21 2022 Tomas Orsava <torsava@redhat.com> - 1.6.2-8
975833
- Add gating configuration and a simple smoke test
975833
- Related: rhbz#1950291
975833
975833
* Tue Feb 08 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 1.6.2-7
975833
- Add automatically generated Obsoletes tag with the python39- prefix
975833
  for smoother upgrade from RHEL8
975833
- Related: rhbz#1990421
975833
975833
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.2-6
975833
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
975833
  Related: rhbz#1991688
975833
975833
* Thu May 13 2021 Nikola Forró <nforro@redhat.com> - 1.6.2-5
975833
- Use proper LDFLAGS
975833
  related: #1945060
975833
975833
* Mon Apr 26 2021 Nikola Forró <nforro@redhat.com> - 1.6.2-4
975833
- Remove RPATH from certain shared object files
975833
  related: #1945060
975833
975833
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.2-3
975833
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
975833
975833
* Thu Apr 08 2021 Nikola Forró <nforro@redhat.com> - 1.6.2-2
975833
- Remove python-pytest-xdist dependency
975833
  resolves: #1945060
975833
975833
* Thu Mar 25 2021 Nikola Forró <nforro@redhat.com> - 1.6.2-1
975833
- New upstream release 1.6.2
975833
  resolves: #1942896
975833
975833
* Thu Feb 18 2021 Nikola Forró <nforro@redhat.com> - 1.6.1-1
975833
- New upstream release 1.6.1
975833
  resolves: #1929994
975833
975833
* Wed Feb 03 2021 Nikola Forró <nforro@redhat.com> - 1.6.0-3
975833
- Increase test timeout on s390x
975833
975833
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
975833
975833
* Mon Jan 04 2021 Nikola Forró <nforro@redhat.com> - 1.6.0-1
975833
- New upstream release 1.6.0
975833
  resolves: #1906692
975833
975833
* Wed Nov 25 2020 Nikola Forró <nforro@redhat.com> - 1.5.4-2
975833
- Skip factorial() float tests on Python 3.10
975833
  resolves: #1898157
975833
975833
* Thu Nov 05 2020 Nikola Forró <nforro@redhat.com> - 1.5.4-1
975833
- New upstream release 1.5.4
975833
- Increase test timeout, 300 seconds is not always enough
975833
  for test_logpdf_overflow on s390x
975833
  resolves: #1894887
975833
975833
* Mon Oct 19 2020 Nikola Forró <nforro@redhat.com> - 1.5.3-1
975833
- New upstream release 1.5.3
975833
  resolves: #1889132
975833
975833
* Wed Sep 30 2020 Nikola Forró <nforro@redhat.com> - 1.5.2-2
975833
- Skip one more test expected to fail on 32-bit architectures
975833
975833
* Mon Aug 31 2020 Nikola Forró <nforro@redhat.com> - 1.5.2-1
975833
- New upstream release 1.5.2
975833
  resolves: #1853871 and #1840077
975833
975833
* Sun Aug 16 2020 Iñaki Úcar <iucar@fedoraproject.org> - 1.5.0-4
975833
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
975833
975833
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-3
975833
- Second attempt - Rebuilt for
975833
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
975833
975833
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
975833
975833
* Tue Jun 23 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.5.0-1
975833
- Update to latest version
975833
975833
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 1.4.1-2
975833
- Rebuilt for Python 3.9
975833
975833
* Sun Mar 01 2020 Orion Poplawski <orion@nwra.com> - 1.4.1-1
975833
- Update to 1.4.1 (bz#1771154)
975833
- Workaround FTBFS with gcc 10 (bz#1800078)
975833
975833
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
975833
975833
* Fri Oct 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.3.1-1
975833
- Update to 1.3.1 (#1674101)
975833
- Drop Python 2 packages (not supported by SciPy >= 1.3)
975833
- Backported upstream patch for cKDTree (fixes FTBFS)
975833
975833
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-8
975833
- Rebuilt for Python 3.8.0rc1 (#1748018)
975833
975833
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.1-7
975833
- Rebuilt for Python 3.8
975833
975833
* Tue Jul 30 2019 Petr Viktorin <pviktori@redhat.com> - 1.2.1-6
975833
- Remove build dependency on python2-pytest-xdist and python2-pytest-timeout
975833
- Enable parallel tests in Python 3 %%check
975833
- Use macros for Python interpreter in tests
975833
975833
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-5
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
975833
975833
* Mon Jun 10 2019 Marcel Plch <mplch@redhat.com> - 1.2.1-4
975833
- Fix FTBFS with Py3.8 (#1606315)
975833
975833
* Thu May 16 2019 Orion Poplawski <orion@nwra.com> - 1.2.1-3
975833
- Build only against openblasp (bugz#1709161)
975833
975833
* Fri Apr 26 2019 Orion Poplawski <orion@nwra.com> - 1.2.1-2
975833
- Do not create *-PYTEST.pyc files
975833
975833
* Tue Apr 23 2019 Orion Poplawski <orion@nwra.com> - 1.2.1-1
975833
- Update to 1.2.1
975833
- Drop scipy2-doc
975833
975833
* Wed Feb 06 2019 Charalampos Stratakis <cstratak@redhat.com> - 1.2.0-1
975833
- Update to 1.2.0
975833
975833
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-4
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
975833
975833
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
975833
975833
* Sat Jun 23 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
975833
- Don't ignore the tests results but rather have a tolerance rate
975833
- Skip test_decomp on ppc64le as it currently segfaults
975833
975833
* Fri Jun 22 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-1
975833
- Update to 1.1.0 (#1560265, #1594355)
975833
975833
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.0-8
975833
- Rebuilt for Python 3.7
975833
975833
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-7
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
975833
975833
* Fri Feb 02 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.0-6
975833
- Link with -lm to build with new stricter Fedora flags
975833
  https://bugzilla.redhat.com/show_bug.cgi?id=1541416
975833
975833
* Wed Jan 31 2018 Christian Dersch <lupinix@mailbox.org> - 1.0.0-5
975833
- rebuilt for GCC 8.x (gfortran soname bump)
975833
975833
* Mon Dec 11 2017 Lumír Balhar <lbalhar@redhat.com> - 1.0.0-4
975833
- Disable tests on s390x
975833
975833
* Mon Nov 20 2017 Lumír Balhar <lbalhar@redhat.com> - 1.0.0-3
975833
- New subpackages with HTML documentation
975833
975833
* Tue Oct 31 2017 Christian Dersch <lupinix@mailbox.org> - 1.0.0-2
975833
- Use openblas where available https://fedoraproject.org/wiki/Changes/OpenBLAS_as_default_BLAS
975833
- Remove ppc64 hackery for OpenBLAS
975833
- Don't run tests in parallel as pytest crashes
975833
- Don't run test_denormals as it tends to stuck
975833
975833
* Thu Oct 26 2017 Thomas Spura <tomspur@fedoraproject.org> - 1.0.0-1
975833
- update to 1.0.0 and use pytest instead of nose
975833
- use timeout during parallel %%check
975833
975833
* Wed Oct 04 2017 Christian Dersch <lupinix@mailbox.org> - 0.19.1-5
975833
- Use openblas where available (except ppc64), to use same as numpy (BZ 1472318)
975833
975833
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.1-4
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
975833
975833
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.1-3
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
975833
975833
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.19.1-2
975833
- Rebuild due to bug in RPM (RHBZ #1468476)
975833
975833
* Tue Jun 27 2017 Christian Dersch <lupinix@mailbox.org> - 0.19.1-1
975833
- new version
975833
975833
* Wed Jun 07 2017 Christian Dersch <lupinix@mailbox.org> - 0.19.0-1
975833
- new version
975833
975833
* Tue Jan 31 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.18.0-3
975833
- Rebuild for libgfortran.so.3
975833
975833
* Mon Dec 12 2016 Stratakis Charalampos <cstratak@redhat.com> - 0.18.0-2
975833
- Rebuild for Python 3.6
975833
975833
* Tue Jul 26 2016 Than Ngo <than@redhat.com> - 0.18.0-1
975833
- 0.18.0
975833
- %%check: make non-fatal as temporary workaround for scipy build on arm
975833
975833
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.0-2
975833
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
975833
975833
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
975833
- fix source URL
975833
975833
* Mon Feb 15 2016 Orion Poplawski <orion@cora.nwra.com> - 0.17.0-1
975833
- Update to 0.17.0
975833
- Drop ctypes patch applied upstream
975833
975833
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-7
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
975833
975833
* Sat Nov 21 2015 Kalev Lember <klember@redhat.com> - 0.16.1-6
975833
- Add provides to satisfy scipy%%{_isa} requires in other packages
975833
975833
* Sun Nov 15 2015 Björn Esser <fedora@besser82.io> - 0.16.1-5
975833
- Revert "Discard results of testsuite on %%{arm} for now"
975833
975833
* Sat Nov 14 2015 Björn Esser <besser82@fedoraproject.org> - 0.16.1-4
975833
- Discard results of testsuite on %%{arm} for now
975833
  Segfaults on non-aligned memory test (expected for arm)
975833
975833
* Sat Nov 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.1-3
975833
- Add patch to fix ctypes test
975833
- Move requires to correct python2 subpackage
975833
- Add FFLAGS also in %%install
975833
975833
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.1-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
975833
975833
* Mon Oct 26 2015 Orion Poplawski <orion@cora.nwra.com> - 0.16.1-1
975833
- Update to 0.16.1
975833
975833
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.0-1
975833
- Update to 0.16.0
975833
- Use python_provide macro
975833
975833
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
975833
975833
* Tue Mar 31 2015 Orion Poplawski <orion@cora.nwra.com> - 0.15.1-1
975833
- Update to 0.15.1
975833
975833
* Sun Jan 4 2015 Orion Poplawski <orion@cora.nwra.com> - 0.14.1-1
975833
- Update to 0.14.1
975833
975833
* Wed Aug 20 2014 Kevin Fenzi <kevin@scrye.com> - 0.14.0-5
975833
- Rebuild for rpm bug 1131892
975833
975833
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-4
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
975833
975833
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-3
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
975833
975833
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-2
975833
- Rebuild with Python 3.4
975833
975833
* Tue May  6 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-1
975833
- Update to 0.14
975833
- Do not use system python-six (bug #1046817)
975833
975833
* Thu Feb 20 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-2
975833
- use python2 macros everywhere (Requested by Han Boetes)
975833
975833
* Tue Feb  4 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-1
975833
- Update to 0.13.3
975833
975833
* Mon Dec 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.2-1
975833
- Update to 0.13.2
975833
975833
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 0.13.1-2
975833
- rebuild (suitesparse)
975833
975833
* Sun Nov 17 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.1-1
975833
- Update to 0.13.1
975833
975833
* Wed Oct 23 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-2
975833
- Update to 0.13.0 final
975833
975833
* Tue Oct 15 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.4.rc1
975833
- Update to 0.13.0rc1
975833
975833
* Tue Oct 01 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-0.3.b1
975833
- rebuilt with atlas 3.10
975833
975833
* Mon Sep 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.2.b1
975833
- Unbundle python-six (bug #1005350)
975833
975833
* Thu Aug 29 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.1.b1
975833
- Update to 0.13.0b1
975833
- Drop patches applied upstream
975833
- Fixup changelog and summary
975833
975833
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-4
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
975833
975833
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.12.0-4
975833
- Fix rpmlint warnings
975833
- License update
975833
- Add patch to use build_dir argument in build_extension
975833
975833
* Wed May 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-3
975833
- Remove old ufsparse references, use suitesparse
975833
- Spec cleanup
975833
975833
* Mon Apr 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-2
975833
- Add patch to fix segfaul in test of sgeqrf
975833
975833
* Wed Apr 10 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-1
975833
- Update to 0.12.0 final
975833
- No longer remove weave from python3 build
975833
975833
* Sat Feb 16 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-0.1.b1
975833
- Update to 0.12.0b1
975833
- Drop upstreamed linalg patch
975833
975833
* Wed Feb 13 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-4
975833
- Add patch from upstream to fix python3.3 issues in linalg routines
975833
975833
* Tue Feb 12 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-3
975833
- Disable python3 tests for now
975833
975833
* Mon Oct  8 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-2
975833
- Add requires python3-numpy, python3-f2py for python3-scipy (bug 863755)
975833
975833
* Sun Sep 30 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-1
975833
- Update to 0.11.0 final
975833
975833
* Thu Aug 23 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-0.1.rc2
975833
- Update to 0.11.0rc2
975833
975833
* Mon Aug  6 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-4
975833
- Rebuild for python 3.3
975833
975833
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.10.1-3
975833
- remove rhel logic from with_python3 conditional
975833
975833
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
975833
975833
* Fri Mar 16 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-1
975833
- Update to 0.10.1
975833
975833
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
975833
975833
* Mon Nov 14 2011 Orion Poplawski <orion@cora.nwra.com> - 0.10.0-1
975833
- Update to 0.10.0
975833
975833
* Sat Sep  3 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.9.0-2
975833
- little cosmetic changes
975833
- filter provides in python_sitearch
975833
975833
* Fri Sep 02 2011 Andrew McNabb <amcnabb@mcnabbs.org>
975833
- add python3 subpackage
975833
975833
* Fri Apr 1 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.0-1
975833
- Update to 0.9.0
975833
- Drop all stsci sources and patches, dropped from upstream
975833
- Drop gcc and py27 patches fixed upstream
975833
- Add %%check section to run tests
975833
975833
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-3
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
975833
975833
* Sat Jul 31 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-3
975833
- Fix scipy build on python-2.7
975833
975833
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-2
975833
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
975833
975833
* Thu Jul 1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.2-1
975833
- New upstream release
975833
975833
* Sun Apr 11 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-3
975833
- Bump for rebuild against numpy 1.3
975833
975833
* Thu Apr  1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-2
975833
- Bump for rebuild against numpy 1.4.0
975833
975833
* Thu Dec 10 2009 Jon Ciesla <limb@jcomserv.net> - 0.7.1-1
975833
- Update to 0.7.1.
975833
975833
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-5
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
975833
975833
* Sun Jun 14  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-4
975833
- Fix for gcc34 weave blitz bug #505379
975833
975833
* Tue Apr 7  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-3
975833
- Add f2py requires to prepared for numpy packaging split
975833
975833
* Sun Mar 1  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-2
975833
- Patch for stsci image function syntax fix.
975833
975833
* Thu Feb 26 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-1
975833
- Update to final 0.7 release
975833
975833
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-0.3.b1
975833
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
975833
975833
* Mon Dec 15 2008 Deji Akingunola <dakingun@gmail.com> - 0.7.0-0.2.b1
975833
- Rebuild for atlas-3.8.2
975833
975833
* Mon Dec 01 2008  Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-0.1.b1
975833
- Update to latest beta which lists python 2.6 support
975833
975833
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-8
975833
- Rebuild for Python 2.6
975833
975833
* Fri Oct 03 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-7
975833
- fix the stsci fix
975833
975833
* Thu Oct 02 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-6
975833
- include missing setup files for stsci module
975833
975833
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.6.0-5
975833
- Autorebuild for GCC 4.3
975833
975833
* Fri Jan 04 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-4
975833
- fix for egg-info file creation
975833
975833
* Wed Oct 03 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-3
975833
- include_dirs changes for ufsparse change in development
975833
975833
* Tue Oct 02 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-2
975833
- Fix licensing to match Fedora packaging guidance
975833
- Remove unnecessary library deps
975833
975833
* Tue Sep 25 2007 Jarrod Millman <millman@berkeley.edu> - 0.6.0-1
975833
- update to new upstream source
975833
- update Summary, License, Url, and description
975833
- added extra dependencies
975833
- remove symlink since Lib has been renamed scipy
975833
975833
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2.1-1
975833
- Update to new upstream source
975833
975833
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-3
975833
- fix licensing tag and bump for buildid rebuild
975833
975833
* Wed Apr 18 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.2
975833
- go back to using gfortran now that numpy is patched
975833
975833
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.1
975833
- minor correction for f77 usage
975833
975833
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2
975833
- revert to f77 due to issue with numpy in development
975833
975833
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1.1
975833
- remove arch specific optimizations
975833
975833
* Wed Feb 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1
975833
- Update for new upstream release
975833
975833
* Mon Dec  11 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-5
975833
- Bump for rebuild against python 2.5 in devel tree
975833
975833
* Sun Dec  3 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-4
975833
- Minor adjustments to specfile for packaging guidelines.
975833
- Changed buildrequires fftw version 3  from fftw2
975833
975833
* Sat Dec  2 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-2
975833
- Updated spec for FE Packaging Guidelines and for upstream version 0.5.1
975833
975833
* Mon May  8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-4
975833
- Add BuildRequires gcc-c++
975833
- Add python-devel
975833
- Add libstdc++
975833
975833
* Mon May  8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
975833
- Add BuildRequires gcc-gfortran
975833
975833
* Sun May  7 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
975833
- Add BuildRequires numpy
975833
975833
975833
* Wed May  3 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-2
975833
- Fix BuildRoot
975833
- Add BuildRequires, Requires
975833
- Test remove d1mach patch
975833
- Fix defattr
975833
- Add changelog
975833
- Removed Prefix, Vendor
975833
- Fix Source0