python-Bottleneck/python-Bottleneck.spec
Stephan Kulow 61fdbea336 Accepting request 241240 from devel:languages:python
I intend to submit python-pandas to openSUSE:Factory.  python-pandas is a tool that makes it easy to do complex data import, export, and manipulation.  It has become one of the critical tools for data analysis in python, like python-numpy, python-scipy, python-matplotlib, and IPython (all of which are in openSUSE:Factory).

This is a dependency of python-pandas.

OBS-URL: https://build.opensuse.org/request/show/241240
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Bottleneck?expand=0&rev=1
2014-07-17 15:31:33 +00:00

57 lines
1.9 KiB
RPMSpec

#
# spec file for package python-Bottleneck
#
# 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 Bottleneck
Name: python-%{modname}
Version: 0.8.0
Release: 0
Summary: A collection of fast NumPy array functions
License: BSD-2-Clause and BSD-3-Clause
Group: Development/Libraries/Python
Url: http://berkeleyanalytics.com/bottleneck/
Source0: http://pypi.python.org/packages/source/B/Bottleneck/%{modname}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-devel
BuildRequires: python-numpy-devel >= 1.8
BuildRequires: python-setuptools
Requires: python-numpy >= 1.8
%if 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%{py_requires}
%endif
%description
Bottleneck is a collection of fast NumPy array functions written in Cython.
%prep
%setup -q -n %{modname}-%{version}
%build
CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root)
%doc README.rst RELEASE.rst LICENSE
%{python_sitearch}/bottleneck/
%{python_sitearch}/%{modname}-%{version}-py%{py_ver}.egg-info
%changelog