Thomas Spura 1954540
%global with_python3 1
Thomas Spura 1954540
%{?filter_setup:
Thomas Spura 76638c4
%filter_provides_in %{python2_sitearch}.*\.so$
Thomas Spura 1954540
%filter_provides_in %{python3_sitearch}.*\.so$
Thomas Spura 1954540
%filter_setup
Thomas Spura 1954540
}
Thomas Spura 1954540
Thomas Spura 6261a33
# Set to pre-release version suffix if building pre-release, else %%{nil}
Orion Poplawski b51885b
%global rcver %{nil}
744eba3
Thomas Spura 6261a33
Summary:    Scientific Tools for Python
Thomas Spura 6261a33
Name:       scipy
8451813
Version:    0.18.0
8451813
Release:    1%{?dist}
ba422bc
Thomas Spura cedb64b
Group:      Development/Libraries
ebed38b
# BSD -- whole package except:
ebed38b
# Boost -- scipy/special/cephes/scipy_iv.c
ebed38b
# Public Domain -- scipy/odr/__odrpack.c
Thomas Spura cedb64b
License:    BSD and Boost and Public Domain
Orion Poplawski 4cadcb8
Url:        http://www.scipy.org/scipylib/index.html
8451813
Source0:    https://files.pythonhosted.org/packages/source/s/scipy/scipy-%{version}.tar.xz
ba422bc
4ae597b
BuildRequires: numpy, python2-devel,f2py
Orion Poplawski 019d6dc
BuildRequires: fftw-devel, blas-devel, lapack-devel, suitesparse-devel
0c70af6
BuildRequires: atlas-devel
aad8285
BuildRequires: gcc-gfortran, swig
Thomas Spura 6261a33
BuildRequires: qhull-devel
ba422bc
Thomas Spura 1954540
%if 0%{?with_python3}
Thomas Spura 1954540
BuildRequires:  python3-numpy, python3-devel, python3-f2py
Thomas Spura 1954540
BuildRequires:  python3-setuptools
Thomas Spura 1954540
BuildRequires:  python3-nose
Thomas Spura 1954540
%endif
ba422bc
ba422bc
%description
aad8285
Scipy is open-source software for mathematics, science, and
aad8285
engineering. The core library is NumPy which provides convenient and
aad8285
fast N-dimensional array manipulation. The SciPy library is built to
aad8285
work with NumPy arrays, and provides many user-friendly and efficient
aad8285
numerical routines such as routines for numerical integration and
aad8285
optimization. Together, they run on all popular operating systems, are
aad8285
quick to install, and are free of charge. NumPy and SciPy are easy to
aad8285
use, but powerful enough to be depended upon by some of the world's
aad8285
leading scientists and engineers.
ba422bc
ba422bc
Thomas Spura 7283e39
%package -n python2-scipy
Thomas Spura 7283e39
Summary:    Scientific Tools for Python
Thomas Spura a8274e7
Requires:   numpy, f2py
Thomas Spura 7283e39
%{?python_provide:%python_provide python2-scipy}
Thomas Spura 7283e39
# General provides of plain 'scipy' in F24
Orion Poplawski 96711f1
Provides:       scipy = %{version}-%{release}
18ceb44
Provides:       scipy%{?_isa} = %{version}-%{release}
Thomas Spura 7283e39
Obsoletes:      scipy <= 0.16.0
Thomas Spura 7283e39
%description -n python2-scipy
Thomas Spura 7283e39
Scipy is open-source software for mathematics, science, and
Thomas Spura 7283e39
engineering. The core library is NumPy which provides convenient and
Thomas Spura 7283e39
fast N-dimensional array manipulation. The SciPy library is built to
Thomas Spura 7283e39
work with NumPy arrays, and provides many user-friendly and efficient
Thomas Spura 7283e39
numerical routines such as routines for numerical integration and
Thomas Spura 7283e39
optimization. Together, they run on all popular operating systems, are
Thomas Spura 7283e39
quick to install, and are free of charge. NumPy and SciPy are easy to
Thomas Spura 7283e39
use, but powerful enough to be depended upon by some of the world's
Thomas Spura 7283e39
leading scientists and engineers.
Thomas Spura 7283e39
Thomas Spura 7283e39
Thomas Spura 1954540
%if 0%{?with_python3}
Thomas Spura 1954540
%package -n python3-scipy
Thomas Spura cedb64b
Summary:    Scientific Tools for Python
Thomas Spura cedb64b
Group:      Development/Libraries
Thomas Spura cedb64b
License:    BSD and LGPLv2+
Thomas Spura cedb64b
Requires:   python3-numpy, python3-f2py
Thomas Spura 7283e39
%{?python_provide:%python_provide python3-scipy}
Thomas Spura 1954540
%description -n python3-scipy
Thomas Spura 1954540
Scipy is open-source software for mathematics, science, and
Thomas Spura 1954540
engineering. The core library is NumPy which provides convenient and
Thomas Spura 1954540
fast N-dimensional array manipulation. The SciPy library is built to
Thomas Spura 1954540
work with NumPy arrays, and provides many user-friendly and efficient
Thomas Spura 1954540
numerical routines such as routines for numerical integration and
Thomas Spura 1954540
optimization. Together, they run on all popular operating systems, are
Thomas Spura 1954540
quick to install, and are free of charge. NumPy and SciPy are easy to
Thomas Spura 1954540
use, but powerful enough to be depended upon by some of the world's
Thomas Spura 1954540
leading scientists and engineers.
Thomas Spura 1954540
Thomas Spura 1954540
%endif # with _python3
Thomas Spura 1954540
Thomas Spura 1954540
%prep
744eba3
%setup -q -n %{name}-%{version}%{?rcver}
aad8285
cat > site.cfg << EOF
Thomas Spura 1954540
aad8285
[amd]
aad8285
library_dirs = %{_libdir}
Orion Poplawski 019d6dc
include_dirs = /usr/include/suitesparse
aad8285
amd_libs = amd
aad8285
aad8285
[umfpack]
aad8285
library_dirs = %{_libdir}
Orion Poplawski 019d6dc
include_dirs = /usr/include/suitesparse
aad8285
umfpack_libs = umfpack
aad8285
EOF
ba422bc
2a3713a
ba422bc
%build
Thomas Spura 1954540
%if 0%{?with_python3}
Thomas Spura 6261a33
env CFLAGS="$RPM_OPT_FLAGS" \
Thomas Spura d73d1a8
    FFLAGS="$RPM_OPT_FLAGS -fPIC" \
Thomas Spura 6261a33
    ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
Thomas Spura 6261a33
    %__python3 setup.py config_fc \
Thomas Spura 6261a33
    --fcompiler=gnu95 --noarch build
Thomas Spura 1954540
%endif # with _python3
Thomas Spura 1954540
Thomas Spura 6261a33
env CFLAGS="$RPM_OPT_FLAGS" \
Thomas Spura d73d1a8
    FFLAGS="$RPM_OPT_FLAGS -fPIC" \
Thomas Spura 6261a33
    ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
Thomas Spura 6261a33
    %__python2 setup.py config_fc \
Thomas Spura 6261a33
    --fcompiler=gnu95 --noarch build
2e6656e
ba422bc
Thomas Spura 1954540
ba422bc
%install
Thomas Spura 1954540
# first install python3 so the binaries are overwritten by the python2 ones
Thomas Spura 1954540
%if 0%{?with_python3}
Thomas Spura 6261a33
env CFLAGS="$RPM_OPT_FLAGS" \
Thomas Spura 70915da
    FFLAGS="$RPM_OPT_FLAGS -fPIC" \
Thomas Spura 6261a33
    ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
Thomas Spura 6261a33
    %__python3 setup.py install --root=$RPM_BUILD_ROOT
Thomas Spura 1954540
%endif # with_python3
Thomas Spura 1954540
Thomas Spura 6261a33
env CFLAGS="$RPM_OPT_FLAGS" \
Thomas Spura 70915da
    FFLAGS="$RPM_OPT_FLAGS -fPIC" \
Thomas Spura 6261a33
    ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
Thomas Spura 6261a33
    %__python2 setup.py install --root=$RPM_BUILD_ROOT
ba422bc
ba422bc
Orion Poplawski 50c7e09
%check
Thomas Spura 1954540
%if 0%{?with_python3}
Thomas Spura 6261a33
mkdir test3
Thomas Spura 6261a33
cd test3
Thomas Spura 6261a33
PYTHONPATH=$RPM_BUILD_ROOT%{python3_sitearch} \
8451813
    %__python3 -c "import scipy; scipy.test('full', verbose=2)" || :
Thomas Spura 1954540
%endif # with_python3
Thomas Spura 1954540
Thomas Spura 6261a33
mkdir test2
Thomas Spura 6261a33
cd test2
Thomas Spura 6261a33
PYTHONPATH=$RPM_BUILD_ROOT%{python2_sitearch} \
8451813
    %__python2 -c "import scipy; scipy.test('full', verbose=2)" || :
Orion Poplawski 50c7e09
Orion Poplawski 50c7e09
Thomas Spura 7283e39
%files -n python2-scipy
ba422bc
%doc LICENSE.txt
Thomas Spura 76638c4
%{python2_sitearch}/scipy
Thomas Spura 76638c4
%{python2_sitearch}/*.egg-info
ba422bc
ba422bc
Thomas Spura 1954540
%if 0%{?with_python3}
Thomas Spura 1954540
%files -n python3-scipy
Thomas Spura 1954540
%doc LICENSE.txt
Thomas Spura 1954540
%{python3_sitearch}/scipy
Thomas Spura 1954540
%{python3_sitearch}/*.egg-info
Thomas Spura 1954540
%endif # with_python3
ba422bc
ba422bc
%changelog
8451813
* Tue Jul 26 2016 Than Ngo <than@redhat.com> - 0.18.0-1
8451813
- 0.18.0
8451813
- %%check: make non-fatal as temporary workaround for scipy build on arm 
8451813
31c3835
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.0-2
31c3835
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
31c3835
c76585c
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
c76585c
- fix source URL
c76585c
Orion Poplawski 4cadcb8
* Mon Feb 15 2016 Orion Poplawski <orion@cora.nwra.com> - 0.17.0-1
Orion Poplawski 4cadcb8
- Update to 0.17.0
Orion Poplawski 4cadcb8
- Drop ctypes patch applied upstream
Orion Poplawski 4cadcb8
c455ea8
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-7
c455ea8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c455ea8
18ceb44
* Sat Nov 21 2015 Kalev Lember <klember@redhat.com> - 0.16.1-6
18ceb44
- Add provides to satisfy scipy%%{_isa} requires in other packages
18ceb44
Björn Esser ddba470
* Sun Nov 15 2015 Björn Esser <fedora@besser82.io> - 0.16.1-5
Björn Esser ddba470
- Revert "Discard results of testsuite on %%{arm} for now"
Björn Esser ddba470
Björn Esser 710e508
* Sat Nov 14 2015 Björn Esser <besser82@fedoraproject.org> - 0.16.1-4
Björn Esser 710e508
- Discard results of testsuite on %%{arm} for now
Björn Esser 710e508
  Segfaults on non-aligned memory test (expected for arm)
Björn Esser 710e508
Thomas Spura f743268
* Sat Nov 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.1-3
Thomas Spura f743268
- Add patch to fix ctypes test
Thomas Spura a8274e7
- Move requires to correct python2 subpackage
Thomas Spura 70915da
- Add FFLAGS also in %%install
Thomas Spura f743268
d8479b3
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.1-2
d8479b3
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
d8479b3
Orion Poplawski 51297cd
* Mon Oct 26 2015 Orion Poplawski <orion@cora.nwra.com> - 0.16.1-1
Orion Poplawski 51297cd
- Update to 0.16.1
Orion Poplawski 51297cd
Thomas Spura 6261a33
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.0-1
Thomas Spura 6261a33
- Update to 0.16.0
Thomas Spura 7283e39
- Use python_provide macro
Thomas Spura 6261a33
b734e1a
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
b734e1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b734e1a
Orion Poplawski 9b671c4
* Tue Mar 31 2015 Orion Poplawski <orion@cora.nwra.com> - 0.15.1-1
Orion Poplawski 9b671c4
- Update to 0.15.1
Orion Poplawski 9b671c4
Orion Poplawski 5873af2
* Sun Jan 4 2015 Orion Poplawski <orion@cora.nwra.com> - 0.14.1-1
Orion Poplawski 5873af2
- Update to 0.14.1
Orion Poplawski 5873af2
91f6f57
* Wed Aug 20 2014 Kevin Fenzi <kevin@scrye.com> - 0.14.0-5
91f6f57
- Rebuild for rpm bug 1131892
91f6f57
31201f9
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-4
31201f9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
31201f9
331d60b
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-3
331d60b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
331d60b
Orion Poplawski dcc6bb8
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-2
Orion Poplawski dcc6bb8
- Rebuild with Python 3.4
Orion Poplawski dcc6bb8
Orion Poplawski b51885b
* Tue May  6 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-1
Orion Poplawski b51885b
- Update to 0.14
Orion Poplawski b51885b
- Do not use system python-six (bug #1046817)
Orion Poplawski b51885b
Thomas Spura 76638c4
* Thu Feb 20 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-2
Thomas Spura 76638c4
- use python2 macros everywhere (Requested by Han Boetes)
Thomas Spura 76638c4
Thomas Spura 4efd573
* Tue Feb  4 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-1
Thomas Spura 4efd573
- Update to 0.13.3
Thomas Spura 4efd573
9b629ba
* Mon Dec 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.2-1
9b629ba
- Update to 0.13.2
9b629ba
77ee388
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 0.13.1-2
77ee388
- rebuild (suitesparse)
77ee388
Orion Poplawski 5c2f06c
* Sun Nov 17 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.1-1
Orion Poplawski 5c2f06c
- Update to 0.13.1
Orion Poplawski 5c2f06c
e4dd001
* Wed Oct 23 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-2
e4dd001
- Update to 0.13.0 final
e4dd001
24b28cf
* Tue Oct 15 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.4.rc1
24b28cf
- Update to 0.13.0rc1
24b28cf
bc63288
* Tue Oct 01 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-0.3.b1
bc63288
- rebuilt with atlas 3.10
bc63288
4ae597b
* Mon Sep 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.2.b1
4ae597b
- Unbundle python-six (bug #1005350)
4ae597b
744eba3
* Thu Aug 29 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.1.b1
744eba3
- Update to 0.13.0b1
744eba3
- Drop patches applied upstream
744eba3
- Fixup changelog and summary
744eba3
73b7541
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-4
73b7541
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
73b7541
1841cbd
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.12.0-4
1841cbd
- Fix rpmlint warnings
1841cbd
- License update
1841cbd
- Add patch to use build_dir argument in build_extension
Orion Poplawski 019d6dc
744eba3
* Wed May 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-3
744eba3
- Remove old ufsparse references, use suitesparse
744eba3
- Spec cleanup
744eba3
Orion Poplawski db1d7ef
* Mon Apr 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-2
Orion Poplawski db1d7ef
- Add patch to fix segfaul in test of sgeqrf
Orion Poplawski db1d7ef
e2c5ca9
* Wed Apr 10 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-1
e2c5ca9
- Update to 0.12.0 final
e2c5ca9
- No longer remove weave from python3 build
e2c5ca9
Orion Poplawski e451a6b
* Sat Feb 16 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-0.1.b1
Orion Poplawski e451a6b
- Update to 0.12.0b1
Orion Poplawski e451a6b
- Drop upstreamed linalg patch
Orion Poplawski e451a6b
Orion Poplawski 86c6793
* Wed Feb 13 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-4
Orion Poplawski 86c6793
- Add patch from upstream to fix python3.3 issues in linalg routines
Orion Poplawski 86c6793
Orion Poplawski aec9c68
* Tue Feb 12 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-3
Orion Poplawski aec9c68
- Disable python3 tests for now
Orion Poplawski aec9c68
b7b47ac
* Mon Oct  8 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-2
b7b47ac
- Add requires python3-numpy, python3-f2py for python3-scipy (bug 863755)
b7b47ac
Orion Poplawski e1be8b8
* Sun Sep 30 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-1
Orion Poplawski e1be8b8
- Update to 0.11.0 final
Orion Poplawski e1be8b8
cb69bd0
* Thu Aug 23 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-0.1.rc2
cb69bd0
- Update to 0.11.0rc2
cb69bd0
e6c765d
* Mon Aug  6 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-4
e6c765d
- Rebuild for python 3.3
e6c765d
9c928fe
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.10.1-3
9c928fe
- remove rhel logic from with_python3 conditional
9c928fe
efc71de
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-2
efc71de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
efc71de
Orion Poplawski 6f9862f
* Fri Mar 16 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-1
Orion Poplawski 6f9862f
- Update to 0.10.1
Orion Poplawski 6f9862f
6d72b80
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
6d72b80
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6d72b80
Orion Poplawski 091f260
* Mon Nov 14 2011 Orion Poplawski <orion@cora.nwra.com> - 0.10.0-1
Orion Poplawski 091f260
- Update to 0.10.0
Orion Poplawski 091f260
Thomas Spura 1954540
* Sat Sep  3 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.9.0-2
Thomas Spura 1954540
- little cosmetic changes
Thomas Spura 1954540
- filter provides in python_sitearch
Thomas Spura 1954540
Thomas Spura 1954540
* Fri Sep 02 2011 Andrew McNabb <amcnabb@mcnabbs.org>
Thomas Spura 1954540
- add python3 subpackage
Thomas Spura 1954540
Orion Poplawski 50c7e09
* Fri Apr 1 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.0-1
Orion Poplawski 50c7e09
- Update to 0.9.0
Orion Poplawski 50c7e09
- Drop all stsci sources and patches, dropped from upstream
Orion Poplawski 50c7e09
- Drop gcc and py27 patches fixed upstream
Orion Poplawski 50c7e09
- Add %%check section to run tests
Orion Poplawski 50c7e09
7f72431
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-3
7f72431
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7f72431
8f15b9c
* Sat Jul 31 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-3
617a6d6
- Fix scipy build on python-2.7
617a6d6
cc9bd47
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-2
cc9bd47
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
cc9bd47
4e33955
* Thu Jul 1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.2-1
a5f59ef
- New upstream release
4e33955
8f15b9c
* Sun Apr 11 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-3
a5f59ef
- Bump for rebuild against numpy 1.3
f1fe393
f1fe393
* Thu Apr  1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-2
a5f59ef
- Bump for rebuild against numpy 1.4.0
0df300c
1ac1354
* Thu Dec 10 2009 Jon Ciesla <limb@jcomserv.net> - 0.7.1-1
1ac1354
- Update to 0.7.1.
1ac1354
c647525
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-5
c647525
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c647525
939fe3d
* Sun Jun 14  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-4
939fe3d
- Fix for gcc34 weave blitz bug #505379
939fe3d
237f302
* Tue Apr 7  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-3
237f302
- Add f2py requires to prepared for numpy packaging split
237f302
7005ef5
* Sun Mar 1  2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-2
7005ef5
- Patch for stsci image function syntax fix.
7005ef5
873f0a8
* Thu Feb 26 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-1
873f0a8
- Update to final 0.7 release
873f0a8
44bbb29
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-0.3.b1
44bbb29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
44bbb29
0c70af6
* Mon Dec 15 2008 Deji Akingunola <dakingun@gmail.com> - 0.7.0-0.2.b1
0c70af6
- Rebuild for atlas-3.8.2
0c70af6
2552995
* Mon Dec 01 2008  Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-0.1.b1
2552995
- Update to latest beta which lists python 2.6 support
2552995
895adec
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-8
895adec
- Rebuild for Python 2.6
895adec
2a42dbb
* Fri Oct 03 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-7
2a42dbb
- fix the stsci fix
2a42dbb
2a3713a
* Thu Oct 02 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-6
2a3713a
- include missing setup files for stsci module
2a3713a
ea45f09
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.6.0-5
ea45f09
- Autorebuild for GCC 4.3
ea45f09
0eaafac
* Fri Jan 04 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-4
0eaafac
- fix for egg-info file creation
0eaafac
aad8285
* Wed Oct 03 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-3
aad8285
- include_dirs changes for ufsparse change in development
aad8285
aad8285
* Tue Oct 02 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-2
aad8285
- Fix licensing to match Fedora packaging guidance
aad8285
- Remove unnecessary library deps
aad8285
aad8285
* Tue Sep 25 2007 Jarrod Millman <millman@berkeley.edu> - 0.6.0-1
aad8285
- update to new upstream source
aad8285
- update Summary, License, Url, and description
aad8285
- added extra dependencies
aad8285
- remove symlink since Lib has been renamed scipy
aad8285
d298e18
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2.1-1
d298e18
- Update to new upstream source
d298e18
8971371
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-3
8971371
- fix licensing tag and bump for buildid rebuild
8971371
80f1d0c
* Wed Apr 18 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.2
80f1d0c
- go back to using gfortran now that numpy is patched
80f1d0c
2609926
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.1
2609926
- minor correction for f77 usage
2609926
2e6656e
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2
2e6656e
- revert to f77 due to issue with numpy in development
2e6656e
2e6656e
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1.1
2e6656e
- remove arch specific optimizations
2e6656e
e42f289
* Wed Feb 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1
e42f289
- Update for new upstream release
e42f289
6e804cd
* Mon Dec  11 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-5
6e804cd
- Bump for rebuild against python 2.5 in devel tree
6e804cd
ba422bc
* Sun Dec  3 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-4
a5f59ef
- Minor adjustments to specfile for packaging guidelines.
ba422bc
- Changed buildrequires fftw version 3  from fftw2
ba422bc
ba422bc
* Sat Dec  2 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-2
ba422bc
- Updated spec for FE Packaging Guidelines and for upstream version 0.5.1
ba422bc
ba422bc
* Mon May  8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-4
ba422bc
- Add BuildRequires gcc-c++
ba422bc
- Add python-devel
ba422bc
- Add libstdc++
ba422bc
ba422bc
* Mon May  8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
ba422bc
- Add BuildRequires gcc-gfortran
ba422bc
ba422bc
* Sun May  7 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
ba422bc
- Add BuildRequires numpy
ba422bc
ba422bc
ba422bc
* Wed May  3 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-2
ba422bc
- Fix BuildRoot
ba422bc
- Add BuildRequires, Requires
ba422bc
- Test remove d1mach patch
ba422bc
- Fix defattr
ba422bc
- Add changelog
ba422bc
- Removed Prefix, Vendor
ba422bc
- Fix Source0
ba422bc