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 8C0CF15802E for ; Sun, 30 Jun 2024 12:41:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D116E2B27; Sun, 30 Jun 2024 12:41:46 +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 EF0B9E2B27 for ; Sun, 30 Jun 2024 12:41:45 +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 13BCB340C53 for ; Sun, 30 Jun 2024 12:41:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8638A1DA1 for ; Sun, 30 Jun 2024 12:41:42 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1719751241.727c2f7752bd688045a5509f0d73d89d04885c06.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rgbds/rgbds-0.7.0.ebuild X-VCS-Directories: dev-util/rgbds/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 727c2f7752bd688045a5509f0d73d89d04885c06 X-VCS-Branch: master Date: Sun, 30 Jun 2024 12:41:42 +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: c400e5ed-476b-4caf-9bac-cf197046f514 X-Archives-Hash: 9a283b0f830a8d1d020be59c1d4f528b commit: 727c2f7752bd688045a5509f0d73d89d04885c06 Author: orbea riseup net> AuthorDate: Sat Jun 29 14:06:29 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Jun 30 12:40:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727c2f77 dev-util/rgbds: drop 0.7.0 Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/37360 Signed-off-by: Conrad Kostecki gentoo.org> dev-util/rgbds/rgbds-0.7.0.ebuild | 49 --------------------------------------- 1 file changed, 49 deletions(-) diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild deleted file mode 100644 index 96b85fe6003d..000000000000 --- a/dev-util/rgbds/rgbds-0.7.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Rednex Game Boy Development System" -HOMEPAGE="https://rgbds.gbdev.io/" -if [[ "${PV}" == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/gbdev/${PN}.git" -else - SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -DEPEND="media-libs/libpng" -RDEPEND="${DEPEND}" -BDEPEND=" - sys-devel/bison - virtual/pkgconfig -" - -src_compile() { - append-flags -DNDEBUG - - emake Q= \ - CC="$(tc-getCC)" \ - CXX="$(tc-getCXX)" \ - PKG_CONFIG="$(tc-getPKG_CONFIG)" -} - -src_test() { - local dir - for dir in asm link fix gfx; do - pushd "test/${dir}" >/dev/null || die - ./test.sh || die - popd >/dev/null || die - done -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install - dodoc README.rst -}