From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5190115808A for ; Thu, 17 Jul 2025 16:02:43 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3D887340B57 for ; Thu, 17 Jul 2025 16:02:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CFEE21102A2; Thu, 17 Jul 2025 16:02:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C602C1102A2 for ; Thu, 17 Jul 2025 16:02:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B0B8340E7A for ; Thu, 17 Jul 2025 16:02:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C40952F3A for ; Thu, 17 Jul 2025 16:02:37 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1752768135.2735a031b2984a093b34b4e924d0064cc9513ac6.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/ueberzug/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/ueberzug/ueberzug-18.3.1.ebuild X-VCS-Directories: media-gfx/ueberzug/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 2735a031b2984a093b34b4e924d0064cc9513ac6 X-VCS-Branch: master Date: Thu, 17 Jul 2025 16:02:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4dc301c1-c1a7-4b49-be93-69d156575d8f X-Archives-Hash: d5735f1c671636c565a5f6e046b843e7 commit: 2735a031b2984a093b34b4e924d0064cc9513ac6 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Jul 17 15:58:00 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Jul 17 16:02:15 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2735a031 media-gfx/ueberzug: fix occlusion QA Albeit believe it's meaningless given the import-check test passes the full path so I don't think it could load it from this directory. Closes: https://bugs.gentoo.org/960342 Signed-off-by: Ionen Wolkens gentoo.org> media-gfx/ueberzug/ueberzug-18.3.1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-gfx/ueberzug/ueberzug-18.3.1.ebuild b/media-gfx/ueberzug/ueberzug-18.3.1.ebuild index ce8d9a8cbe37..9c78cde9172f 100644 --- a/media-gfx/ueberzug/ueberzug-18.3.1.ebuild +++ b/media-gfx/ueberzug/ueberzug-18.3.1.ebuild @@ -1,11 +1,11 @@ -# Copyright 2021-2024 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=meson-python -PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_COMPAT=( python3_{11..13} ) inherit distutils-r1 DESCRIPTION="Command line util to draw images on terminals by using child windows" @@ -37,3 +37,8 @@ DEPEND=" " distutils_enable_tests import-check + +python_test() { + rm -rf ueberzug || die #960342 + distutils-r1_python_test +}