Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-sphinxcontrib-documentedlist
for openSUSE:Factory checked in at 2023-04-10 21:24:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-documentedlist (Old)
and
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-documentedlist.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-documentedlist"
Mon Apr 10 21:24:52 2023 rev:4 rq:1078270 version:0.6
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sphinxcontrib-documentedlist/python-sphinxcontrib-documentedlist.changes
2018-12-24 11:44:30.849286060 +0100
+++
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-documentedlist.new.19717/python-sphinxcontrib-documentedlist.changes
2023-04-10 21:24:55.844780517 +0200
@@ -1,0 +2,8 @@
+Thu Apr 6 08:20:27 UTC 2023 - [email protected]
+
+- do not require six
+- added patches
+ fix https://github.com/sphinx-contrib/documentedlist/issues/5
+ + python-sphinxcontrib-documentedlist-no-six.patch
+
+-------------------------------------------------------------------
New:
----
python-sphinxcontrib-documentedlist-no-six.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sphinxcontrib-documentedlist.spec ++++++
--- /var/tmp/diff_new_pack.NyJLXe/_old 2023-04-10 21:24:56.304783195 +0200
+++ /var/tmp/diff_new_pack.NyJLXe/_new 2023-04-10 21:24:56.304783195 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-sphinxcontrib-documentedlist
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,8 +24,10 @@
Summary: Sphinx DocumentedList extension
License: BSD-2-Clause
Group: Development/Languages/Python
-Url: https://github.com/chintal/sphinxcontrib-documentedlist
+URL: https://github.com/chintal/sphinxcontrib-documentedlist
Source:
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-documentedlist/sphinxcontrib-documentedlist-%{version}.tar.gz
+# https://github.com/sphinx-contrib/documentedlist/issues/5
+Patch0: python-sphinxcontrib-documentedlist-no-six.patch
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
@@ -51,7 +53,7 @@
providing a description for the item.
%prep
-%setup -q -n sphinxcontrib-documentedlist-%{version}
+%autosetup -p1 -n sphinxcontrib-documentedlist-%{version}
%build
%python_build
++++++ python-sphinxcontrib-documentedlist-no-six.patch ++++++
Index: sphinxcontrib-documentedlist-0.6/setup.py
===================================================================
--- sphinxcontrib-documentedlist-0.6.orig/setup.py
+++ sphinxcontrib-documentedlist-0.6/setup.py
@@ -7,7 +7,7 @@ import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
-requires = ['Sphinx>=0.6', 'six']
+requires = ['Sphinx>=0.6']
setup(
name='sphinxcontrib-documentedlist',
Index: sphinxcontrib-documentedlist-0.6/sphinxcontrib/documentedlist.py
===================================================================
--- sphinxcontrib-documentedlist-0.6.orig/sphinxcontrib/documentedlist.py
+++ sphinxcontrib-documentedlist-0.6/sphinxcontrib/documentedlist.py
@@ -6,7 +6,6 @@
# sphinxcontrib's LICENSE file for the full text.
import shlex
-from six import text_type
from docutils import nodes
from docutils.parsers.rst import directives
from docutils.parsers.rst.directives.tables import Table
@@ -102,7 +101,7 @@ class DocumentedListDirective(Table):
entry = nodes.entry(morecols=morecols)
else:
entry = nodes.entry()
- para = nodes.paragraph(text=text_type(cell))
+ para = nodes.paragraph(text=str(cell))
entry += para
trow += entry
if self.descend and sub_table_data:
Index:
sphinxcontrib-documentedlist-0.6/sphinxcontrib_documentedlist.egg-info/requires.txt
===================================================================
---
sphinxcontrib-documentedlist-0.6.orig/sphinxcontrib_documentedlist.egg-info/requires.txt
+++
sphinxcontrib-documentedlist-0.6/sphinxcontrib_documentedlist.egg-info/requires.txt
@@ -1,2 +1 @@
Sphinx>=0.6
-six