commit python-coloredlogs for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-coloredlogs for openSUSE:Factory checked in at 2024-10-30 17:37:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-coloredlogs (Old) and /work/SRC/openSUSE:Factory/.python-coloredlogs.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-coloredlogs" Wed Oct 30 17:37:11 2024 rev:13 rq:1219237 version:15.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-coloredlogs/python-coloredlogs.changes 2023-04-21 18:48:32.780437341 +0200 +++ /work/SRC/openSUSE:Factory/.python-coloredlogs.new.2020/python-coloredlogs.changes 2024-10-30 17:38:05.833458307 +0100 @@ -1,0 +2,6 @@ +Wed Oct 30 02:59:26 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com> + +- Add patch support-python-313.patch: + * No longer use now-removed pipes module. + +------------------------------------------------------------------- New: ---- support-python-313.patch BETA DEBUG BEGIN: New: - Add patch support-python-313.patch: * No longer use now-removed pipes module. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-coloredlogs.spec ++++++ --- /var/tmp/diff_new_pack.BlZgDp/_old 2024-10-30 17:38:06.433483442 +0100 +++ /var/tmp/diff_new_pack.BlZgDp/_new 2024-10-30 17:38:06.433483442 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-coloredlogs # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2024 SUSE LLC # Copyright (c) 2016, Martin Hauke <mardnh@gmx.de> # # All modifications and additions to the file contributed by third parties @@ -23,25 +23,26 @@ Release: 0 Summary: Colored terminal output for Python's logging module License: MIT -Group: Development/Languages/Python URL: https://github.com/xolox/python-coloredlogs Source: https://files.pythonhosted.org/packages/source/c/coloredlogs/coloredlogs-%{version}.tar.gz # PATCH-FIX-OPENSUSE test_cli_conversion_test.patch mcepl@suse.com # With using alternatives, we don't have versionless command in time of %%check Patch0: test_cli_conversion_test.patch +# PATCH-FIX-UPSTREAM gh#xolox/python-coloredlogs#120 +Patch1: support-python-313.patch BuildRequires: %{python_module capturer >= 2.4} BuildRequires: %{python_module humanfriendly >= 9.1} +BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest >= 3.0.3} BuildRequires: %{python_module pytest-cov >= 2.3.1} -BuildRequires: %{python_module pip} -BuildRequires: %{python_module wheel} BuildRequires: %{python_module verboselogs >= 1.7} +BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-capturer >= 2.4 Requires: python-humanfriendly >= 9.1 Requires(post): update-alternatives -Requires(postun):update-alternatives +Requires(postun): update-alternatives Recommends: python-verboselogs >= 1.7 BuildArch: noarch %python_subpackages @@ -83,5 +84,5 @@ %python_alternative %{_bindir}/coloredlogs %{python_sitelib}/coloredlogs/ %{python_sitelib}/coloredlogs.pth -%{python_sitelib}/coloredlogs-%{version}*-info +%{python_sitelib}/coloredlogs-%{version}.dist-info ++++++ support-python-313.patch ++++++ From 9d4f4020897fcf48d381de8e099dc29b53fc9531 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" <code@musicinmybrain.net> Date: Wed, 12 Jun 2024 14:00:28 -0400 Subject: [PATCH] Replace pipes.quote with shlex.quote on Python 3 The shlex.quote() API is available from Python 3.3 on; pipes.quote() was never documented, and is removed in Python 3.13. Fixes #119. --- coloredlogs/converter/__init__.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/coloredlogs/converter/__init__.py b/coloredlogs/converter/__init__.py index a424469..96817a0 100644 --- a/coloredlogs/converter/__init__.py +++ b/coloredlogs/converter/__init__.py @@ -9,11 +9,15 @@ # Standard library modules. import codecs import os -import pipes import re import subprocess import tempfile +try: + from shlex import quote # Python 3 +except ImportError: + from pipes import quote # Python 2 (removed in 3.13) + # External dependencies. from humanfriendly.terminal import ( ANSI_CSI, @@ -75,7 +79,7 @@ def capture(command, encoding='UTF-8'): # # [1] http://man7.org/linux/man-pages/man1/script.1.html # [2] https://developer.apple.com/legacy/library/documentation/Darwin/Reference/Ma... - command_line = ['script', '-qc', ' '.join(map(pipes.quote, command)), '/dev/null'] + command_line = ['script', '-qc', ' '.join(map(quote, command)), '/dev/null'] script = subprocess.Popen(command_line, stdout=subprocess.PIPE, stderr=dev_null) stdout, stderr = script.communicate() if script.returncode == 0:
participants (1)
-
Source-Sync