Files
python-sphinxcontrib-progra…/python-sphinxcontrib-programoutput.spec
Tomáš Chvátal b8073239e4 Accepting request 731365 from home:jayvdb:py3only
- Remove tests from runtime installation
- Update to v0.15
  * Make the test suite stop assuming the presence of a 'python' executable on the path. Instead it uses ``sys.executable`` (which shouldn't have spaces). Note that it does continue to  assume the presence of other executables, such as 'echo'

OBS-URL: https://build.opensuse.org/request/show/731365
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinxcontrib-programoutput?expand=0&rev=16
2019-09-17 08:45:03 +00:00

73 lines
2.4 KiB
RPMSpec

#
# spec file for package python-sphinxcontrib-programoutput
#
# Copyright (c) 2019 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-sphinxcontrib-programoutput
Version: 0.15
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