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 AC3D0158086 for ; Sun, 14 Nov 2021 00:45:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8530F2BC0CE; Sun, 14 Nov 2021 00:45:05 +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 E5BFA2BC0CE for ; Sun, 14 Nov 2021 00:45:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8F24133BE91 for ; Sun, 14 Nov 2021 00:45:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F374C1DC for ; Sun, 14 Nov 2021 00:45:00 +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: <1636850654.df667c44a394f249d4c1afb2a9837fd37f3f514f.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-r1.ebuild 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: df667c44a394f249d4c1afb2a9837fd37f3f514f X-VCS-Branch: master Date: Sun, 14 Nov 2021 00:45:00 +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: 8545182c-9df9-4220-9e25-720053588648 X-Archives-Hash: a18e3b8cf42941de73f371079e31f5af commit: df667c44a394f249d4c1afb2a9837fd37f3f514f Author: Ionen Wolkens gentoo org> AuthorDate: Sat Nov 13 23:51:51 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun Nov 14 00:44:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df667c44 games-puzzle/angrydd: EAPI7->8, revamp ebuild, enable py3.10 Updated deps for pygame-2 (sdl2-image[png] + sdl2-mixer[vorbis]) Also remove HOMEPAGE, 404 with no replacement found. Signed-off-by: Ionen Wolkens gentoo.org> games-puzzle/angrydd/angrydd-1.0.1_p13-r1.ebuild | 56 ------------------------ games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild | 46 +++++++++++++++++++ 2 files changed, 46 insertions(+), 56 deletions(-) diff --git a/games-puzzle/angrydd/angrydd-1.0.1_p13-r1.ebuild b/games-puzzle/angrydd/angrydd-1.0.1_p13-r1.ebuild deleted file mode 100644 index d1ad454c75c..00000000000 --- a/games-puzzle/angrydd/angrydd-1.0.1_p13-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8,9} ) - -inherit desktop python-single-r1 - -DESCRIPTION="Angry, Drunken Dwarves, a falling blocks game similar to Puzzle Fighter" -HOMEPAGE="https://www.sacredchao.net/~piman/angrydd/" -SRC_URI=" - https://www.sacredchao.net/~piman/angrydd/${P/_p*}.tar.gz - mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV/_p*}-${PV/*_p}.debian.tar.xz -" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -RDEPEND="${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/pygame[${PYTHON_USEDEP}] - ') -" -DEPEND="${RDEPEND}" -BDEPEND="" - -S="${WORKDIR}/${P/_p*}" - -src_prepare() { - default - eapply -p1 "${WORKDIR}"/debian/patches/*.patch - python_fix_shebang . -} - -src_install() { - emake \ - DESTDIR="${D}" \ - PREFIX="/usr/share/" \ - TO="${PN}" \ - install - rm -rf "${ED}/usr/share/games" "${ED}/usr/share/share" || die - - python_optimize "${ED}/usr/share/${PN}" - - dodir /usr/bin - dosym "../share/${PN}/angrydd.py" "/usr/bin/${PN}" - doman angrydd.6 - dodoc README TODO HACKING - - doicon angrydd.png - make_desktop_entry angrydd "Angry, Drunken Dwarves" -} diff --git a/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild b/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild new file mode 100644 index 00000000000..615182d98fd --- /dev/null +++ b/games-puzzle/angrydd/angrydd-1.0.1_p13-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +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*}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]') + media-libs/sdl2-image[png] + media-libs/sdl2-mixer[vorbis]" +BDEPEND="${PYTHON_DEPS}" + +PATCHES=( + "${WORKDIR}"/debian/patches +) + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr/share TO=${PN} install + + dosym -r /usr/share/${PN}/${PN}.py /usr/bin/${PN} + doman angrydd.6 + einstalldocs + + python_fix_shebang "${ED}"/usr/share/${PN} + python_optimize "${ED}"/usr/share/${PN} + + doicon ${PN}.png + make_desktop_entry ${PN} "Angry, Drunken Dwarves" + + rm -r "${ED}"/usr/share/{games,share} || die +}