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 E5A1A158089 for ; Tue, 17 Oct 2023 05:24:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 360BC2BC059; Tue, 17 Oct 2023 05:24:21 +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 1A4232BC059 for ; Tue, 17 Oct 2023 05:24:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2C246335CDF for ; Tue, 17 Oct 2023 05:24:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 859DE1290 for ; Tue, 17 Oct 2023 05:24:17 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1697520224.0fa2f1beb375ebf9bad34a4e06b260c720144c94.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/open-supaplex/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/open-supaplex/open-supaplex-7.1.2.ebuild X-VCS-Directories: games-arcade/open-supaplex/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 0fa2f1beb375ebf9bad34a4e06b260c720144c94 X-VCS-Branch: master Date: Tue, 17 Oct 2023 05:24:17 +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: d6da4735-128f-4dab-b167-9a8ded1d610c X-Archives-Hash: 8f5244c343c3297b88cc91f068226324 commit: 0fa2f1beb375ebf9bad34a4e06b260c720144c94 Author: Alexey Sokolov asokolov org> AuthorDate: Wed Sep 27 23:16:05 2023 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue Oct 17 05:23:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa2f1be games-arcade/open-supaplex: drop 7.1.2 Signed-off-by: Alexey Sokolov asokolov.org> Signed-off-by: Yixun Lan gentoo.org> .../open-supaplex/open-supaplex-7.1.2.ebuild | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/games-arcade/open-supaplex/open-supaplex-7.1.2.ebuild b/games-arcade/open-supaplex/open-supaplex-7.1.2.ebuild deleted file mode 100644 index 342e8a21d5f7..000000000000 --- a/games-arcade/open-supaplex/open-supaplex-7.1.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop flag-o-matic toolchain-funcs - -DESCRIPTION="OSS reimplementation of Supaplex in C and SDL" -HOMEPAGE="https://github.com/sergiou87/open-supaplex" -SRC_URI="https://github.com/sergiou87/open-supaplex/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - media-libs/libsdl2[joystick,sound,video] - media-libs/sdl2-mixer[vorbis] -" -DEPEND="${RDEPEND}" -BDEPEND=" - test? ( dev-lang/ruby ) -" - -src_prepare() { - default - rm -r resources/audio-{l,m}q || die -} - -src_compile() { - append-cflags -DFILE_FHS_XDG_DIRS -DFILE_DATA_PATH="${EPREFIX}/usr/share/OpenSupaplex" - emake -C linux CC="$(tc-getCC)" -} - -src_test() { - emake -C tests CC="$(tc-getCC)" - # Avoid installing savegames, configs, etc, if any were written during the test - cp -R resources "${T}/test" || die - cd tests || die - # gems are not used by the test, but by default ruby fails to start if - # dev-ruby/rubygems is not installed. dev-lang/ruby depends on that package - # via PDEPEND which is why it's not available if ruby was pulled as a - # dependency to open-supaplex on clean machine. - # https://bugs.gentoo.org/739126 - OPENSUPAPLEX_PATH="${T}/test" ruby --disable=gems ./run-tests.rb ./opensupaplex || die -} - -src_install() { - dobin linux/opensupaplex - insinto /usr/share/OpenSupaplex - doins -r resources/* - doicon "${FILESDIR}/open-supaplex.svg" - make_desktop_entry opensupaplex OpenSupaplex open-supaplex -}