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 42699138334 for ; Wed, 25 Dec 2019 19:30:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16E4AE0B21; Wed, 25 Dec 2019 19:30:37 +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 F1B78E0B21 for ; Wed, 25 Dec 2019 19:30:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AB59C34DB5A for ; Wed, 25 Dec 2019 19:30:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6576F3D for ; Wed, 25 Dec 2019 19:30:29 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1577302222.fa0e6c9e6b785bfadee02d92028673dbb1059583.pacho@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-r2.ebuild X-VCS-Directories: games-puzzle/angrydd/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: fa0e6c9e6b785bfadee02d92028673dbb1059583 X-VCS-Branch: master Date: Wed, 25 Dec 2019 19:30:29 +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: 71878ded-b0c4-48e3-bf0a-37878ccb2318 X-Archives-Hash: 338bd18ee544f73a32d024a328982b5e commit: fa0e6c9e6b785bfadee02d92028673dbb1059583 Author: Pacho Ramos gentoo org> AuthorDate: Wed Dec 25 19:07:38 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Dec 25 19:30:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa0e6c9e games-puzzle/angrydd: Drop old Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Pacho Ramos gentoo.org> games-puzzle/angrydd/angrydd-1.0.1-r2.ebuild | 47 ---------------------------- 1 file changed, 47 deletions(-) diff --git a/games-puzzle/angrydd/angrydd-1.0.1-r2.ebuild b/games-puzzle/angrydd/angrydd-1.0.1-r2.ebuild deleted file mode 100644 index fe4be2ac400..00000000000 --- a/games-puzzle/angrydd/angrydd-1.0.1-r2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -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}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -RDEPEND="${PYTHON_DEPS} - dev-python/pygame[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" - -src_prepare() { - default - 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" -}