14
0
Files
python-restview/python-restview.spec
Markéta Machová 5d1777cab5 Accepting request 970084 from home:pgajdos:python
- version update to 3.0.0
  3.0.0 (2022-01-12)
  - Drop support for Python 2.7.
  2.9.3 (2021-11-29)
  - Fix incompatibility with docutils 0.18.1 that resulted in "Cannot embed
    stylesheet" errors (`issue 61 <https://github.com/mgedmin/restview/pull/61>`_,
    contributed by Sébastien Besson).
  - Add support for Python 3.8, 3.9, and 3.10.
  - Drop support for Python 3.5.
- deleted patches
  - false.patch (upstreamed)

OBS-URL: https://build.opensuse.org/request/show/970084
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-restview?expand=0&rev=11
2022-04-14 08:59:50 +00:00

76 lines
2.1 KiB
RPMSpec

#
# spec file for package python-restview
#
# Copyright (c) 2022 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-%{**}}
Name: python-restview
Version: 3.0.0
Release: 0
Summary: ReStructuredText viewer
License: GPL-3.0-only
Group: Development/Languages/Python
URL: https://mg.pov.lt/restview/
Source: https://files.pythonhosted.org/packages/source/r/restview/restview-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-docutils
Requires: python-pygments
Requires: python-readme_renderer
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module docutils}
BuildRequires: %{python_module pygments}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module readme_renderer}
# /SECTION
%python_subpackages
%description
A viewer for ReStructuredText documents that renders them on the fly.
%prep
%setup -q -n restview-%{version}
%autopatch -p1
%build
%python_build
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/restview
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%post
%python_install_alternative restview
%postun
%python_uninstall_alternative restview
%files %{python_files}
%doc CHANGES.rst README.rst
%license LICENSE
%python_alternative %{_bindir}/restview
%{python_sitelib}/*
%changelog