2016-04-09 12:08:21 +00:00
|
|
|
%global srcname pandas
|
|
|
|
|
2015-05-29 20:42:23 +00:00
|
|
|
%if 0%{?fedora}
|
2016-04-09 12:08:21 +00:00
|
|
|
%bcond_without python3
|
|
|
|
%else
|
|
|
|
%bcond_with python3
|
2015-05-29 20:42:23 +00:00
|
|
|
%endif
|
2012-08-30 06:53:02 +00:00
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
Name: python-%{srcname}
|
2016-03-30 08:52:30 +00:00
|
|
|
Version: 0.18.0
|
2016-04-09 13:58:46 +00:00
|
|
|
Release: 3%{?dist}
|
2012-08-30 06:53:02 +00:00
|
|
|
Summary: Python library providing high-performance data analysis tools
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: http://pandas.pydata.org/
|
2016-04-09 12:08:21 +00:00
|
|
|
Source0: http://pypi.python.org/packages/source/p/pandas/%{srcname}-%{version}.tar.gz
|
|
|
|
|
|
|
|
%global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\\.so$
|
|
|
|
|
|
|
|
%description
|
|
|
|
pandas is an open source, BSD-licensed library providing
|
|
|
|
high-performance, easy-to-use data structures and data
|
|
|
|
analysis tools for the Python programming language.
|
|
|
|
|
|
|
|
%package -n python2-%{srcname}
|
|
|
|
Summary: Python library providing high-performance data analysis tools
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python2-setuptools
|
|
|
|
BuildRequires: python2-matplotlib
|
|
|
|
BuildRequires: python2-Cython
|
|
|
|
Requires: python2-pytz
|
|
|
|
Requires: python2-dateutil
|
|
|
|
Requires: python2-numpy
|
|
|
|
Requires: python2-scipy
|
2016-04-09 13:58:46 +00:00
|
|
|
# TODO: fix that package to provide python2-tables
|
|
|
|
Requires: python-tables
|
2016-04-09 12:08:21 +00:00
|
|
|
Requires: python2-matplotlib
|
|
|
|
Requires: python2-Bottleneck
|
|
|
|
Requires: python2-numexpr
|
2016-01-03 12:30:21 +00:00
|
|
|
%if 0%{?fedora}
|
2016-04-09 12:08:21 +00:00
|
|
|
Recommends: python2-xlrd
|
|
|
|
Recommends: python2-xlwt
|
2016-01-03 12:30:21 +00:00
|
|
|
%endif
|
2016-03-30 08:52:30 +00:00
|
|
|
|
|
|
|
%{?python_provide:%python_provide python2-%{srcname}}
|
2015-10-28 20:03:27 +00:00
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
%description -n python2-%{srcname}
|
|
|
|
pandas is an open source, BSD-licensed library providing
|
|
|
|
high-performance, easy-to-use data structures and data
|
2012-08-30 06:53:02 +00:00
|
|
|
analysis tools for the Python programming language.
|
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
Python 2 version.
|
|
|
|
|
2014-04-04 06:04:44 +00:00
|
|
|
%if 0%{?with_python3}
|
2016-04-09 12:08:21 +00:00
|
|
|
%package -n python3-%{srcname}
|
2014-04-04 06:04:44 +00:00
|
|
|
Summary: Python library providing high-performance data analysis tools
|
2016-04-09 12:08:21 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-matplotlib
|
2014-04-04 06:04:44 +00:00
|
|
|
BuildRequires: python3-Cython
|
|
|
|
Requires: python3-pytz
|
2015-01-20 12:28:00 +00:00
|
|
|
Requires: python3-dateutil
|
2014-04-04 06:04:44 +00:00
|
|
|
Requires: python3-numpy
|
|
|
|
Requires: python3-scipy
|
|
|
|
Requires: python3-tables
|
|
|
|
Requires: python3-matplotlib
|
|
|
|
Requires: python3-Bottleneck
|
|
|
|
Requires: python3-numexpr
|
2016-01-03 12:30:21 +00:00
|
|
|
%if 0%{?fedora}
|
|
|
|
Recommends: python3-xlrd
|
2016-03-30 08:52:30 +00:00
|
|
|
Recommends: python3-xlwt
|
2016-01-03 12:30:21 +00:00
|
|
|
%endif
|
2014-04-04 06:04:44 +00:00
|
|
|
|
2016-03-30 08:52:30 +00:00
|
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
%description -n python3-%{srcname}
|
|
|
|
pandas is an open source, BSD-licensed library providing
|
|
|
|
high-performance, easy-to-use data structures and data
|
2014-04-04 06:04:44 +00:00
|
|
|
analysis tools for the Python programming language.
|
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
Python 3 version.
|
2014-04-04 06:04:44 +00:00
|
|
|
%endif # with_python3
|
|
|
|
|
2012-08-30 06:53:02 +00:00
|
|
|
%prep
|
2016-04-09 12:08:21 +00:00
|
|
|
%autosetup -n %{srcname}-%{version}
|
2015-03-24 10:23:45 +00:00
|
|
|
|
2014-04-04 06:04:44 +00:00
|
|
|
%build
|
2015-10-28 20:03:27 +00:00
|
|
|
%py2_build
|
2012-08-30 06:53:02 +00:00
|
|
|
|
2014-04-04 06:04:44 +00:00
|
|
|
%if 0%{?with_python3}
|
2015-10-28 20:03:27 +00:00
|
|
|
%py3_build
|
2014-04-04 06:04:44 +00:00
|
|
|
%endif # with_python3
|
2012-08-30 06:53:02 +00:00
|
|
|
|
2014-04-04 06:04:44 +00:00
|
|
|
%install
|
2016-04-09 12:08:21 +00:00
|
|
|
%py2_install
|
|
|
|
|
2014-04-04 06:04:44 +00:00
|
|
|
%if 0%{?with_python3}
|
2015-10-28 20:03:27 +00:00
|
|
|
%py3_install
|
2014-04-04 06:04:44 +00:00
|
|
|
%endif # with_python3
|
2012-08-30 06:53:02 +00:00
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
%files -n python2-%{srcname}
|
2015-03-24 10:23:45 +00:00
|
|
|
%doc RELEASE.md
|
|
|
|
%license LICENSE
|
2016-04-09 12:08:21 +00:00
|
|
|
%{python2_sitearch}/%{srcname}*
|
2014-04-04 06:04:44 +00:00
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-pandas
|
2015-03-24 10:23:45 +00:00
|
|
|
%doc RELEASE.md
|
|
|
|
%license LICENSE
|
2016-04-09 12:08:21 +00:00
|
|
|
%{python3_sitearch}/%{srcname}*
|
2014-04-04 06:04:44 +00:00
|
|
|
%endif # with_python3
|
|
|
|
|
2012-08-30 06:53:02 +00:00
|
|
|
%changelog
|
2016-04-09 13:58:46 +00:00
|
|
|
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.18.0-3
|
|
|
|
- Fix broken deps
|
|
|
|
|
2016-04-09 12:08:21 +00:00
|
|
|
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.18.0-2
|
|
|
|
- Fix python_provide macros usage (FTBFS for some packages)
|
|
|
|
|
2016-03-30 08:52:30 +00:00
|
|
|
* Wed Mar 30 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.18.0-1
|
|
|
|
- New upstream version (0.18.0)
|
|
|
|
|
2016-02-04 20:24:28 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-03 12:30:21 +00:00
|
|
|
* Sun Jan 03 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.17.1-1
|
|
|
|
- New upstream version (0.17.1)
|
|
|
|
- Add new dependecy as weak dep (fixes bz #1288919)
|
|
|
|
|
2015-11-10 16:36:44 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-28 20:03:27 +00:00
|
|
|
* Wed Oct 28 2015 Orion Poplawski <orion@cora.nwra.com> - 0.17.0-2
|
|
|
|
- Use common build directory, new python macros
|
|
|
|
- Filter provides
|
|
|
|
- Fix provides
|
|
|
|
|
2015-10-12 16:11:51 +00:00
|
|
|
* Mon Oct 12 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.17.0-1
|
|
|
|
- New release of pandas 0.17.0
|
|
|
|
|
2015-06-18 20:11:27 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-15 09:03:36 +00:00
|
|
|
* Mon Jun 15 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.2-1
|
|
|
|
- New release of pandas 0.16.2
|
|
|
|
|
2015-05-18 14:41:11 +00:00
|
|
|
* Mon May 18 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.1-1
|
|
|
|
- New release of pandas 0.16.1
|
|
|
|
|
2015-05-02 15:00:09 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.16.0-2
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-03-24 10:23:45 +00:00
|
|
|
* Tue Mar 24 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.0-1
|
|
|
|
- New release of pandas 0.16.0
|
|
|
|
- Use license macro
|
2015-05-18 14:41:11 +00:00
|
|
|
- Don't use py3dir (new python guidelines)
|
2015-03-24 10:23:45 +00:00
|
|
|
|
2015-01-20 12:28:00 +00:00
|
|
|
* Tue Jan 20 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-3
|
|
|
|
- Pandas actually supports dateutil 2
|
|
|
|
|
2015-01-19 23:13:37 +00:00
|
|
|
* Mon Jan 19 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-2
|
2015-01-20 12:28:00 +00:00
|
|
|
- Update dependency on dateutil to dateutil15 (bz #1183368)
|
2015-01-19 23:13:37 +00:00
|
|
|
|
2014-12-16 23:21:52 +00:00
|
|
|
* Wed Dec 17 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-1
|
|
|
|
- New release of pandas 0.15.2
|
|
|
|
|
2014-11-20 22:16:00 +00:00
|
|
|
* Thu Nov 20 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.1-1
|
|
|
|
- New release of pandas 0.15.1
|
|
|
|
|
2014-10-20 09:15:46 +00:00
|
|
|
* Mon Oct 20 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.0-1
|
|
|
|
- New release of pandas 0.15.0
|
|
|
|
|
2014-08-17 21:30:23 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-13 21:43:10 +00:00
|
|
|
* Sun Jul 13 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.14.1-1
|
|
|
|
- New release of pandas 0.14.1
|
|
|
|
|
2014-06-17 12:06:00 +00:00
|
|
|
* Mon Jun 16 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.14.0-1
|
|
|
|
- New release of pandas 0.14.0
|
|
|
|
|
2014-06-07 21:53:57 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-16 14:20:06 +00:00
|
|
|
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.12.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-04-04 06:04:44 +00:00
|
|
|
* Tue Jan 28 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.12.0-4
|
|
|
|
- Enable python3 build
|
|
|
|
- Set CFLAGS before build
|
|
|
|
|
2013-12-11 09:12:09 +00:00
|
|
|
* Fri Dec 13 2013 Kushal Das <kushal@fedoraproject.org> 0.12.0-3
|
|
|
|
- Fixed dependency name
|
|
|
|
|
2013-12-06 08:47:43 +00:00
|
|
|
* Fri Dec 06 2013 Pierre-Yves Chibon <pingou@pingoured>fr - 0.12.0-2
|
|
|
|
- Change BR from python-setuptools-devel to python-setuptools
|
|
|
|
See https://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
|
|
|
|
|
2013-09-23 10:28:26 +00:00
|
|
|
* Fri Sep 20 2013 Kushal Das <kushal@fedoraproject.org> 0.12.0-1
|
|
|
|
- New release of pandas 0.12.0
|
|
|
|
|
2013-08-04 08:53:08 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 20:01:38 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-24 09:47:10 +00:00
|
|
|
* Mon Dec 24 2012 Kushal Das <kushal@fedoraproject.org> 0.10.0-1
|
|
|
|
- New release of pandas 0.10.0
|
|
|
|
|
|
|
|
* Thu Nov 08 2012 Kushal Das <kushal@fedoraproject.org> 0.10.0-1
|
|
|
|
- New release of pandas 0.10.0
|
|
|
|
|
2012-11-08 06:49:11 +00:00
|
|
|
* Thu Nov 08 2012 Kushal Das <kushal@fedoraproject.org> 0.9-1
|
|
|
|
- New release of pandas
|
|
|
|
|
2012-08-30 06:53:02 +00:00
|
|
|
* Fri Aug 03 2012 Kushal Das <kushal@fedoraproject.org> 0.8.1-2
|
|
|
|
- Fixes from review request
|
|
|
|
|
|
|
|
* Tue Jul 10 2012 Kushal Das <kushal@fedoraproject.org> 0.8.1-1
|
|
|
|
- Initial release in Fedora
|
|
|
|
|