2018-04-02 14:04:39 +00:00
|
|
|
|
#
|
|
|
|
|
# spec file for package python-sphinxcontrib-trio
|
|
|
|
|
#
|
|
|
|
|
# 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/
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%define skip_python2 1
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
|
Name: python-sphinxcontrib-trio
|
|
|
|
|
Version: 1.0.1
|
|
|
|
|
Release: 0
|
|
|
|
|
Summary: Make Sphinx better at documenting Python functions and methods
|
|
|
|
|
License: MIT
|
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
|
URL: https://github.com/python-trio/sphinxcontrib-trio
|
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/s/sphinxcontrib-trio/sphinxcontrib-trio-%{version}.tar.gz
|
2018-04-02 14:13:00 +00:00
|
|
|
|
BuildRequires: %{python_module devel >= 3.5}
|
2018-04-02 14:04:39 +00:00
|
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
|
BuildRequires: fdupes
|
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
|
Requires: python-Sphinx
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This sphinx extension helps you document Python code that uses
|
|
|
|
|
async/await, or abstract methods, or context managers, or generators,
|
|
|
|
|
or … you get the idea. It works by making sphinx’s regular directives
|
|
|
|
|
for documenting Python functions and methods smarter and more
|
|
|
|
|
powerful. The name is because it was originally written for the Trio
|
|
|
|
|
project, and I’m not very creative. But don’t be put off – there’s
|
|
|
|
|
nothing Trio- or async-specific about this extension; any Python
|
|
|
|
|
project can benefit. (Though projects using async/await probably
|
|
|
|
|
benefit the most, since sphinx’s built-in tools are especially
|
|
|
|
|
inadequate in this case.)
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n sphinxcontrib-trio-%{version}
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%python_install
|
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
|
|
|
|
|
%files %{python_files}
|
|
|
|
|
%doc README.rst
|
|
|
|
|
%license LICENSE LICENSE.MIT
|
|
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
|
|
%changelog
|