From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D9CDD158086 for ; Sun, 14 Nov 2021 00:45:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F0B32BC0CF; Sun, 14 Nov 2021 00:45:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E99752BC0DF for ; Sun, 14 Nov 2021 00:45:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6DFBF335DCC for ; Sun, 14 Nov 2021 00:45:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE3CB1DA for ; Sun, 14 Nov 2021 00:45:00 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1636850654.b40f1540b5b38f261a42b6dbe0762198f95feb7f.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/singularity/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-simulation/singularity/singularity-1.00.ebuild X-VCS-Directories: games-simulation/singularity/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: b40f1540b5b38f261a42b6dbe0762198f95feb7f X-VCS-Branch: master Date: Sun, 14 Nov 2021 00:45:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8508e8c-adc9-4756-bc0c-8d2d47e6a205 X-Archives-Hash: fcb058d2d50b2d4f0daa6a556c5d6202 commit: b40f1540b5b38f261a42b6dbe0762198f95feb7f Author: Ionen Wolkens gentoo org> AuthorDate: Sat Nov 13 23:43:27 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun Nov 14 00:44:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b40f1540 games-simulation/singularity: drop 1.00 Was barely functional in current state. Signed-off-by: Ionen Wolkens gentoo.org> .../singularity/singularity-1.00.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/games-simulation/singularity/singularity-1.00.ebuild b/games-simulation/singularity/singularity-1.00.ebuild deleted file mode 100644 index 02d8aec65fc..00000000000 --- a/games-simulation/singularity/singularity-1.00.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_SINGLE_IMPL=1 - -inherit desktop distutils-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/v${PV}/${P/_alpha/a}.tar.gz" -SRC_URI+=" https://emhsoft.com/singularity/${MUSIC}.zip" -S="${WORKDIR}/${P/_alpha/a}" - -LICENSE="GPL-2 CC-BY-SA-2.5" -SLOT="0" -KEYWORDS="~amd64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -BDEPEND="app-arch/unzip" -DEPEND=" - $(python_gen_cond_dep ' - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pygame[${PYTHON_USEDEP}] - dev-python/polib[${PYTHON_USEDEP}] - ') -" -# sdl-mixer is used at runtime (through pygame) -# bug #731702 -RDEPEND=" - ${DEPEND} - media-libs/sdl-mixer[vorbis,wav] - !sys-cluster/singularity -" - -src_install() { - distutils-r1_src_install - - insinto /usr/share/${PN}/${PN}/music - doins "${WORKDIR}"/${MUSIC}/* - - dodoc README.txt TODO - - domenu ${PN}.desktop - newicon ${PN}/data/themes/default/images/icon.png ${PN}.png -}