2020-04-03 18:13:49 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-autodocsumm
|
|
|
|
#
|
2023-04-21 14:53:39 +00:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2020-04-03 18:13:49 +00:00
|
|
|
#
|
|
|
|
# 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 https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2020-09-03 05:57:43 +00:00
|
|
|
%define skip_python2 1
|
2023-04-21 14:53:39 +00:00
|
|
|
%{?sle15_python_module_pythons}
|
2020-04-03 18:13:49 +00:00
|
|
|
Name: python-autodocsumm
|
2023-05-10 19:39:57 +00:00
|
|
|
Version: 0.2.11
|
2020-04-03 18:13:49 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Extended sphinx autodoc including automatic autosummaries
|
2023-05-19 16:59:40 +00:00
|
|
|
License: Apache-2.0
|
2020-04-03 18:13:49 +00:00
|
|
|
URL: https://github.com/Chilipp/autodocsumm
|
2021-04-19 06:30:34 +00:00
|
|
|
Source: https://github.com/Chilipp/autodocsumm/archive/v%{version}.tar.gz#/autodocsumm-%{version}.tar.gz
|
2023-08-30 07:22:49 +00:00
|
|
|
# PATCH-FIX-UPSTREAM https://github.com/Chilipp/autodocsumm/pull/88 fix build with Sphinx 7.2
|
|
|
|
Patch: sphinx72.patch
|
2023-05-19 17:01:58 +00:00
|
|
|
BuildRequires: %{python_module pip}
|
2023-05-04 15:42:37 +00:00
|
|
|
BuildRequires: %{python_module versioneer}
|
2023-05-19 17:01:58 +00:00
|
|
|
BuildRequires: %{python_module wheel}
|
2020-04-03 18:13:49 +00:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2022-06-24 00:31:26 +00:00
|
|
|
Requires: python-Sphinx >= 2.2
|
2020-04-03 18:13:49 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
# SECTION test requirements
|
2021-04-19 06:30:34 +00:00
|
|
|
BuildRequires: %{python_module Sphinx >= 2.2}
|
2022-05-03 06:51:25 +00:00
|
|
|
BuildRequires: %{python_module beautifulsoup4}
|
2020-04-03 18:13:49 +00:00
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
# /SECTION
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
Extended sphinx autodoc including automatic autosummaries
|
|
|
|
|
|
|
|
%prep
|
2023-05-19 17:01:58 +00:00
|
|
|
%autosetup -p1 -n autodocsumm-%{version}
|
2022-06-24 00:31:26 +00:00
|
|
|
# Remove guard from Sphinx version
|
|
|
|
sed -i 's/,<5.0//' setup.py
|
2020-04-03 18:13:49 +00:00
|
|
|
|
|
|
|
%build
|
2023-05-19 17:01:58 +00:00
|
|
|
%pyproject_wheel
|
2020-04-03 18:13:49 +00:00
|
|
|
|
|
|
|
%install
|
2023-05-19 17:01:58 +00:00
|
|
|
%pyproject_install
|
2020-04-03 18:13:49 +00:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
2023-05-19 17:01:58 +00:00
|
|
|
%check
|
|
|
|
%pytest
|
|
|
|
|
2020-04-03 18:13:49 +00:00
|
|
|
%files %{python_files}
|
|
|
|
%doc README.rst
|
|
|
|
%license LICENSE
|
2021-04-19 06:30:34 +00:00
|
|
|
%{python_sitelib}/autodocsumm
|
|
|
|
%{python_sitelib}/autodocsumm-%{version}*-info
|
2020-04-03 18:13:49 +00:00
|
|
|
|
|
|
|
%changelog
|