From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C90F2158064 for ; Sun, 5 May 2024 23:44:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FE812BC05A; Sun, 5 May 2024 23:44:15 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 323562BC049 for ; Sun, 5 May 2024 23:44:15 +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 4C1AB343169 for ; Sun, 5 May 2024 23:44:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76D221A32 for ; Sun, 5 May 2024 23:44:11 +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: <1714952251.0266b57136e39d0106db942042d2e54b8dc3217c.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/angrydd/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild X-VCS-Directories: games-puzzle/angrydd/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 0266b57136e39d0106db942042d2e54b8dc3217c X-VCS-Branch: master Date: Sun, 5 May 2024 23:44:11 +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: 0364c39e-4882-4cb6-b6af-c37b03dccb7b X-Archives-Hash: 14bd5efe84cc65c68be6d6b9bd36ac31 commit: 0266b57136e39d0106db942042d2e54b8dc3217c Author: Ionen Wolkens gentoo org> AuthorDate: Sun May 5 16:54:12 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun May 5 23:37:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0266b571 games-puzzle/angrydd: enable py3.12 + tidy Closes: https://bugs.gentoo.org/929587 Signed-off-by: Ionen Wolkens gentoo.org> games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild b/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild index b174a76f1f3c..39c109b7be99 100644 --- a/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild +++ b/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild @@ -1,17 +1,18 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit desktop python-single-r1 DESCRIPTION="Angry, Drunken Dwarves, a falling blocks game similar to Puzzle Fighter" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI=" mirror://gentoo/${P/_p*}.tar.gz - mirror://debian/pool/main/${P::1}/${PN}/${PN}_${PV/_p*}-${PV/*_p}.debian.tar.xz" -S="${WORKDIR}/${P/_p*}" + mirror://debian/pool/main/${P::1}/${PN}/${PN}_${PV/_p*}-${PV/*_p}.debian.tar.xz +" +S=${WORKDIR}/${P/_p*} LICENSE="GPL-2" SLOT="0" @@ -22,7 +23,8 @@ RDEPEND=" ${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]') media-libs/sdl2-image[png] - media-libs/sdl2-mixer[vorbis]" + media-libs/sdl2-mixer[vorbis] +" BDEPEND="${PYTHON_DEPS}" PATCHES=( @@ -42,5 +44,5 @@ src_install() { doicon ${PN}.png make_desktop_entry ${PN} "Angry, Drunken Dwarves" - rm -r "${ED}"/usr/share/{games,share} || die + rm -r -- "${ED}"/usr/share/{games,share} || die }