From 66b27227cce343c5e700ab0a2aa36a4128802455 Mon Sep 17 00:00:00 2001 From: Christian Ruppert Date: Mon, 15 Apr 2024 09:48:21 +0200 Subject: net-proxy/hatop: Python 3.12 compat Bug: https://bugs.gentoo.org/929738 Signed-off-by: Christian Ruppert --- net-proxy/hatop/files/hatop-0.8.2-python312.patch | 73 +++++++++++++++++++++++ net-proxy/hatop/hatop-0.8.2.ebuild | 6 +- 2 files changed, 77 insertions(+), 2 deletions(-) create mode 100644 net-proxy/hatop/files/hatop-0.8.2-python312.patch (limited to 'net-proxy') diff --git a/net-proxy/hatop/files/hatop-0.8.2-python312.patch b/net-proxy/hatop/files/hatop-0.8.2-python312.patch new file mode 100644 index 000000000000..68515d6d6bd1 --- /dev/null +++ b/net-proxy/hatop/files/hatop-0.8.2-python312.patch @@ -0,0 +1,73 @@ +From 0c0a392d319ed495a55f8ad29291c4a7cbd5077a Mon Sep 17 00:00:00 2001 +From: sblondon +Date: Tue, 19 Mar 2024 19:33:17 +0100 +Subject: [PATCH] Fix syntax warnings in Python3.12 (#17) + +Python3.12 added new syntax warning if strings contain invalid sequence. + +The change is documented in: +https://docs.python.org/3/whatsnew/3.12.html#other-language-changes +--- + bin/hatop | 34 +++++++++++++++++----------------- + 1 file changed, 17 insertions(+), 17 deletions(-) + +diff --git a/bin/hatop b/bin/hatop +index bb69311..9aa9553 100755 +--- a/bin/hatop ++++ b/bin/hatop +@@ -196,7 +196,7 @@ HAPROXY_CLI_MAXLINES = 1000 + CLI_MAXLINES = 1000 + CLI_MAXHIST = 100 + CLI_INPUT_LIMIT = 200 +-CLI_INPUT_RE = re.compile('[a-zA-Z0-9_:\.\-\+; /#%]') ++CLI_INPUT_RE = re.compile(r'[a-zA-Z0-9_:\.\-\+; /#%]') + CLI_INPUT_DENY_CMD = ['prompt', 'set timeout cli', 'quit'] + + # Note: Only the last 3 lines are visible instantly on 80x25 +@@ -214,20 +214,20 @@ SCREEN_YMAX = 100 + SCREEN_HPOS = 11 + + HAPROXY_INFO_RE = { +-'software_name': re.compile('^Name:\s*(?P\S+)'), +-'software_version': re.compile('^Version:\s*(?P\S+)'), +-'software_release': re.compile('^Release_date:\s*(?P\S+)'), +-'nproc': re.compile('^Nbproc:\s*(?P\d+)'), +-'procn': re.compile('^Process_num:\s*(?P\d+)'), +-'pid': re.compile('^Pid:\s*(?P\d+)'), +-'uptime': re.compile('^Uptime:\s*(?P[\S ]+)$'), +-'maxconn': re.compile('^Maxconn:\s*(?P\d+)'), +-'curconn': re.compile('^CurrConns:\s*(?P\d+)'), +-'maxpipes': re.compile('^Maxpipes:\s*(?P\d+)'), +-'curpipes': re.compile('^PipesUsed:\s*(?P\d+)'), +-'tasks': re.compile('^Tasks:\s*(?P\d+)'), +-'runqueue': re.compile('^Run_queue:\s*(?P\d+)'), +-'node': re.compile('^node:\s*(?P\S+)'), ++'software_name': re.compile(r'^Name:\s*(?P\S+)'), ++'software_version': re.compile(r'^Version:\s*(?P\S+)'), ++'software_release': re.compile(r'^Release_date:\s*(?P\S+)'), ++'nproc': re.compile(r'^Nbproc:\s*(?P\d+)'), ++'procn': re.compile(r'^Process_num:\s*(?P\d+)'), ++'pid': re.compile(r'^Pid:\s*(?P\d+)'), ++'uptime': re.compile(r'^Uptime:\s*(?P[\S ]+)$'), ++'maxconn': re.compile(r'^Maxconn:\s*(?P\d+)'), ++'curconn': re.compile(r'^CurrConns:\s*(?P\d+)'), ++'maxpipes': re.compile(r'^Maxpipes:\s*(?P\d+)'), ++'curpipes': re.compile(r'^PipesUsed:\s*(?P\d+)'), ++'tasks': re.compile(r'^Tasks:\s*(?P\d+)'), ++'runqueue': re.compile(r'^Run_queue:\s*(?P\d+)'), ++'node': re.compile(r'^node:\s*(?P\S+)'), + } + + HAPROXY_STAT_MAX_SERVICES = 1000 +@@ -236,9 +236,9 @@ Warning: You have reached the stat parser limit! (%d) + Use --filter to parse specific service stats only. + ''' % HAPROXY_STAT_MAX_SERVICES + HAPROXY_STAT_FILTER_RE = re.compile( +- '^(?P-?\d+)\s+(?P-?\d+)\s+(?P-?\d+)$') ++ r'^(?P-?\d+)\s+(?P-?\d+)\s+(?P-?\d+)$') + HAPROXY_STAT_PROXY_FILTER_RE = re.compile( +- '^(?P[a-zA-Z0-9_:\.\-]+)$') ++ r'^(?P[a-zA-Z0-9_:\.\-]+)$') + HAPROXY_STAT_COMMENT = '#' + HAPROXY_STAT_SEP = ',' + HAPROXY_STAT_CSV = [ diff --git a/net-proxy/hatop/hatop-0.8.2.ebuild b/net-proxy/hatop/hatop-0.8.2.ebuild index e79b4979df73..a0a1364cd6bb 100644 --- a/net-proxy/hatop/hatop-0.8.2.ebuild +++ b/net-proxy/hatop/hatop-0.8.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{9..12} ) PYTHON_REQ_USE="ncurses" inherit python-r1 @@ -22,6 +22,8 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND="${PYTHON_DEPS}" RDEPEND="${DEPEND}" +PATCHES=("${FILESDIR}/hatop-0.8.2-python312.patch") + src_install() { python_foreach_impl python_doscript bin/hatop -- cgit v1.2.3-65-gdbad