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 E7636158064 for ; Sun, 5 May 2024 23:44:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB3092BC01A; Sun, 5 May 2024 23:44:13 +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 9275C2BC019 for ; Sun, 5 May 2024 23:44:13 +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 A7BB434318B for ; Sun, 5 May 2024 23:44:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 173371A2C 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: <1714952250.474274b17b8bd467b159b715f83f8f08267da4c0.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/jumpnbump/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/jumpnbump/jumpnbump-1.61_p20210421.ebuild X-VCS-Directories: games-arcade/jumpnbump/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 474274b17b8bd467b159b715f83f8f08267da4c0 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: c2c02ed0-444b-4ec6-aef9-1278116e3949 X-Archives-Hash: e1415c42775f6ace4f253f7884e9e037 commit: 474274b17b8bd467b159b715f83f8f08267da4c0 Author: Ionen Wolkens gentoo org> AuthorDate: Sun May 5 16:19:31 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun May 5 23:37:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=474274b1 games-arcade/jumpnbump: enable py3.12 + tidy Closes: https://bugs.gentoo.org/929570 Signed-off-by: Ionen Wolkens gentoo.org> games-arcade/jumpnbump/jumpnbump-1.61_p20210421.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/games-arcade/jumpnbump/jumpnbump-1.61_p20210421.ebuild b/games-arcade/jumpnbump/jumpnbump-1.61_p20210421.ebuild index a48697492c6e..2ce3affe6943 100644 --- a/games-arcade/jumpnbump/jumpnbump-1.61_p20210421.ebuild +++ b/games-arcade/jumpnbump/jumpnbump-1.61_p20210421.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=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit desktop python-single-r1 toolchain-funcs MY_COMMIT="73c5fe86fd831dec45a22077e8d63dd2b6a6349e" @@ -11,7 +11,7 @@ MY_COMMIT="73c5fe86fd831dec45a22077e8d63dd2b6a6349e" DESCRIPTION="Funny multiplayer game about cute little fluffy bunnies" HOMEPAGE="https://libregames.gitlab.io/jumpnbump" SRC_URI="https://gitlab.com/LibreGames/jumpnbump/-/archive/${MY_COMMIT}/${P}.tar.bz2" -S="${WORKDIR}/${PN}-${MY_COMMIT}" +S=${WORKDIR}/${PN}-${MY_COMMIT} LICENSE="GPL-2+" SLOT="0" @@ -24,7 +24,8 @@ DEPEND=" media-libs/libsdl2[joystick,sound,video] media-libs/sdl2-mixer[mod] media-libs/sdl2-net - sys-libs/zlib:=" + sys-libs/zlib:= +" RDEPEND=" ${DEPEND} gui? ( @@ -63,7 +64,7 @@ src_install() { use gui && emake -C menu PREFIX="${ED}"/usr install doicon dist/${PN}.png - rm "${ED}"/usr/share/icons/${PN}.png || die + rm -- "${ED}"/usr/share/icons/${PN}.png || die einstalldocs }