From 06b78ad6eddbbc6c8ea9e66c0098950cdb7b6b58 Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 24 Apr 2026 04:46:58 +0100 Subject: [PATCH] net-misc/httpstat: disable py3.14 py3.14 doesn't work: ``` File "/usr/lib/python3.14/site-packages/setuptools/build_meta.py", line 317, in run_setup exec(code, locals()) ~~~~^^^^^^^^^^^^^^^^ File "", line 30, in File "", line 17, in get_version AttributeError: 'Constant' object has no attribute 's' * ERROR: net-misc/httpstat-1.3.1-r1::gentoo failed (compile phase): * Wheel build failed * ``` I didn't notice because of wheel reuse (now disabled it). Fixes: 56ba436ee30df1ed54a88e9cd895505c3955d184 Signed-off-by: Sam James --- net-misc/httpstat/httpstat-1.3.1-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/httpstat/httpstat-1.3.1-r1.ebuild b/net-misc/httpstat/httpstat-1.3.1-r1.ebuild index baab502c46d52..77f8adc232442 100644 --- a/net-misc/httpstat/httpstat-1.3.1-r1.ebuild +++ b/net-misc/httpstat/httpstat-1.3.1-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..14} pypy3 ) +PYTHON_COMPAT=( python3_{11..13} pypy3 ) inherit distutils-r1 DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and clarity"