From 71deace00d1a2b091313fe137ab7092418c6f87c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 10 Feb 2020 21:05:55 +0000 Subject: gentoo resync : 10.02.2020 --- games-simulation/singularity/Manifest | 2 +- .../singularity/singularity-1.0_alpha1-r1.ebuild | 46 ++++++++++++++++++++++ .../singularity/singularity-1.0_alpha1.ebuild | 44 --------------------- 3 files changed, 47 insertions(+), 45 deletions(-) create mode 100644 games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild delete mode 100644 games-simulation/singularity/singularity-1.0_alpha1.ebuild (limited to 'games-simulation/singularity') diff --git a/games-simulation/singularity/Manifest b/games-simulation/singularity/Manifest index c5a28d451211..13db3ea56d1b 100644 --- a/games-simulation/singularity/Manifest +++ b/games-simulation/singularity/Manifest @@ -1,4 +1,4 @@ DIST endgame-singularity-music-007.zip 51774799 BLAKE2B 78595b16e422d2312be860686aca9401f6f1eed35fe40dbbc3a3999b1feb5e32aa6d51a66d94c9241aca2b6606bb7135491298b94c8033a1437c2cd7b23f9120 SHA512 ab46e77c833085f0c5b1b46fef72ab807e79ca422ad043ef67a4bf4384cb0177319f21b4bd01496e6c3fc6fe9a2f36ec256e19f0e829ad7bf9f0c5bd38bf0fe5 DIST singularity-1.0a1.tar.gz 1927083 BLAKE2B aeed099dd33c135f5b2e21f5e907646f32aaa0879a1b2e1f09c19045499ae52b004a8f52fee72bfe0977805899e4c7cdff6abf36e9fd3604f73cba7e395c265e SHA512 8ce624a50819e0abc04fd81a1d7658eab64ea8325de0a5790ec2a92e5fa6b62cfef8fe705fe8b209194c05927e3cf5adfc6f48934e0a70edf8b251c24084fc25 -EBUILD singularity-1.0_alpha1.ebuild 1244 BLAKE2B a713c6bb60a887afde322b73483c8d387b7ea4d23a5b294cfbaa6c7513c49f1356ec4200057abeebb3c590c5dded3872da0954c36c14b5a72146bb7a1519f9fd SHA512 805522acd2b6812cc98da1ba53b0bd7710906073ff1ef168e7b3a9baca300ce96bb14d696e1b46ee604e641700b377899ec9a287d7bdf0980b30d0afa9cd3092 +EBUILD singularity-1.0_alpha1-r1.ebuild 1294 BLAKE2B 2b620f4eb89cd9974670f4cf3fc78538aa7df113dc2c43df0020d25501161761cf27215cf7a7a6b15072e9442f52adfa8907ff1cf078dae899d2e5f4eb3588de SHA512 cfb5fb0a506e1057a1b1478e853e5f589943a272eee4dec59f4426f826db43e356a10c399dacd7ddd7f9022a89a78536286d8c6d12cf495b762d50c1c57c2704 MISC metadata.xml 342 BLAKE2B 599486446074178c42f941d12e8babc285e015798d4c925f93d52040278ebba1d538223639d0d03d387901fbf216d0adb5c514f2a49318da3571509e03b52ec5 SHA512 558b706d3e1ac877859ef93f34cebbca1e477a8dc92ef7448b288c8794fc8ae9e5a62b54e9ec8f553637db7a6b051c3908c036bf704bcbd4d44a030aa7fde983 diff --git a/games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild b/games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild new file mode 100644 index 000000000000..644b755a6c29 --- /dev/null +++ b/games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit desktop eutils python-single-r1 + +MUSIC="endgame-${PN}-music-007" +DESCRIPTION="Simulation of a true AI. Go from computer to computer, chased by the whole world" +HOMEPAGE="http://www.emhsoft.com/singularity/ https://github.com/singularity/singularity" +SRC_URI="https://github.com/singularity/singularity/releases/download/${P/_alpha/a}/${P/_alpha/a}.tar.gz + http://emhsoft.com/singularity/${MUSIC}.zip" + +LICENSE="GPL-2 CC-BY-SA-2.5" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/numpy[${PYTHON_MULTI_USEDEP}] + dev-python/pygame[${PYTHON_MULTI_USEDEP}] + dev-python/polib[${PYTHON_MULTI_USEDEP}] + ') +" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/unzip" + +S="${WORKDIR}/${P/_alpha/a}" + +src_install() { + insinto /usr/share/${PN} + doins -r "${PN}" "${PN}.py" + + python_optimize "${ED}/usr/share/${PN}" + + insinto /usr/share/${PN}/${PN}/music + doins "${WORKDIR}"/${MUSIC}/* + + make_wrapper ${PN} "${EPYTHON} ${PN}.py" /usr/share/${PN} + dodoc README.txt TODO Changelog AUTHORS + + domenu "${PN}.desktop" + newicon "${PN}"/data/themes/default/images/icon.png "${PN}.png" +} diff --git a/games-simulation/singularity/singularity-1.0_alpha1.ebuild b/games-simulation/singularity/singularity-1.0_alpha1.ebuild deleted file mode 100644 index d54f147ac48d..000000000000 --- a/games-simulation/singularity/singularity-1.0_alpha1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit desktop eutils python-single-r1 - -MUSIC="endgame-${PN}-music-007" -DESCRIPTION="Simulation of a true AI. Go from computer to computer, chased by the whole world" -HOMEPAGE="http://www.emhsoft.com/singularity/ https://github.com/singularity/singularity" -SRC_URI="https://github.com/singularity/singularity/releases/download/${P/_alpha/a}/${P/_alpha/a}.tar.gz - http://emhsoft.com/singularity/${MUSIC}.zip" - -LICENSE="GPL-2 CC-BY-SA-2.5" -SLOT="0" -KEYWORDS="~amd64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pygame[${PYTHON_USEDEP}] - dev-python/polib[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND="app-arch/unzip" - -S="${WORKDIR}/${P/_alpha/a}" - -src_install() { - insinto /usr/share/${PN} - doins -r "${PN}" "${PN}.py" - - python_optimize "${ED}/usr/share/${PN}" - - insinto /usr/share/${PN}/${PN}/music - doins "${WORKDIR}"/${MUSIC}/* - - make_wrapper ${PN} "${EPYTHON} ${PN}.py" /usr/share/${PN} - dodoc README.txt TODO Changelog AUTHORS - - domenu "${PN}.desktop" - newicon "${PN}"/data/themes/default/images/icon.png "${PN}.png" -} -- cgit v1.2.3