OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Factory/python-cinderclient?expand=0&rev=1
110 lines
3.4 KiB
RPMSpec
110 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package python-cinderclient
|
|
#
|
|
# Copyright (c) 2012 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 component cinderclient
|
|
|
|
Name: python-%{component}
|
|
Version: 1.0.1.5.g82e47d0+git.1355912775.82e47d0
|
|
Release: 0
|
|
License: Apache-2.0
|
|
Summary: Openstack Block Storage (Cinder) API Client
|
|
Url: http://launchpad.net/python-cinderclient
|
|
Group: Development/Languages/Python
|
|
Source: python-cinderclient-master.tar.gz
|
|
BuildRequires: openstack-macros
|
|
BuildRequires: python-base
|
|
BuildRequires: python-distribute
|
|
# Packages below are only needed for documentation build
|
|
BuildRequires: python-httplib2
|
|
BuildRequires: python-prettytable
|
|
BuildRequires: python-Sphinx
|
|
Requires: python >= 2.6.8
|
|
Requires: python-argparse
|
|
Requires: python-distribute
|
|
#Requires: python-httplib2
|
|
Requires: python-prettytable
|
|
Requires: python-simplejson
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%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 for the OpenStack Volume API. There's a Python API (the
|
|
cinderclient module), and a command-line script (cinder). Each implements 100%
|
|
of the OpenStack Volume API.
|
|
|
|
%package doc
|
|
Summary: Openstack Block Storage (Cinder) API Client - Documentation
|
|
Group: Documentation/HTML
|
|
Requires: %{name} = %{version}
|
|
|
|
%description doc
|
|
This package contains documentation files for %{name}.
|
|
|
|
%package test
|
|
Summary: Openstack Block Storage (Cinder) API Client - Testsuite
|
|
Group: Development/Languages/Python
|
|
Requires: %{name} = %{version}
|
|
Requires: python-mock
|
|
Requires: python-nose
|
|
Requires: python-unittest2
|
|
|
|
%description test
|
|
This package contains testsuite files for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n python-cinderclient-1.0.1.5.g82e47d0
|
|
%openstack_cleanup_prep
|
|
echo %{version} > cinderclient/versioninfo
|
|
|
|
%build
|
|
python setup.py build
|
|
python setup.py build_sphinx
|
|
|
|
%install
|
|
python setup.py install --skip-build --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
rm -rf doc/build/html/{.buildinfo,.doctrees}
|
|
|
|
### bash-completion
|
|
install -p -D -m 644 tools/cinder.bash_completion %{buildroot}%{_sysconfdir}/bash_completion.d/openstack-cinder.sh
|
|
|
|
### test subpackage
|
|
%openstack_test_package_install
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE README.rst
|
|
%{_sysconfdir}/bash_completion.d/openstack-cinder.sh
|
|
%{_bindir}/cinder
|
|
%{python_sitelib}/%{component}/
|
|
%{python_sitelib}/python_%{component}-*.egg-info
|
|
|
|
%files doc
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE doc/build/html
|
|
|
|
%files test
|
|
%defattr(-,root,root,-)
|
|
%{_localstatedir}/lib/%{name}-test/
|
|
|
|
%changelog
|