File python-pandas.spec of Package python-pandas
#
# spec file for package python-pandas
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define modname pandas
Name: python-%{modname}
Version: 0.14.1
Release: 0
Summary: Make working with "relational" or "labeled" data both easy and intuitive
License: BSD-3-Clause
Group: Development/Libraries/Python
Url: http://pandas.pydata.org/
Source0: https://pypi.python.org/packages/source/p/pandas/%{modname}-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-Bottleneck
BuildRequires: python-Cython
BuildRequires: python-Sphinx
BuildRequires: python-beautifulsoup4
BuildRequires: python-boto
BuildRequires: python-dateutil
BuildRequires: python-devel
BuildRequires: python-html5lib
BuildRequires: python-lxml
BuildRequires: python-matplotlib
BuildRequires: python-numexpr
BuildRequires: python-numpy-devel
BuildRequires: python-openpyxl
BuildRequires: python-pytz
BuildRequires: python-scipy
BuildRequires: python-setuptools
BuildRequires: python-SQLAlchemy
BuildRequires: python-tables
BuildRequires: python-xlrd
BuildRequires: python-xlwt
Requires: python-dateutil
Requires: python-numpy
Requires: python-pytz
Recommends: python-Bottleneck
Recommends: python-beautifulsoup4
Recommends: python-boto
Recommends: python-html5lib
Recommends: python-lxml
Recommends: python-matplotlib
Recommends: python-numexpr
Recommends: python-openpyxl
Recommends: python-scipy
Recommends: python-SQLAlchemy
Recommends: python-statsmodels
Recommends: python-tables
Recommends: python-xlrd
Recommends: python-xlwt
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%endif
%description
pandas is a Python package providing fast, flexible, and expressive data
structures designed to make working with "relational" or "labeled" data both
easy and intuitive. It aims to be the fundamental high-level building block for
doing practical, real world data analysis in Python. Additionally, it has
the broader goal of becoming the most powerful and flexible open source data
analysis / manipulation tool available in any language.
%package doc
Summary: Documentation for %{name}
Group: Development/Libraries/Python
Recommends: %{name} = %{version}
%description doc
Documentation, help files, and examples for %{name}
%prep
%setup -q -n pandas-%{version}
%build
CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build
%install
python setup.py install --root %{buildroot} --prefix=%{_prefix}
pushd doc
python make.py html
popd
rm -r %{buildroot}%{python_sitearch}/pandas/tests
%fdupes %{buildroot}%{python_sitearch}
# Fix python-bytecode-inconsistent-mtime
pushd %{buildroot}%{python_sitearch}
%py_compile .
popd
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc LICENSE doc/README.rst RELEASE.md
%{python_sitearch}/%{modname}
%{python_sitearch}/%{modname}-%{version}-py%{py_ver}.egg-info
%files doc
%defattr(-,root,root)
%doc doc/build/html/
%doc examples
%changelog