2011-09-09 07:52:10 +00:00
|
|
|
%global with_python3 1
|
|
|
|
%{?filter_setup:
|
2014-02-20 10:30:15 +00:00
|
|
|
%filter_provides_in %{python2_sitearch}.*\.so$
|
2011-09-09 07:52:10 +00:00
|
|
|
%filter_provides_in %{python3_sitearch}.*\.so$
|
|
|
|
%filter_setup
|
|
|
|
}
|
|
|
|
|
2015-10-14 18:16:32 +00:00
|
|
|
# Set to pre-release version suffix if building pre-release, else %%{nil}
|
2014-05-06 14:54:45 +00:00
|
|
|
%global rcver %{nil}
|
2013-08-29 18:19:23 +00:00
|
|
|
|
2015-10-14 18:16:32 +00:00
|
|
|
Summary: Scientific Tools for Python
|
|
|
|
Name: scipy
|
2015-10-26 16:33:43 +00:00
|
|
|
Version: 0.16.1
|
2015-11-21 11:56:29 +00:00
|
|
|
Release: 6%{?dist}
|
2006-12-07 00:41:53 +00:00
|
|
|
|
2015-11-14 12:07:32 +00:00
|
|
|
Group: Development/Libraries
|
2013-07-30 11:39:21 +00:00
|
|
|
# BSD -- whole package except:
|
|
|
|
# Boost -- scipy/special/cephes/scipy_iv.c
|
|
|
|
# Public Domain -- scipy/odr/__odrpack.c
|
2015-11-14 12:07:32 +00:00
|
|
|
License: BSD and Boost and Public Domain
|
|
|
|
Url: http://www.scipy.org
|
|
|
|
Source0: http://downloads.sourceforge.net/scipy/%{name}-%{version}%{?rcver}.tar.gz
|
|
|
|
Patch0: scipy-0.16.1-ctyptes-test.patch
|
2006-12-07 00:41:53 +00:00
|
|
|
|
2013-09-10 15:32:30 +00:00
|
|
|
BuildRequires: numpy, python2-devel,f2py
|
2013-05-16 01:38:00 +00:00
|
|
|
BuildRequires: fftw-devel, blas-devel, lapack-devel, suitesparse-devel
|
2008-12-16 05:26:37 +00:00
|
|
|
BuildRequires: atlas-devel
|
2007-10-03 23:20:44 +00:00
|
|
|
BuildRequires: gcc-gfortran, swig
|
2015-10-14 18:16:32 +00:00
|
|
|
BuildRequires: qhull-devel
|
2006-12-07 00:41:53 +00:00
|
|
|
|
2011-09-09 07:52:10 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildRequires: python3-numpy, python3-devel, python3-f2py
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-nose
|
|
|
|
%endif
|
2006-12-07 00:41:53 +00:00
|
|
|
|
|
|
|
%description
|
2007-10-03 23:20:44 +00:00
|
|
|
Scipy is open-source software for mathematics, science, and
|
|
|
|
engineering. The core library is NumPy which provides convenient and
|
|
|
|
fast N-dimensional array manipulation. The SciPy library is built to
|
|
|
|
work with NumPy arrays, and provides many user-friendly and efficient
|
|
|
|
numerical routines such as routines for numerical integration and
|
|
|
|
optimization. Together, they run on all popular operating systems, are
|
|
|
|
quick to install, and are free of charge. NumPy and SciPy are easy to
|
|
|
|
use, but powerful enough to be depended upon by some of the world's
|
|
|
|
leading scientists and engineers.
|
2006-12-07 00:41:53 +00:00
|
|
|
|
|
|
|
|
2015-10-14 18:21:01 +00:00
|
|
|
%package -n python2-scipy
|
|
|
|
Summary: Scientific Tools for Python
|
2015-11-14 12:09:48 +00:00
|
|
|
Requires: numpy, f2py
|
2015-10-14 18:21:01 +00:00
|
|
|
%{?python_provide:%python_provide python2-scipy}
|
|
|
|
# General provides of plain 'scipy' in F24
|
2015-10-26 19:18:56 +00:00
|
|
|
Provides: scipy = %{version}-%{release}
|
2015-11-21 11:56:29 +00:00
|
|
|
Provides: scipy%{?_isa} = %{version}-%{release}
|
2015-10-14 18:21:01 +00:00
|
|
|
Obsoletes: scipy <= 0.16.0
|
|
|
|
%description -n python2-scipy
|
|
|
|
Scipy is open-source software for mathematics, science, and
|
|
|
|
engineering. The core library is NumPy which provides convenient and
|
|
|
|
fast N-dimensional array manipulation. The SciPy library is built to
|
|
|
|
work with NumPy arrays, and provides many user-friendly and efficient
|
|
|
|
numerical routines such as routines for numerical integration and
|
|
|
|
optimization. Together, they run on all popular operating systems, are
|
|
|
|
quick to install, and are free of charge. NumPy and SciPy are easy to
|
|
|
|
use, but powerful enough to be depended upon by some of the world's
|
|
|
|
leading scientists and engineers.
|
|
|
|
|
|
|
|
|
2011-09-09 07:52:10 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-scipy
|
2015-11-14 12:07:32 +00:00
|
|
|
Summary: Scientific Tools for Python
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: BSD and LGPLv2+
|
|
|
|
Requires: python3-numpy, python3-f2py
|
2015-10-14 18:21:01 +00:00
|
|
|
%{?python_provide:%python_provide python3-scipy}
|
2011-09-09 07:52:10 +00:00
|
|
|
%description -n python3-scipy
|
|
|
|
Scipy is open-source software for mathematics, science, and
|
|
|
|
engineering. The core library is NumPy which provides convenient and
|
|
|
|
fast N-dimensional array manipulation. The SciPy library is built to
|
|
|
|
work with NumPy arrays, and provides many user-friendly and efficient
|
|
|
|
numerical routines such as routines for numerical integration and
|
|
|
|
optimization. Together, they run on all popular operating systems, are
|
|
|
|
quick to install, and are free of charge. NumPy and SciPy are easy to
|
|
|
|
use, but powerful enough to be depended upon by some of the world's
|
|
|
|
leading scientists and engineers.
|
|
|
|
|
|
|
|
%endif # with _python3
|
|
|
|
|
|
|
|
%prep
|
2013-08-29 18:19:23 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?rcver}
|
2007-10-03 23:20:44 +00:00
|
|
|
cat > site.cfg << EOF
|
2011-09-09 07:52:10 +00:00
|
|
|
|
2007-10-03 23:20:44 +00:00
|
|
|
[amd]
|
|
|
|
library_dirs = %{_libdir}
|
2013-05-16 01:38:00 +00:00
|
|
|
include_dirs = /usr/include/suitesparse
|
2007-10-03 23:20:44 +00:00
|
|
|
amd_libs = amd
|
|
|
|
|
|
|
|
[umfpack]
|
|
|
|
library_dirs = %{_libdir}
|
2013-05-16 01:38:00 +00:00
|
|
|
include_dirs = /usr/include/suitesparse
|
2007-10-03 23:20:44 +00:00
|
|
|
umfpack_libs = umfpack
|
|
|
|
EOF
|
2006-12-07 00:41:53 +00:00
|
|
|
|
2015-11-14 12:05:41 +00:00
|
|
|
%patch0 -p1
|
|
|
|
|
2008-10-02 17:22:00 +00:00
|
|
|
|
2006-12-07 00:41:53 +00:00
|
|
|
%build
|
2011-09-09 07:52:10 +00:00
|
|
|
%if 0%{?with_python3}
|
2015-10-14 18:16:32 +00:00
|
|
|
env CFLAGS="$RPM_OPT_FLAGS" \
|
2015-10-14 20:02:51 +00:00
|
|
|
FFLAGS="$RPM_OPT_FLAGS -fPIC" \
|
2015-10-14 18:16:32 +00:00
|
|
|
ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
|
|
|
|
%__python3 setup.py config_fc \
|
|
|
|
--fcompiler=gnu95 --noarch build
|
2011-09-09 07:52:10 +00:00
|
|
|
%endif # with _python3
|
|
|
|
|
2015-10-14 18:16:32 +00:00
|
|
|
env CFLAGS="$RPM_OPT_FLAGS" \
|
2015-10-14 20:02:51 +00:00
|
|
|
FFLAGS="$RPM_OPT_FLAGS -fPIC" \
|
2015-10-14 18:16:32 +00:00
|
|
|
ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
|
|
|
|
%__python2 setup.py config_fc \
|
|
|
|
--fcompiler=gnu95 --noarch build
|
2007-04-14 11:47:08 +00:00
|
|
|
|
2006-12-07 00:41:53 +00:00
|
|
|
|
2011-09-09 07:52:10 +00:00
|
|
|
|
2006-12-07 00:41:53 +00:00
|
|
|
%install
|
2011-09-09 07:52:10 +00:00
|
|
|
# first install python3 so the binaries are overwritten by the python2 ones
|
|
|
|
%if 0%{?with_python3}
|
2015-10-14 18:16:32 +00:00
|
|
|
env CFLAGS="$RPM_OPT_FLAGS" \
|
2015-11-14 16:08:21 +00:00
|
|
|
FFLAGS="$RPM_OPT_FLAGS -fPIC" \
|
2015-10-14 18:16:32 +00:00
|
|
|
ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
|
|
|
|
%__python3 setup.py install --root=$RPM_BUILD_ROOT
|
2011-09-09 07:52:10 +00:00
|
|
|
%endif # with_python3
|
|
|
|
|
2015-10-14 18:16:32 +00:00
|
|
|
env CFLAGS="$RPM_OPT_FLAGS" \
|
2015-11-14 16:08:21 +00:00
|
|
|
FFLAGS="$RPM_OPT_FLAGS -fPIC" \
|
2015-10-14 18:16:32 +00:00
|
|
|
ATLAS=%{_libdir}/atlas FFTW=%{_libdir} BLAS=%{_libdir} LAPACK=%{_libdir} \
|
|
|
|
%__python2 setup.py install --root=$RPM_BUILD_ROOT
|
2006-12-07 00:41:53 +00:00
|
|
|
|
|
|
|
|
2011-04-01 16:17:52 +00:00
|
|
|
%check
|
2011-09-09 07:52:10 +00:00
|
|
|
%if 0%{?with_python3}
|
2015-10-14 18:16:32 +00:00
|
|
|
mkdir test3
|
|
|
|
cd test3
|
|
|
|
PYTHONPATH=$RPM_BUILD_ROOT%{python3_sitearch} \
|
2015-11-15 00:01:14 +00:00
|
|
|
%__python3 -c "import scipy; scipy.test('full', verbose=2)"
|
2011-09-09 07:52:10 +00:00
|
|
|
%endif # with_python3
|
|
|
|
|
2015-10-14 18:16:32 +00:00
|
|
|
mkdir test2
|
|
|
|
cd test2
|
|
|
|
PYTHONPATH=$RPM_BUILD_ROOT%{python2_sitearch} \
|
2015-11-15 00:01:14 +00:00
|
|
|
%__python2 -c "import scipy; scipy.test('full', verbose=2)"
|
2011-04-01 16:17:52 +00:00
|
|
|
|
|
|
|
|
2015-10-14 18:21:01 +00:00
|
|
|
%files -n python2-scipy
|
2006-12-07 00:41:53 +00:00
|
|
|
%doc LICENSE.txt
|
2014-02-20 10:30:15 +00:00
|
|
|
%{python2_sitearch}/scipy
|
|
|
|
%{python2_sitearch}/*.egg-info
|
2006-12-07 00:41:53 +00:00
|
|
|
|
|
|
|
|
2011-09-09 07:52:10 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-scipy
|
|
|
|
%doc LICENSE.txt
|
|
|
|
%{python3_sitearch}/scipy
|
|
|
|
%{python3_sitearch}/*.egg-info
|
|
|
|
%endif # with_python3
|
2006-12-07 00:41:53 +00:00
|
|
|
|
|
|
|
%changelog
|
2015-11-21 11:56:29 +00:00
|
|
|
* Sat Nov 21 2015 Kalev Lember <klember@redhat.com> - 0.16.1-6
|
|
|
|
- Add provides to satisfy scipy%%{_isa} requires in other packages
|
|
|
|
|
2015-11-15 00:01:14 +00:00
|
|
|
* Sun Nov 15 2015 Björn Esser <fedora@besser82.io> - 0.16.1-5
|
|
|
|
- Revert "Discard results of testsuite on %%{arm} for now"
|
|
|
|
|
2015-11-14 17:54:50 +00:00
|
|
|
* Sat Nov 14 2015 Björn Esser <besser82@fedoraproject.org> - 0.16.1-4
|
|
|
|
- Discard results of testsuite on %%{arm} for now
|
|
|
|
Segfaults on non-aligned memory test (expected for arm)
|
|
|
|
|
2015-11-14 12:05:41 +00:00
|
|
|
* Sat Nov 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.1-3
|
|
|
|
- Add patch to fix ctypes test
|
2015-11-14 12:09:48 +00:00
|
|
|
- Move requires to correct python2 subpackage
|
2015-11-14 16:08:21 +00:00
|
|
|
- Add FFLAGS also in %%install
|
2015-11-14 12:05:41 +00:00
|
|
|
|
2015-11-10 18:06:57 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-26 16:33:43 +00:00
|
|
|
* Mon Oct 26 2015 Orion Poplawski <orion@cora.nwra.com> - 0.16.1-1
|
|
|
|
- Update to 0.16.1
|
|
|
|
|
2015-10-14 18:16:32 +00:00
|
|
|
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 0.16.0-1
|
|
|
|
- Update to 0.16.0
|
2015-10-14 18:21:01 +00:00
|
|
|
- Use python_provide macro
|
2015-10-14 18:16:32 +00:00
|
|
|
|
2015-06-19 00:28:25 +00:00
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-01 02:52:56 +00:00
|
|
|
* Tue Mar 31 2015 Orion Poplawski <orion@cora.nwra.com> - 0.15.1-1
|
|
|
|
- Update to 0.15.1
|
|
|
|
|
2015-01-04 18:08:24 +00:00
|
|
|
* Sun Jan 4 2015 Orion Poplawski <orion@cora.nwra.com> - 0.14.1-1
|
|
|
|
- Update to 0.14.1
|
|
|
|
|
2014-08-20 23:31:15 +00:00
|
|
|
* Wed Aug 20 2014 Kevin Fenzi <kevin@scrye.com> - 0.14.0-5
|
|
|
|
- Rebuild for rpm bug 1131892
|
|
|
|
|
2014-08-18 01:41:09 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-08 05:57:31 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-11 02:32:09 +00:00
|
|
|
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-2
|
|
|
|
- Rebuild with Python 3.4
|
|
|
|
|
2014-05-06 14:54:45 +00:00
|
|
|
* Tue May 6 2014 Orion Poplawski <orion@cora.nwra.com> - 0.14-1
|
|
|
|
- Update to 0.14
|
|
|
|
- Do not use system python-six (bug #1046817)
|
|
|
|
|
2014-02-20 10:30:15 +00:00
|
|
|
* Thu Feb 20 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-2
|
|
|
|
- use python2 macros everywhere (Requested by Han Boetes)
|
|
|
|
|
2014-02-04 14:01:31 +00:00
|
|
|
* Tue Feb 4 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.13.3-1
|
|
|
|
- Update to 0.13.3
|
|
|
|
|
2013-12-09 16:08:46 +00:00
|
|
|
* Mon Dec 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.2-1
|
|
|
|
- Update to 0.13.2
|
|
|
|
|
2013-12-06 09:38:42 +00:00
|
|
|
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 0.13.1-2
|
|
|
|
- rebuild (suitesparse)
|
|
|
|
|
2013-11-17 20:24:52 +00:00
|
|
|
* Sun Nov 17 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.1-1
|
|
|
|
- Update to 0.13.1
|
|
|
|
|
2013-10-23 07:54:33 +00:00
|
|
|
* Wed Oct 23 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-2
|
|
|
|
- Update to 0.13.0 final
|
|
|
|
|
2013-10-15 22:43:42 +00:00
|
|
|
* Tue Oct 15 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.4.rc1
|
|
|
|
- Update to 0.13.0rc1
|
|
|
|
|
2013-10-01 14:17:10 +00:00
|
|
|
* Tue Oct 01 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.13.0-0.3.b1
|
|
|
|
- rebuilt with atlas 3.10
|
|
|
|
|
2013-09-10 15:32:30 +00:00
|
|
|
* Mon Sep 9 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.2.b1
|
|
|
|
- Unbundle python-six (bug #1005350)
|
|
|
|
|
2013-08-29 18:19:23 +00:00
|
|
|
* Thu Aug 29 2013 Orion Poplwski <orion@cora.nwra.com> - 0.13.0-0.1.b1
|
|
|
|
- Update to 0.13.0b1
|
|
|
|
- Drop patches applied upstream
|
|
|
|
- Fixup changelog and summary
|
|
|
|
|
2013-08-04 13:49:44 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-10-23 07:53:40 +00:00
|
|
|
* Tue Jul 30 2013 Tomas Tomecek <ttomecek@redhat.com> - 0.12.0-4
|
|
|
|
- Fix rpmlint warnings
|
|
|
|
- License update
|
|
|
|
- Add patch to use build_dir argument in build_extension
|
2013-05-16 01:38:00 +00:00
|
|
|
|
2013-08-29 18:19:23 +00:00
|
|
|
* Wed May 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-3
|
|
|
|
- Remove old ufsparse references, use suitesparse
|
|
|
|
- Spec cleanup
|
|
|
|
|
2013-04-15 23:42:13 +00:00
|
|
|
* Mon Apr 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-2
|
|
|
|
- Add patch to fix segfaul in test of sgeqrf
|
|
|
|
|
2013-04-10 17:12:26 +00:00
|
|
|
* Wed Apr 10 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-1
|
|
|
|
- Update to 0.12.0 final
|
|
|
|
- No longer remove weave from python3 build
|
|
|
|
|
2013-02-17 04:02:32 +00:00
|
|
|
* Sat Feb 16 2013 Orion Poplawski <orion@cora.nwra.com> - 0.12.0-0.1.b1
|
|
|
|
- Update to 0.12.0b1
|
|
|
|
- Drop upstreamed linalg patch
|
|
|
|
|
2013-02-14 04:28:10 +00:00
|
|
|
* Wed Feb 13 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-4
|
|
|
|
- Add patch from upstream to fix python3.3 issues in linalg routines
|
|
|
|
|
2013-02-13 05:12:56 +00:00
|
|
|
* Tue Feb 12 2013 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-3
|
|
|
|
- Disable python3 tests for now
|
|
|
|
|
2012-10-08 19:37:18 +00:00
|
|
|
* Mon Oct 8 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-2
|
|
|
|
- Add requires python3-numpy, python3-f2py for python3-scipy (bug 863755)
|
|
|
|
|
2012-10-01 01:47:25 +00:00
|
|
|
* Sun Sep 30 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-1
|
|
|
|
- Update to 0.11.0 final
|
|
|
|
|
2012-08-23 16:41:29 +00:00
|
|
|
* Thu Aug 23 2012 Orion Poplawski <orion@cora.nwra.com> - 0.11.0-0.1.rc2
|
|
|
|
- Update to 0.11.0rc2
|
|
|
|
|
2012-08-06 15:56:27 +00:00
|
|
|
* Mon Aug 6 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-4
|
|
|
|
- Rebuild for python 3.3
|
|
|
|
|
2012-08-03 16:31:33 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 0.10.1-3
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-21 19:07:48 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-16 21:55:16 +00:00
|
|
|
* Fri Mar 16 2012 Orion Poplawski <orion@cora.nwra.com> - 0.10.1-1
|
|
|
|
- Update to 0.10.1
|
|
|
|
|
2012-01-14 03:40:17 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-14 18:22:35 +00:00
|
|
|
* Mon Nov 14 2011 Orion Poplawski <orion@cora.nwra.com> - 0.10.0-1
|
|
|
|
- Update to 0.10.0
|
|
|
|
|
2011-09-09 07:52:10 +00:00
|
|
|
* Sat Sep 3 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.9.0-2
|
|
|
|
- little cosmetic changes
|
|
|
|
- filter provides in python_sitearch
|
|
|
|
|
|
|
|
* Fri Sep 02 2011 Andrew McNabb <amcnabb@mcnabbs.org>
|
|
|
|
- add python3 subpackage
|
|
|
|
|
2011-04-01 16:17:52 +00:00
|
|
|
* Fri Apr 1 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.0-1
|
|
|
|
- Update to 0.9.0
|
|
|
|
- Drop all stsci sources and patches, dropped from upstream
|
|
|
|
- Drop gcc and py27 patches fixed upstream
|
|
|
|
- Add %%check section to run tests
|
|
|
|
|
2011-02-09 12:22:05 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2013-07-22 13:03:05 +00:00
|
|
|
* Sat Jul 31 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-3
|
2010-07-31 15:59:56 +00:00
|
|
|
- Fix scipy build on python-2.7
|
|
|
|
|
2010-07-22 06:27:16 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-01 21:47:19 +00:00
|
|
|
* Thu Jul 1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.2-1
|
2013-07-22 12:59:33 +00:00
|
|
|
- New upstream release
|
2010-07-01 21:47:19 +00:00
|
|
|
|
2013-07-22 13:03:05 +00:00
|
|
|
* Sun Apr 11 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-3
|
2013-07-22 12:59:33 +00:00
|
|
|
- Bump for rebuild against numpy 1.3
|
2010-04-13 04:34:23 +00:00
|
|
|
|
|
|
|
* Thu Apr 1 2010 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.1-2
|
2013-07-22 12:59:33 +00:00
|
|
|
- Bump for rebuild against numpy 1.4.0
|
2010-04-01 22:56:49 +00:00
|
|
|
|
2009-12-11 16:43:13 +00:00
|
|
|
* Thu Dec 10 2009 Jon Ciesla <limb@jcomserv.net> - 0.7.1-1
|
|
|
|
- Update to 0.7.1.
|
|
|
|
|
2009-07-27 03:58:20 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-14 23:06:57 +00:00
|
|
|
* Sun Jun 14 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-4
|
|
|
|
- Fix for gcc34 weave blitz bug #505379
|
|
|
|
|
2009-04-07 17:57:50 +00:00
|
|
|
* Tue Apr 7 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-3
|
|
|
|
- Add f2py requires to prepared for numpy packaging split
|
|
|
|
|
2009-03-02 02:10:30 +00:00
|
|
|
* Sun Mar 1 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-2
|
|
|
|
- Patch for stsci image function syntax fix.
|
|
|
|
|
2009-02-26 23:56:30 +00:00
|
|
|
* Thu Feb 26 2009 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-1
|
|
|
|
- Update to final 0.7 release
|
|
|
|
|
2009-02-25 23:21:24 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-0.3.b1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-16 05:26:37 +00:00
|
|
|
* Mon Dec 15 2008 Deji Akingunola <dakingun@gmail.com> - 0.7.0-0.2.b1
|
|
|
|
- Rebuild for atlas-3.8.2
|
|
|
|
|
2008-12-02 00:34:06 +00:00
|
|
|
* Mon Dec 01 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.7.0-0.1.b1
|
|
|
|
- Update to latest beta which lists python 2.6 support
|
|
|
|
|
2008-11-29 17:21:09 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-8
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-10-03 18:22:16 +00:00
|
|
|
* Fri Oct 03 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-7
|
|
|
|
- fix the stsci fix
|
|
|
|
|
2008-10-02 17:22:00 +00:00
|
|
|
* Thu Oct 02 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-6
|
|
|
|
- include missing setup files for stsci module
|
|
|
|
|
2008-02-19 07:28:07 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.6.0-5
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-05 00:54:57 +00:00
|
|
|
* Fri Jan 04 2008 Jef Spaleta <jspaleta@fedoraproject.org> - 0.6.0-4
|
|
|
|
- fix for egg-info file creation
|
|
|
|
|
2007-10-03 23:20:44 +00:00
|
|
|
* Wed Oct 03 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-3
|
|
|
|
- include_dirs changes for ufsparse change in development
|
|
|
|
|
|
|
|
* Tue Oct 02 2007 Jef Spaleta <jspaleta@gmail.com> - 0.6.0-2
|
|
|
|
- Fix licensing to match Fedora packaging guidance
|
|
|
|
- Remove unnecessary library deps
|
|
|
|
|
|
|
|
* Tue Sep 25 2007 Jarrod Millman <millman@berkeley.edu> - 0.6.0-1
|
|
|
|
- update to new upstream source
|
|
|
|
- update Summary, License, Url, and description
|
|
|
|
- added extra dependencies
|
|
|
|
- remove symlink since Lib has been renamed scipy
|
|
|
|
|
2007-08-22 07:43:30 +00:00
|
|
|
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2.1-1
|
|
|
|
- Update to new upstream source
|
|
|
|
|
2007-08-22 06:19:04 +00:00
|
|
|
* Tue Aug 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-3
|
|
|
|
- fix licensing tag and bump for buildid rebuild
|
|
|
|
|
2007-04-19 00:33:54 +00:00
|
|
|
* Wed Apr 18 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.2
|
|
|
|
- go back to using gfortran now that numpy is patched
|
|
|
|
|
2007-04-14 18:58:42 +00:00
|
|
|
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2.1
|
|
|
|
- minor correction for f77 usage
|
|
|
|
|
2007-04-14 11:47:08 +00:00
|
|
|
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-2
|
|
|
|
- revert to f77 due to issue with numpy in development
|
|
|
|
|
|
|
|
* Sat Apr 14 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1.1
|
|
|
|
- remove arch specific optimizations
|
|
|
|
|
2007-02-23 05:18:15 +00:00
|
|
|
* Wed Feb 21 2007 Jef Spaleta <jspaleta@gmail.com> - 0.5.2-1
|
|
|
|
- Update for new upstream release
|
|
|
|
|
2006-12-12 05:15:37 +00:00
|
|
|
* Mon Dec 11 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-5
|
|
|
|
- Bump for rebuild against python 2.5 in devel tree
|
|
|
|
|
2006-12-07 00:41:53 +00:00
|
|
|
* Sun Dec 3 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-4
|
2013-07-22 12:59:33 +00:00
|
|
|
- Minor adjustments to specfile for packaging guidelines.
|
2006-12-07 00:41:53 +00:00
|
|
|
- Changed buildrequires fftw version 3 from fftw2
|
|
|
|
|
|
|
|
* Sat Dec 2 2006 Jef Spaleta <jspaleta@gmail.com> - 0.5.1-2
|
|
|
|
- Updated spec for FE Packaging Guidelines and for upstream version 0.5.1
|
|
|
|
|
|
|
|
* Mon May 8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-4
|
|
|
|
- Add BuildRequires gcc-c++
|
|
|
|
- Add python-devel
|
|
|
|
- Add libstdc++
|
|
|
|
|
|
|
|
* Mon May 8 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
|
|
|
|
- Add BuildRequires gcc-gfortran
|
|
|
|
|
|
|
|
* Sun May 7 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-3
|
|
|
|
- Add BuildRequires numpy
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 3 2006 Neal Becker <ndbecker2@gmail.com> - 0.4.8-2
|
|
|
|
- Fix BuildRoot
|
|
|
|
- Add BuildRequires, Requires
|
|
|
|
- Test remove d1mach patch
|
|
|
|
- Fix defattr
|
|
|
|
- Add changelog
|
|
|
|
- Removed Prefix, Vendor
|
|
|
|
- Fix Source0
|
|
|
|
|