diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-03 07:12:14 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-03 07:12:14 +0100 |
commit | 54326f642ab7fc7d5e802faac16f2191c5d578a0 (patch) | |
tree | 94b838d679a453ac6cdfbf4049b45e7f52bc6668 /games-arcade | |
parent | games-arcade/triplexinvaders: Remove last-rited pkg (diff) | |
download | gentoo-54326f642ab7fc7d5e802faac16f2191c5d578a0.tar.gz gentoo-54326f642ab7fc7d5e802faac16f2191c5d578a0.tar.bz2 gentoo-54326f642ab7fc7d5e802faac16f2191c5d578a0.zip |
games-arcade/watermelons: Remove last-rited pkg
Closes: https://bugs.gentoo.org/703774
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/watermelons/Manifest | 1 | ||||
-rw-r--r-- | games-arcade/watermelons/metadata.xml | 8 | ||||
-rw-r--r-- | games-arcade/watermelons/watermelons-1.1.1-r1.ebuild | 56 |
3 files changed, 0 insertions, 65 deletions
diff --git a/games-arcade/watermelons/Manifest b/games-arcade/watermelons/Manifest deleted file mode 100644 index 66355f709517..000000000000 --- a/games-arcade/watermelons/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST melons-1.1.1.tgz 318692 BLAKE2B b950e58062f85632cf87a205ede2437ddb9ac573574cb7cd5e73eabd3cbd7af8e2ee9a2dc06a31cb2f322198fb0bcb97b0c292a886711bf4fb868b4f90738a1c SHA512 50bb66de9806fb1bbe946ad5063e68d3327d6184b3e95230573f71053426ed877fc9762ef2b44e6964c9d7b8dc5081e9c3015885800dd6644a1dd88c9c5dc357 diff --git a/games-arcade/watermelons/metadata.xml b/games-arcade/watermelons/metadata.xml deleted file mode 100644 index 78274e0fa550..000000000000 --- a/games-arcade/watermelons/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> -</maintainer> -</pkgmetadata> diff --git a/games-arcade/watermelons/watermelons-1.1.1-r1.ebuild b/games-arcade/watermelons/watermelons-1.1.1-r1.ebuild deleted file mode 100644 index a5c441f8b428..000000000000 --- a/games-arcade/watermelons/watermelons-1.1.1-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -inherit eutils python-single-r1 games - -MY_PN="melons" -DESCRIPTION="A thrilling watermelon bouncing game" -HOMEPAGE="http://www.imitationpickles.org/melons/index.html" -SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tgz" -# No version upstream -#SRC_URI="http://www.imitationpickles.org/${MY_PN}/${MY_PN}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-python/pygame[${PYTHON_USEDEP}] - ${PYTHON_DEPS}" -RDEPEND=${DEPEND} -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -S=${WORKDIR}/${MY_PN} - -pkg_setup() { - python-single-r1_pkg_setup - games_pkg_setup -} - -src_prepare() { - sed -i \ - -e "s:melons.hs:${GAMES_STATEDIR}/${PN}/&:" \ - main.py || die - - cat <<-EOF > "${PN}" || die - #!/bin/bash - cd "${GAMES_DATADIR}/${PN}" - exec ${EPYTHON} main.py -EOF -} - -src_install() { - dogamesbin ${PN} - insinto "${GAMES_DATADIR}/${PN}" - doins -r data pgu const.py game.py main.py melon.py melons.py menu.py trampoline.py - python_optimize "${D}${GAMES_DATADIR}/${PN}" - dodoc *.txt - dodir "${GAMES_STATEDIR}/${PN}" - touch "${D}${GAMES_STATEDIR}"/${PN}/melons.hs - fperms 664 "${GAMES_STATEDIR}"/${PN}/melons.hs - newicon data/mellon0013.png "${PN}.png" - make_desktop_entry ${PN} Watermelons - prepgamesdirs -} |