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 5499E1382C5 for ; Mon, 23 Apr 2018 19:17:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3C6CE0BF4; Mon, 23 Apr 2018 19:17:34 +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 8BA8FE0BF5 for ; Mon, 23 Apr 2018 19:17:34 +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 857E9335C7D for ; Mon, 23 Apr 2018 19:17:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 962032A3 for ; Mon, 23 Apr 2018 19:17:30 +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: <1524511030.5ffb6470af0abac6a5566c87256ff26bb7dd6614.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/pycadia/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/pycadia/pycadia-0.5.1.ebuild X-VCS-Directories: games-arcade/pycadia/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 5ffb6470af0abac6a5566c87256ff26bb7dd6614 X-VCS-Branch: master Date: Mon, 23 Apr 2018 19:17:30 +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-Archives-Salt: 70c00676-caa8-4858-8961-95b05736131f X-Archives-Hash: 4d65bb0be145f3bc040bc3a7ed0742c8 commit: 5ffb6470af0abac6a5566c87256ff26bb7dd6614 Author: Pacho Ramos gentoo org> AuthorDate: Mon Apr 23 18:26:16 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Mon Apr 23 19:17:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ffb6470 games-arcade/pycadia: Drop old Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-arcade/pycadia/pycadia-0.5.1.ebuild | 44 ------------------------------- 1 file changed, 44 deletions(-) diff --git a/games-arcade/pycadia/pycadia-0.5.1.ebuild b/games-arcade/pycadia/pycadia-0.5.1.ebuild deleted file mode 100644 index 2c00e9799aa..00000000000 --- a/games-arcade/pycadia/pycadia-0.5.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -DESCRIPTION="Pycadia. Home to vector gaming, python style" -HOMEPAGE="http://www.anti-particle.com/pycadia.shtml" -SRC_URI="http://www.anti-particle.com/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~x86-fbsd" -IUSE="" - -DEPEND=">=dev-python/pygame-1.5.5 - dev-python/pygtk:2" - -S=${WORKDIR}/${PN} - -src_unpack() { - unpack ${A} - { - echo "#!/bin/sh" - echo "cd ${GAMES_DATADIR}/${PN}" - echo "exec python2 ./pycadia.py \"\${@}\"" - } > "${T}/pycadia" -} - -src_install() { - dogamesbin "${T}/pycadia" - - insinto "${GAMES_DATADIR}/${PN}" - doins -r {glade,pixmaps,sounds} *.py pycadia.conf - - exeinto "${GAMES_DATADIR}/${PN}" - doexe pycadia.py spacewarpy.py vektoroids.py - - newicon pixmaps/pysteroids.png ${PN}.png - make_desktop_entry ${PN} Pycadia - - dodoc doc/{TODO,CHANGELOG,README} - prepgamesdirs -}