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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B31ED1382C5 for ; Fri, 5 Mar 2021 23:56:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0734E088D; Fri, 5 Mar 2021 23:56:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 859A7E088D for ; Fri, 5 Mar 2021 23:56:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A4D9340EB9 for ; Fri, 5 Mar 2021 23:56:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83176585 for ; Fri, 5 Mar 2021 23:56:21 +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: <1614988500.845877776a48aee97f7ae414c262630e331efb52.sam@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.ebuild X-VCS-Directories: games-arcade/jumpnbump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 845877776a48aee97f7ae414c262630e331efb52 X-VCS-Branch: master Date: Fri, 5 Mar 2021 23:56:21 +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: e1b6f133-3288-48c5-9a3e-ab92bceb98d8 X-Archives-Hash: 8ef968cd8f40db216dd5337f10757d1f commit: 845877776a48aee97f7ae414c262630e331efb52 Author: Sam James gentoo org> AuthorDate: Fri Mar 5 23:55:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 5 23:55:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84587777 games-arcade/jumpnbump: misc fixups * + Python 3.9 * - Python 3.6 * GCC 10 workaround Signed-off-by: Sam James gentoo.org> games-arcade/jumpnbump/jumpnbump-1.61.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/games-arcade/jumpnbump/jumpnbump-1.61.ebuild b/games-arcade/jumpnbump/jumpnbump-1.61.ebuild index 4681c057d6c..d7aafa39634 100644 --- a/games-arcade/jumpnbump/jumpnbump-1.61.ebuild +++ b/games-arcade/jumpnbump/jumpnbump-1.61.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) -inherit python-single-r1 + +PYTHON_COMPAT=( python3_{7,8,9} ) +inherit python-single-r1 flag-o-matic toolchain-funcs DESCRIPTION="A funny multiplayer game about cute little fluffy bunnies" HOMEPAGE="https://libregames.gitlab.io/jumpnbump" @@ -21,7 +22,8 @@ DEPEND=" media-libs/libsdl2 media-libs/sdl2-net " -RDEPEND="${DEPEND} +RDEPEND=" + ${DEPEND} gtk? ( ${PYTHON_DEPS} $(python_gen_cond_dep ' @@ -33,6 +35,10 @@ RDEPEND="${DEPEND} " src_compile() { + tc-export AR CC RANLIB + + append-flags -fcommon + emake PREFIX="${EPREFIX}/usr" use gtk && emake PREFIX="${EPREFIX}/usr" jnbmenu }