Accepting request 924877 from home:pgajdos:python

- version update to 0.1.7
  Version 0.1.7
  -------------
  - Publish to PyPI via Github Actions.
  Version 0.1.6
  -------------
  - Dropped support for Python 2 and Pypy
  - Declare this extension safe for parallel reading
  - Migrate to Github Actions for CI [:issue:`28`, :pull:`32` by Langston Barrett]
  - Test against recent versions of Sphinx [:issue:`33`, :pull:`32` by Langston Barrett]
  - Format source code with Black [:issue:`30`, :pull:`32` by Langston Barrett]
  - Add documentation to the ``sdist`` [:issue:`26`, :pull:`32` by Langston Barrett]
  - Fixed unwanted ``<blockquote>`` tags in multi-line command descriptions that
    are indented to match surrounding code. [:pull:`21` by dgw]
- deleted patches
  - 0001-License-file-ci-skip.patch (upstreamed)
- added sources
  + _multibuild

OBS-URL: https://build.opensuse.org/request/show/924877
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinxcontrib-autoprogram?expand=0&rev=8
This commit is contained in:
2021-10-12 13:59:08 +00:00
committed by Git OBS Bridge
parent b82be669a6
commit d7ab0bfc02
6 changed files with 59 additions and 70 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-sphinxcontrib
# spec file
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,26 +16,39 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%global short_name autoprogram
# https://github.com/sphinx-contrib/autoprogram/commit/457822502b71a449d97dfece63e77dbee910b581
%define skip_python36 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-sphinxcontrib-%{short_name}
Version: 0.1.5
Version: 0.1.7
Release: 0
Summary: Sphinx extension to document CLI programs
License: BSD-2-Clause
Group: Development/Languages/Python
URL: https://github.com/sphinx-contrib/%{short_name}
Source0: %{URL}/archive/%{version}/%{name}-%{version}.tar.gz
Patch0: 0001-License-file-ci-skip.patch
BuildRequires: %{python_module Sphinx >= 1.2}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: %{python_module sphinxcontrib-websupport >= 1.0.1}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Sphinx >= 1.2
Requires: python-six
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module six}
BuildRequires: %{python_module sphinxcontrib-autoprogram}
BuildRequires: %{python_module sphinxcontrib-websupport >= 1.0.1}
%endif
%python_subpackages
%description
@@ -55,6 +68,7 @@ python-sphinxcontrib-autoprogram.
%autosetup -n %{short_name}-%{version} -p1
%build
%if !%{with test}
%python_build
# need to set PYTHONPATH, otherwise the build won't find the extension in the
@@ -66,21 +80,31 @@ sphinx-build -b html -d doc/_build/doctrees doc doc/_build/html
# remove inventory file, not needed for the documentation
rm doc/_build/html/objects.inv
%endif
%install
%if !%{with test}
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%check
%python_exec setup.py test
%if %{with test}
export PYTHONPATH='doc'
%pyunittest sphinxcontrib/autoprogram.py
%endif
%if !%{with test}
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%endif
%if !%{with test}
%files %{python_files doc}
%license LICENSE
%doc doc/_build/html/*
%endif
%changelog