File python-ceilometerclient.spec of Package python-ceilometerclient
#
# spec file for package python-ceilometerclient
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2013 B1 Systems GmbH.
#
# 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 component ceilometerclient
Name: python-%{component}
Version: 1.0.10
Release: 0
Url: https://github.com/openstack/python-ceilometerclient
Summary: OpenStack Metering (Ceilometer) API Client
License: Apache-2.0
Group: Development/Languages/Python
Source: https://pypi.python.org/packages/source/p/python-ceilometerclient/python-ceilometerclient-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: openstack-suse-macros
BuildRequires: python-devel
BuildRequires: python-pbr
Requires: python-PrettyTable >= 0.7
Requires: python-argparse
Requires: python-iso8601 >= 0.1.9
Requires: python-keystoneclient >= 0.6
Requires: python-six >= 1.5.2
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
This is a client library for Ceilometer built on the Ceilometer API. It
provides a Python API (the ceilometerclient module) and a command-line tool
(ceilometer).
%package test
Summary: Openstack Metering (Ceilometer) API Client - Testsuite
Group: Development/Languages/Python
Requires: %{name} = %{version}
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
Requires: python-discover
%endif
Requires: python-fixtures >= 0.3.14
Requires: python-mock >= 1
Requires: python-python-subunit >= 0.0.18
Requires: python-testrepository >= 0.0.18
Requires: python-testtools >= 0.9.34
%description test
This package contains testsuite files for %{name}.
%prep
%setup -q
%openstack_cleanup_prep
echo %{version} > ceilometerclient/versioninfo
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot} --install-data=%{python_sitelib}
### test subpackage
%openstack_test_package_install
%files
%defattr(-,root,root,-)
%doc LICENSE README.rst
%{_bindir}/ceilometer
%{python_sitelib}/%{component}/
%{python_sitelib}/python_%{component}-*.egg-info
%files test
%defattr(-,root,root,-)
%{_localstatedir}/lib/%{name}-test/
%changelog