15
0

Accepting request 1057699 from devel:languages:python

- Add patch support-python-311.patch:
  * Support Python 3.11 changes.

OBS-URL: https://build.opensuse.org/request/show/1057699
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-autopage?expand=0&rev=6
This commit is contained in:
2023-01-11 16:14:24 +00:00
committed by Git OBS Bridge
3 changed files with 49 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jan 11 05:45:45 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Add patch support-python-311.patch:
* Support Python 3.11 changes.
-------------------------------------------------------------------
Mon Nov 21 12:23:06 UTC 2022 - Daniel Garcia <daniel.garcia@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-autopage
#
# Copyright (c) 2022 SUSE LLC
# 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,6 +24,7 @@ Summary: A library to provide automatic paging for console output
License: Apache-2.0
URL: https://github.com/zaneb/autopage
Source: https://files.pythonhosted.org/packages/source/a/autopage/autopage-%{version}.tar.gz
Patch0: support-python-311.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}

41
support-python-311.patch Normal file
View File

@@ -0,0 +1,41 @@
Index: autopage-0.5.1/autopage/tests/test_autopage.py
===================================================================
--- autopage-0.5.1.orig/autopage/tests/test_autopage.py
+++ autopage-0.5.1/autopage/tests/test_autopage.py
@@ -37,6 +37,9 @@ class PagedStreamTest(fixtures.TestWithF
popen = fixtures.MockPatch('subprocess.Popen')
self.useFixture(popen)
self.popen = popen.mock
+ self.encoding = 'UTF-8'
+ if sys.version_info >= (3, 11):
+ self.encoding = 'utf-8'
def test_defaults(self) -> None:
class TestCommand(command.PagerCommand):
@@ -58,7 +61,7 @@ class PagedStreamTest(fixtures.TestWithF
env=get_env.return_value,
bufsize=-1,
universal_newlines=True,
- encoding='UTF-8',
+ encoding=self.encoding,
errors='strict',
stdin=subprocess.PIPE,
stdout=None)
@@ -84,7 +87,7 @@ class PagedStreamTest(fixtures.TestWithF
env=get_env.return_value,
bufsize=-1,
universal_newlines=True,
- encoding='UTF-8',
+ encoding=self.encoding,
errors='strict',
stdin=subprocess.PIPE,
stdout=None)
@@ -100,7 +103,7 @@ class PagedStreamTest(fixtures.TestWithF
env=get_env.return_value,
bufsize=-1,
universal_newlines=True,
- encoding='UTF-8',
+ encoding=self.encoding,
errors='strict',
stdin=subprocess.PIPE,
stdout=None)