public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, games-rpg/dragonhunt/
@ 2020-02-03  6:36 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2020-02-03  6:36 UTC (permalink / raw
  To: gentoo-commits

commit:     635c8cd173bdc84f2e565cdfab27c93b0842fa8a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  3 06:17:52 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb  3 06:36:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635c8cd1

games-rpg/dragonhunt: Remove last-rited pkg

Closes: https://bugs.gentoo.org/703792
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 games-rpg/dragonhunt/Manifest                  |  1 -
 games-rpg/dragonhunt/dragonhunt-3.56-r2.ebuild | 86 --------------------------
 games-rpg/dragonhunt/metadata.xml              |  8 ---
 profiles/package.mask                          |  5 --
 4 files changed, 100 deletions(-)

diff --git a/games-rpg/dragonhunt/Manifest b/games-rpg/dragonhunt/Manifest
deleted file mode 100644
index 55bdd533dd1..00000000000
--- a/games-rpg/dragonhunt/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Dragon_Hunt-3.56.tar.gz 2170718 BLAKE2B 4d5b16921867bb7e0b14991184fc4f7a90ca7dbc6c87f4565a4626fb26d413cd4805099bb4973b45fde3758de4845489898c89b5981d34af7e8d03b2874286a5 SHA512 86ca32436088e8cda8993e21ebe6180f8361eb8bf5e052b3744a1db50073826118d1db657d713c7d75cd78c50c78c940caaf7adc5d31ad895d02a44f82b1e72a

diff --git a/games-rpg/dragonhunt/dragonhunt-3.56-r2.ebuild b/games-rpg/dragonhunt/dragonhunt-3.56-r2.ebuild
deleted file mode 100644
index e908b7b2814..00000000000
--- a/games-rpg/dragonhunt/dragonhunt-3.56-r2.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit eutils python-single-r1
-
-MY_P="Dragon_Hunt-${PV}"
-DESCRIPTION="A simple graphical RPG"
-HOMEPAGE="http://emhsoft.com/dh.html"
-SRC_URI="http://emhsoft.com/dh/${MY_P}.tar.gz"
-
-LICENSE="GPL-2 CC-SA-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}
-	dev-python/pygame[${PYTHON_USEDEP}]"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
-	python-single-r1_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	# Where to look for modules to load.
-	sed -i "s:\.\./modules/:/usr/share/${PN}/:" \
-		code/g.py \
-		code/map_editor.py \
-		code/rpg.py || die
-
-	# Where to look for keybinding
-	sed -i "s:\.\./settings:/etc/${PN}/settings:" \
-		code/g.py || die
-
-	# Save games in ~/.${PN}/.
-	sed -i \
-		-e "s:^\(from os import.*\):\1\, environ:" \
-		-e "s:g.mod_dir.*\"/saves/\?\":environ[\"HOME\"] + \"/.${PN}/\":" \
-		code/g.py code/loadgame.py || die
-
-	# Save maps in ~/.
-	sed -i \
-		-e "s:^\(from os import.*\):\1\, environ:" \
-		-e "s:g.mod_dir.*\"map\.txt\":environ[\"HOME\"]\ +\ \"/dh_map.txt\":" \
-		code/map_editor.py || die
-}
-
-src_install() {
-	insinto /usr/share/${PN}
-	doins -r modules/*
-
-	insinto /etc/${PN}
-	doins settings.txt
-
-	insinto /usr/$(get_libdir)/${PN}
-	doins code/*.py
-
-	make_wrapper ${PN} "${EPYTHON} ./rpg.py" /usr/$(get_libdir)/${PN}
-	make_wrapper ${PN}-mapeditor "${EPYTHON} ./map_editor.py" \
-		/usr/$(get_libdir)/${PN}
-
-	newicon modules/default/images/buttons/icon.png ${PN}.png
-	make_desktop_entry ${PN} "Dragon Hunt"
-	make_desktop_entry ${PN}-mapeditor "Dragon Hunt - Editor"
-
-	dodoc README.txt docs/{Changelog,Items.txt,example_map.txt,tiles.txt}
-	dodoc -r docs/*.html
-
-	python_optimize "${ED}/usr/$(get_libdir)"/${PN} \
-		"${ED}/usr/share/${PN}/Dark Ages/data/make_map.py"
-}
-
-pkg_postinst() {
-	echo
-	elog "If you use the map editor then note that maps will be saved as"
-	elog "~/dh_map.txt and must be move to the correct module directory"
-	elog "(within /usr/share/${PN}) by hand."
-	echo
-}

diff --git a/games-rpg/dragonhunt/metadata.xml b/games-rpg/dragonhunt/metadata.xml
deleted file mode 100644
index 78274e0fa55..00000000000
--- a/games-rpg/dragonhunt/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/profiles/package.mask b/profiles/package.mask
index 4af73e15102..570df81ef74 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -728,11 +728,6 @@ dev-ruby/jeweler
 # Removal in 30 days.  Bug #703196.
 media-libs/libclalsadrv
 
-# David Seifert <soap@gentoo.org> (2019-12-25)
-# Py2 only, dead upstream, no py3 port in sight.
-# Removal in 30 days.  Bug #703792.
-games-rpg/dragonhunt
-
 # Tomáš Mózes <hydrapolic@gentoo.org> (2019-12-19)
 # Needs more testing.
 =app-emulation/xen-4.13.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-02-03  6:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-03  6:36 [gentoo-commits] repo/gentoo:master commit in: profiles/, games-rpg/dragonhunt/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox