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 A98B7158041 for ; Thu, 21 Mar 2024 02:45:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD7BBE29C3; Thu, 21 Mar 2024 02:45:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B71CEE29C3 for ; Thu, 21 Mar 2024 02:45:52 +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 06024335DEB for ; Thu, 21 Mar 2024 02:45:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7311A1599 for ; Thu, 21 Mar 2024 02:45:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710989111.3b6411d567fe741d9c4ad6a04c81aea8f13fd7cc.sam@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 dev-util/rgbds/rgbds-9999.ebuild X-VCS-Directories: dev-util/rgbds/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3b6411d567fe741d9c4ad6a04c81aea8f13fd7cc X-VCS-Branch: master Date: Thu, 21 Mar 2024 02:45:49 +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: 31056363-8384-4fc9-ac85-41d4ad40a8e8 X-Archives-Hash: cf43d00b418ac10c80494afed5417348 commit: 3b6411d567fe741d9c4ad6a04c81aea8f13fd7cc Author: Sam James gentoo org> AuthorDate: Thu Mar 21 02:44:20 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 21 02:45:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b6411d5 dev-util/rgbds: tweak phase order Signed-off-by: Sam James gentoo.org> dev-util/rgbds/rgbds-0.7.0.ebuild | 10 +++++----- dev-util/rgbds/rgbds-9999.ebuild | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild index 562335e6e1e6..dad5871d9c6d 100644 --- a/dev-util/rgbds/rgbds-0.7.0.ebuild +++ b/dev-util/rgbds/rgbds-0.7.0.ebuild @@ -32,11 +32,6 @@ src_compile() { PKG_CONFIG="$(tc-getPKG_CONFIG)" } -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install - dodoc README.rst -} - src_test() { local dir for dir in asm link fix gfx; do @@ -45,3 +40,8 @@ src_test() { popd >/dev/null || die done } + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install + dodoc README.rst +} diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild index 15028b55d8d2..1c56a141d6b9 100644 --- a/dev-util/rgbds/rgbds-9999.ebuild +++ b/dev-util/rgbds/rgbds-9999.ebuild @@ -32,11 +32,6 @@ src_compile() { PKG_CONFIG="$(tc-getPKG_CONFIG)" } -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install - dodoc README.md -} - src_test() { local dir for dir in asm link fix gfx; do @@ -45,3 +40,8 @@ src_test() { popd >/dev/null || die done } + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install + dodoc README.md +}