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 B781F158094 for ; Sun, 4 Sep 2022 01:48:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C036FE077C; Sun, 4 Sep 2022 01:48:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5FB3E077C for ; Sun, 4 Sep 2022 01:48:10 +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 92A12340EBE for ; Sun, 4 Sep 2022 01:48:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31C14D4 for ; Sun, 4 Sep 2022 01:48:08 +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: <1662255948.2c09d52d8a0b6ea19c822165ce271821a348570a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libutf8proc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libutf8proc/libutf8proc-2.7.0-r1.ebuild X-VCS-Directories: dev-libs/libutf8proc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2c09d52d8a0b6ea19c822165ce271821a348570a X-VCS-Branch: master Date: Sun, 4 Sep 2022 01:48:08 +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: 00d194be-ff54-45f7-be56-9d949d8d33d7 X-Archives-Hash: 7f2f49b909b5735832837aa8f7e7f6f5 commit: 2c09d52d8a0b6ea19c822165ce271821a348570a Author: Sam James gentoo org> AuthorDate: Sun Sep 4 01:45:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 4 01:45:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c09d52d dev-libs/libutf8proc: fix phase order; use BROOT - Fix phase order (reflect execution order, per devmanual) - Use BROOT for test deps Signed-off-by: Sam James gentoo.org> dev-libs/libutf8proc/libutf8proc-2.7.0-r1.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-libs/libutf8proc/libutf8proc-2.7.0-r1.ebuild b/dev-libs/libutf8proc/libutf8proc-2.7.0-r1.ebuild index 2e009ba02e2d..65c0146e8585 100644 --- a/dev-libs/libutf8proc/libutf8proc-2.7.0-r1.ebuild +++ b/dev-libs/libutf8proc/libutf8proc-2.7.0-r1.ebuild @@ -42,6 +42,12 @@ src_compile() { libdir='$(prefix)'"/$(get_libdir)" } +src_test() { + cp "${BROOT}"/usr/share/unicode-data/{DerivedCoreProperties,{Normalization,auxiliary/GraphemeBreak}Test}.txt data || die + + emake CC="$(tc-getCC)" check +} + src_install() { emake \ DESTDIR="${D}" \ @@ -50,9 +56,3 @@ src_install() { install use static-libs || find "${ED}" -name '*.a' -delete || die } - -src_test() { - cp "${EPREFIX}"/usr/share/unicode-data/{DerivedCoreProperties,{Normalization,auxiliary/GraphemeBreak}Test}.txt data || die - - emake CC="$(tc-getCC)" check -}