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 EB73815800F for ; Tue, 14 Feb 2023 12:02:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17B1EE07EA; Tue, 14 Feb 2023 12:02:47 +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 020F5E07EA for ; Tue, 14 Feb 2023 12:02:46 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F1FE340B9C for ; Tue, 14 Feb 2023 12:02:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 957648AD for ; Tue, 14 Feb 2023 12:02:44 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1676302985.31ba3a34b8c40f7bd68c5998640fac8e4da2930e.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/xtl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/xtl/xtl-0.7.5.ebuild X-VCS-Directories: dev-cpp/xtl/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 31ba3a34b8c40f7bd68c5998640fac8e4da2930e X-VCS-Branch: master Date: Tue, 14 Feb 2023 12:02:44 +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: 0554725a-a24b-42cc-8252-84f00aba63bd X-Archives-Hash: 8b4c0f2227f060e1ec4ea00047895c02 commit: 31ba3a34b8c40f7bd68c5998640fac8e4da2930e Author: Kamal Abdellatif tgf pw> AuthorDate: Mon Feb 13 10:26:09 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Feb 13 15:43:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=31ba3a34 dev-cpp/xtl: move tests out of src_compile Signed-off-by: Kamal Abdellatif tgf.pw> dev-cpp/xtl/xtl-0.7.5.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-cpp/xtl/xtl-0.7.5.ebuild b/dev-cpp/xtl/xtl-0.7.5.ebuild index b1a9cf5da..939a65d5f 100644 --- a/dev-cpp/xtl/xtl-0.7.5.ebuild +++ b/dev-cpp/xtl/xtl-0.7.5.ebuild @@ -47,11 +47,13 @@ src_configure() { } src_compile() { - use test && cmake_src_compile xtest - if use doc; then cd "${WORKDIR}/${P}/docs" || die emake html BUILDDIR="${BUILD_DIR}" HTML_DOCS=( "${BUILD_DIR}/html/." ) fi } + +src_test() { + cmake_src_compile xtest +}