Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/singularity/
Date: Wed, 23 Jun 2021 02:24:55
Message-Id: 1624414957.99833cb6e8276113e32a31f3474042c8d3a0001a.ionen@gentoo
1 commit: 99833cb6e8276113e32a31f3474042c8d3a0001a
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 23 00:34:56 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 02:22:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99833cb6
7
8 games-simulation/singularity: drop 1.0_alpha1-r2
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-simulation/singularity/Manifest | 1 -
13 .../singularity/singularity-1.0_alpha1-r2.ebuild | 52 ----------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/games-simulation/singularity/Manifest b/games-simulation/singularity/Manifest
17 index b6a2bca0922..e1c83f6ea1e 100644
18 --- a/games-simulation/singularity/Manifest
19 +++ b/games-simulation/singularity/Manifest
20 @@ -1,3 +1,2 @@
21 DIST endgame-singularity-music-007.zip 51774799 BLAKE2B 78595b16e422d2312be860686aca9401f6f1eed35fe40dbbc3a3999b1feb5e32aa6d51a66d94c9241aca2b6606bb7135491298b94c8033a1437c2cd7b23f9120 SHA512 ab46e77c833085f0c5b1b46fef72ab807e79ca422ad043ef67a4bf4384cb0177319f21b4bd01496e6c3fc6fe9a2f36ec256e19f0e829ad7bf9f0c5bd38bf0fe5
22 DIST singularity-1.00.tar.gz 1944972 BLAKE2B 1ca2b120311a19f175014835930610583e8f605dbda3ca3ca96d7e0da86bddeb4b0a264f50a003aa51e05b86ce971255ffda5f498598dde6be370b9a953eb1d0 SHA512 f3581048c5a535fdbd28d2af1ac596f5396fd712b716931f17de75f8b170f0e226deb2c113023357e21e7de1294e4a632515962df9ee43768baf0fb4bbaa08da
23 -DIST singularity-1.0a1.tar.gz 1927083 BLAKE2B aeed099dd33c135f5b2e21f5e907646f32aaa0879a1b2e1f09c19045499ae52b004a8f52fee72bfe0977805899e4c7cdff6abf36e9fd3604f73cba7e395c265e SHA512 8ce624a50819e0abc04fd81a1d7658eab64ea8325de0a5790ec2a92e5fa6b62cfef8fe705fe8b209194c05927e3cf5adfc6f48934e0a70edf8b251c24084fc25
24
25 diff --git a/games-simulation/singularity/singularity-1.0_alpha1-r2.ebuild b/games-simulation/singularity/singularity-1.0_alpha1-r2.ebuild
26 deleted file mode 100644
27 index f9ce06c85c2..00000000000
28 --- a/games-simulation/singularity/singularity-1.0_alpha1-r2.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{7,8} )
36 -
37 -inherit desktop python-single-r1 wrapper
38 -
39 -MUSIC="endgame-${PN}-music-007"
40 -DESCRIPTION="Simulation of a true AI. Go from computer to computer, chased by the whole world"
41 -HOMEPAGE="http://www.emhsoft.com/singularity/ https://github.com/singularity/singularity"
42 -SRC_URI="https://github.com/singularity/singularity/releases/download/${P/_alpha/a}/${P/_alpha/a}.tar.gz
43 - http://emhsoft.com/singularity/${MUSIC}.zip"
44 -S="${WORKDIR}"/${P/_alpha/a}
45 -
46 -LICENSE="GPL-2 CC-BY-SA-2.5"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 -
51 -DEPEND="
52 - ${PYTHON_DEPS}
53 - $(python_gen_cond_dep '
54 - dev-python/numpy[${PYTHON_MULTI_USEDEP}]
55 - dev-python/pygame[${PYTHON_MULTI_USEDEP}]
56 - dev-python/polib[${PYTHON_MULTI_USEDEP}]
57 - ')
58 -"
59 -# sdl-mixer is used at runtime (through pygame)
60 -# bug #731702
61 -RDEPEND="
62 - ${DEPEND}
63 - media-libs/sdl-mixer[vorbis,wav]
64 - !sys-cluster/singularity
65 -"
66 -BDEPEND="app-arch/unzip"
67 -
68 -src_install() {
69 - insinto /usr/share/${PN}
70 - doins -r "${PN}" "${PN}.py"
71 -
72 - python_optimize "${ED}/usr/share/${PN}"
73 -
74 - insinto /usr/share/${PN}/${PN}/music
75 - doins "${WORKDIR}"/${MUSIC}/*
76 -
77 - make_wrapper ${PN} "${EPYTHON} ${PN}.py" /usr/share/${PN}
78 - dodoc README.txt TODO Changelog AUTHORS
79 -
80 - domenu "${PN}.desktop"
81 - newicon "${PN}"/data/themes/default/images/icon.png "${PN}.png"
82 -}