Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/slune/
Date: Thu, 02 Jul 2020 15:29:07
Message-Id: 1593703707.c97a989e01f9e9d59758cd7ee82d94a8c5331f83.zlogene@gentoo
1 commit: c97a989e01f9e9d59758cd7ee82d94a8c5331f83
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 15:20:20 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 15:28:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c97a989e
7
8 games-action/slune: remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/700948
11
12 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
13
14 games-action/slune/Manifest | 1 -
15 games-action/slune/metadata.xml | 8 ----
16 games-action/slune/slune-1.0.15-r1.ebuild | 75 -------------------------------
17 3 files changed, 84 deletions(-)
18
19 diff --git a/games-action/slune/Manifest b/games-action/slune/Manifest
20 deleted file mode 100644
21 index 752dbc5689e..00000000000
22 --- a/games-action/slune/Manifest
23 +++ /dev/null
24 @@ -1 +0,0 @@
25 -DIST Slune-1.0.15.tar.bz2 9549694 BLAKE2B 2178f5bc5f111cc408a7e1391e87bca1a9bd934668c2519b604a9aecc889a560e9bd576e70d1738f51fb9afd9450f47e331c3c036258b6223ed059546d12ee31 SHA512 7f26f91a7db5ccfd2b7063592c53a0b5791f5db5dee582c0f2208af7615c3b7f0b1ed420ecef1f1396a6b1573cb99cc40e886bc47bc22d064bc3ad4814421920
26
27 diff --git a/games-action/slune/metadata.xml b/games-action/slune/metadata.xml
28 deleted file mode 100644
29 index 78274e0fa55..00000000000
30 --- a/games-action/slune/metadata.xml
31 +++ /dev/null
32 @@ -1,8 +0,0 @@
33 -<?xml version="1.0" encoding="UTF-8"?>
34 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 -<pkgmetadata>
36 -<maintainer type="project">
37 - <email>games@g.o</email>
38 - <name>Gentoo Games Project</name>
39 -</maintainer>
40 -</pkgmetadata>
41
42 diff --git a/games-action/slune/slune-1.0.15-r1.ebuild b/games-action/slune/slune-1.0.15-r1.ebuild
43 deleted file mode 100644
44 index 0787e30df9e..00000000000
45 --- a/games-action/slune/slune-1.0.15-r1.ebuild
46 +++ /dev/null
47 @@ -1,75 +0,0 @@
48 -# Copyright 1999-2019 Gentoo Authors
49 -# Distributed under the terms of the GNU General Public License v2
50 -
51 -EAPI=5
52 -
53 -PYTHON_COMPAT=( python2_7 )
54 -
55 -inherit gnome2-utils distutils-r1 games
56 -
57 -DESCRIPTION="A 3D action game with multiplayer mode and amazing graphics"
58 -HOMEPAGE="http://oomadness.tuxfamily.org/en/slune/"
59 -SRC_URI="http://download.gna.org/slune/Slune-${PV}.tar.bz2"
60 -
61 -LICENSE="GPL-2"
62 -SLOT="0"
63 -KEYWORDS="~amd64 ~x86"
64 -IUSE=""
65 -
66 -RDEPEND="virtual/opengl
67 - >=media-libs/libsdl-1.2.6
68 - >=dev-python/soya-0.9
69 - >=dev-python/py2play-0.1.9
70 - >=dev-python/pyopenal-0.1.3
71 - >=dev-python/pyogg-1.1
72 - >=dev-python/pyvorbis-1.1"
73 -DEPEND="${RDEPEND}"
74 -
75 -S=${WORKDIR}/Slune-${PV}
76 -
77 -python_install() {
78 - distutils-r1_python_install \
79 - --install-scripts="${GAMES_BINDIR}" \
80 - --install-data="${GAMES_DATADIR}" \
81 - --install-lib="$(python_get_sitedir)"
82 -
83 - # FHS broke the logic, fix it
84 - local i
85 - for i in $(ls -I locale "${ED}${GAMES_DATADIR}"/${PN}) ; do
86 - dosym "${GAMES_DATADIR}/${PN}/${i}" "$(python_get_sitedir)/${PN}/${i}"
87 - done
88 -}
89 -
90 -src_prepare() {
91 - distutils-r1_src_prepare
92 -}
93 -
94 -src_compile() {
95 - distutils-r1_src_compile
96 -}
97 -
98 -src_install() {
99 - distutils-r1_src_install
100 -
101 - # fix install dest of locales
102 - mv "${ED}${GAMES_DATADIR}"/${PN}/locale "${ED}"/usr/share/locale || die
103 -
104 - newicon -s 48 images/${PN}.48.png ${PN}.png
105 - make_desktop_entry ${PN} "Slune"
106 -
107 - prepgamesdirs
108 -}
109 -
110 -pkg_preinst() {
111 - games_pkg_preinst
112 - gnome2_icon_savelist
113 -}
114 -
115 -pkg_postinst() {
116 - games_pkg_postinst
117 - gnome2_icon_cache_update
118 -}
119 -
120 -pkg_postrm() {
121 - gnome2_icon_cache_update
122 -}