Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-manuel for openSUSE:Factory checked in at 2022-10-18 12:44:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-manuel (Old) and /work/SRC/openSUSE:Factory/.python-manuel.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-manuel" Tue Oct 18 12:44:24 2022 rev:12 rq:1012058 version:1.12.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-manuel/python-manuel.changes 2022-10-03 13:44:10.365271653 +0200 +++ /work/SRC/openSUSE:Factory/.python-manuel.new.2275/python-manuel.changes 2022-10-18 12:44:39.989678193 +0200 @@ -1,0 +2,7 @@ +Mon Oct 17 09:00:30 UTC 2022 - [email protected] + +- added patches + fix https://github.com/benji-york/manuel/issues/33 + + python-manuel-no-six.patch + +------------------------------------------------------------------- New: ---- python-manuel-no-six.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-manuel.spec ++++++ --- /var/tmp/diff_new_pack.j15ZwR/_old 2022-10-18 12:44:41.073680661 +0200 +++ /var/tmp/diff_new_pack.j15ZwR/_new 2022-10-18 12:44:41.081680679 +0200 @@ -27,12 +27,12 @@ Source: https://files.pythonhosted.org/packages/source/m/manuel/manuel-%{version}.tar.gz # add fixed sphinx config <[email protected]> Source1: conf.py +# https://github.com/benji-york/manuel/issues/33 +Patch0: python-manuel-no-six.patch BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} -BuildRequires: %{python_module six} BuildRequires: fdupes BuildRequires: python-rpm-macros -Requires: python-six BuildArch: noarch # SECTION Documentation requirements: BuildRequires: python3-Sphinx @@ -55,7 +55,7 @@ This package contains documentation files for %{name}. %prep -%setup -q -n manuel-%{version} +%autosetup -p1 -n manuel-%{version} cp %{SOURCE1} . %build ++++++ python-manuel-no-six.patch ++++++ Index: manuel-1.12.4/src/manuel/doctest.py =================================================================== --- manuel-1.12.4.orig/src/manuel/doctest.py +++ manuel-1.12.4/src/manuel/doctest.py @@ -3,13 +3,13 @@ from __future__ import absolute_import import doctest import manuel import os.path -import six +import io DocTestRunner = doctest.DocTestRunner DebugRunner = doctest.DebugRunner -class DocTestResult(six.StringIO): +class DocTestResult(io.StringIO): pass
