Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/181030 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-heatclient?expand=0&rev=5
119 lines
3.7 KiB
RPMSpec
119 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package python-heatclient
|
|
#
|
|
# Copyright (c) 2013 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 heatclient
|
|
|
|
Name: python-%{component}
|
|
Version: 0.2.2.26.g7774ac3
|
|
Release: 0
|
|
Summary: Openstack Orchestration (Heat) API Client
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
Url: http://launchpad.net/python-heatclient
|
|
Source: python-heatclient-master.tar.gz
|
|
BuildRequires: openstack-suse-macros
|
|
BuildRequires: python-base
|
|
BuildRequires: python-distribute
|
|
# Documentation build requirements:
|
|
BuildRequires: python-PrettyTable
|
|
BuildRequires: python-Sphinx
|
|
BuildRequires: python-d2to1
|
|
BuildRequires: python-httplib2
|
|
BuildRequires: python-iso8601 >= 0.1.4
|
|
BuildRequires: python-keystoneclient
|
|
BuildRequires: python-pbr
|
|
Requires: python >= 2.6.8
|
|
Requires: python-PrettyTable >= 0.6
|
|
Requires: python-d2to1 >= 0.2.10
|
|
Requires: python-httplib2
|
|
Requires: python-iso8601 >= 0.1.4
|
|
Requires: python-keystoneclient >= 0.2
|
|
Requires: python-pbr >= 0.5.10
|
|
Requires: python-warlock < 2
|
|
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 library for Heat built on the Heat orchestration API. It
|
|
provides a Python API (the heatclient module) and a command-line tool (heat).
|
|
|
|
%package doc
|
|
Summary: Openstack Orchestration (Heat) API Client - Documentation
|
|
Group: Documentation/HTML
|
|
Requires: %{name} = %{version}
|
|
|
|
%description doc
|
|
This package contains documentation files for %{name}.
|
|
|
|
%package test
|
|
Summary: Openstack Orchestration (Heat) API Client - Testsuite
|
|
Group: Development/Languages/Python
|
|
Requires: %{name} = %{version}
|
|
Requires: python-coverage >= 3.6
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
Requires: python-discover
|
|
%endif
|
|
Requires: python-fixtures >= 0.3.12
|
|
Requires: python-flake8 >= 2.0
|
|
Requires: python-hacking >= 0.5.3
|
|
Requires: python-mox
|
|
Requires: python-pep8 >= 1.4.5
|
|
Requires: python-pyflakes >= 0.7.2
|
|
Requires: python-testrepository >= 0.0.13
|
|
Requires: python-testtools >= 0.9.29
|
|
|
|
%description test
|
|
This package contains testsuite files for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n python-heatclient-0.2.2.26.g7774ac3
|
|
%openstack_cleanup_prep
|
|
echo %{version} > heatclient/versioninfo
|
|
|
|
%build
|
|
python setup.py build
|
|
python setup.py build_sphinx
|
|
rm -rf doc/build/html/{.buildinfo,.doctrees}
|
|
|
|
%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.md
|
|
%{python_sitelib}/%{component}/
|
|
%{python_sitelib}/python_%{component}-*.egg-info
|
|
|
|
%files doc
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE doc/build/html
|
|
|
|
%files test
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/heat
|
|
%{_localstatedir}/lib/%{name}-test/
|
|
|
|
%changelog
|