File python-pymod2pkg.spec of Package python-pymod2pkg
#
# spec file for package python-pymod2pkg
#
# Copyright (c) 2018 SUSE LINUX 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/
#
%global sname pymod2pkg
Name: python-pymod2pkg
Version: 0.13.1
Release: 0
Summary: OpenStack Packaging - python module name to package name map
License: Apache-2.0
Group: Development/Libraries/Python
Url: https://wiki.openstack.org/wiki/Rpm-packaging
Source0: https://files.pythonhosted.org/packages/source/p/%{sname}/%{sname}-%{version}.tar.gz
BuildRequires: openstack-macros
BuildRequires: python-devel
BuildRequires: python-pbr
BuildRequires: python-testrepository
BuildRequires: python-testscenarios
BuildRequires: python-testtools
Requires: python-pbr
BuildArch: noarch
%description
pymod2pkg is a simple python module for translating python module names to
corresponding package names which is a common problem in the packaging world.
%package doc
Summary: Documentation for python module name to package name map library
Group: Development/Libraries/Python
BuildRequires: python-Sphinx
BuildRequires: python-oslosphinx
Requires: %{name} = %{version}
%description doc
Documentation for python module name to package name map library.
%prep
%autosetup -n %{sname}-%{version}
%py_req_cleanup
%build
%{py2_build}
# generate html docs
%{__python2} setup.py build_sphinx
# remove the sphinx-build leftovers
rm -rf doc/build/html/.{doctrees,buildinfo}
%install
%{py2_install}
%check
%{__python2} setup.py test
%files
%license LICENSE
%doc README*
%{_bindir}/pymod2pkg
%{python2_sitelib}/%{sname}*
%{python2_sitelib}/*.egg-info
%files doc
%doc doc/build/html
%license LICENSE
%changelog