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 7E7EB1584AD for ; Sat, 26 Apr 2025 21:32:39 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5DD143430DA for ; Sat, 26 Apr 2025 21:32:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A0DF11104B9; Sat, 26 Apr 2025 21:32:34 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9B6031104B9 for ; Sat, 26 Apr 2025 21:32:34 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CE863430A4 for ; Sat, 26 Apr 2025 21:32:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCE4C255C for ; Sat, 26 Apr 2025 21:32:32 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1745703099.8e1c3064798e7ad6e8dae1efce4fa033cd25b076.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/py3status/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/py3status/py3status-3.61.ebuild X-VCS-Directories: x11-misc/py3status/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8e1c3064798e7ad6e8dae1efce4fa033cd25b076 X-VCS-Branch: master Date: Sat, 26 Apr 2025 21:32:32 +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: bda0d0a5-0690-4ba0-b3d7-61e676aa3edb X-Archives-Hash: c49844d617663ce8f1f1f492cbbf4237 commit: 8e1c3064798e7ad6e8dae1efce4fa033cd25b076 Author: Ian Jordan gmail com> AuthorDate: Sat Apr 26 12:27:29 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 26 21:31:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e1c3064 x11-misc/py3status: update EAPI 7 -> 8 Closes: https://bugs.gentoo.org/952772 Signed-off-by: Ian Jordan gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41769 Closes: https://github.com/gentoo/gentoo/pull/41769 Signed-off-by: Sam James gentoo.org> x11-misc/py3status/py3status-3.61.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/x11-misc/py3status/py3status-3.61.ebuild b/x11-misc/py3status/py3status-3.61.ebuild index 0a40790c0771..c4a8fe73b683 100644 --- a/x11-misc/py3status/py3status-3.61.ebuild +++ b/x11-misc/py3status/py3status-3.61.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -PYTHON_COMPAT=( python{3_9,3_10,3_11,3_12} ) +EAPI=8 +PYTHON_COMPAT=( python3_{10..13} ) DISTUTILS_USE_PEP517=hatchling +DESCRIPTION="py3status is an extensible i3status wrapper written in python" +HOMEPAGE="https://github.com/ultrabug/py3status" SRC_URI="https://github.com/ultrabug/py3status/archive/${PV}.tar.gz -> ${P}.tar.gz" inherit distutils-r1 @@ -12,9 +14,7 @@ inherit distutils-r1 MY_PN="py3status" MY_P="${MY_PN}-${PV/_/-}" -DESCRIPTION="py3status is an extensible i3status wrapper written in python" -HOMEPAGE="https://github.com/ultrabug/py3status" - +S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" @@ -29,5 +29,3 @@ RDEPEND=" udev? ( >=dev-python/pyudev-0.21.0[${PYTHON_USEDEP}] ) " DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P}