Files
python-sphinxcontrib-progra…/python-sphinxcontrib-programoutput.spec
Dirk Mueller c5ce47c148 - update to 0.17:
- Add support for Python 3.9.
  - Drop support for python 3.5.
  - Include program output and current working directory in the warning
    logged when a program returns an unexpected return code

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinxcontrib-programoutput?expand=0&rev=20
2021-07-17 13:32:34 +00:00

73 lines
2.3 KiB
RPMSpec

#
# spec file for package python-sphinxcontrib-programoutput
#
# 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
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-sphinxcontrib-programoutput
Version: 0.17
Release: 0
Summary: Sphinx extension to include program output
License: BSD-2-Clause
Group: Development/Languages/Python
URL: http://sphinxcontrib-programoutput.readthedocs.org/
Source: https://files.pythonhosted.org/packages/source/s/sphinxcontrib-programoutput/sphinxcontrib-programoutput-%{version}.tar.gz
BuildRequires: %{python_module Sphinx >= 1.8}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Sphinx >= 1.8
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module pytest}
%endif
%python_subpackages
%description
A Sphinx extension to literally insert the output of arbitrary commands into
documents, helping you to keep your command examples up to date.
%prep
%setup -q -n sphinxcontrib-programoutput-%{version}
%build
export LANG=en_US.UTF-8
%python_build
%install
export LANG=en_US.UTF-8
%python_install
%{python_expand rm -r %{buildroot}%{$python_sitelib}/sphinxcontrib/programoutput/tests/
%fdupes %{buildroot}%{$python_sitelib}
}
%if %{with test}
%check
# https://github.com/NextThought/sphinxcontrib-programoutput/issues/38
export LANG=en_US.UTF-8
%python_exec setup.py test
%endif
%files %{python_files}
%license LICENSE
%doc CHANGES.rst README.rst
%{python_sitelib}/sphinxcontrib/programoutput/
%{python_sitelib}/sphinxcontrib_programoutput-%{version}-py*-nspkg.pth
%{python_sitelib}/sphinxcontrib_programoutput-%{version}-py*.egg-info
%changelog