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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6DE91158042 for ; Sun, 10 Nov 2024 21:43:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7475EE0829; Sun, 10 Nov 2024 21:43:55 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5788DE0829 for ; Sun, 10 Nov 2024 21:43:55 +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 5E63533BF39 for ; Sun, 10 Nov 2024 21:43:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B973FAED for ; Sun, 10 Nov 2024 21:43:52 +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: <1731274999.5326e72b51cf844d9695ca647df6151c9dd49aa3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clazy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/clazy/clazy-1.12.ebuild X-VCS-Directories: dev-util/clazy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5326e72b51cf844d9695ca647df6151c9dd49aa3 X-VCS-Branch: master Date: Sun, 10 Nov 2024 21:43:52 +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: 6fae3c79-666d-4bcf-b45e-7f116ce8f847 X-Archives-Hash: 0a4e8a545c2d429f51601ed5bdbd1062 commit: 5326e72b51cf844d9695ca647df6151c9dd49aa3 Author: Paul Zander gmail com> AuthorDate: Sun Nov 10 21:26:08 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 10 21:43:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5326e72b dev-util/clazy: introduce more test DEPENDs Don't skip tests in favour of requiring the needed packages. Signed-off-by: Paul Zander gmail.com> Signed-off-by: Sam James gentoo.org> dev-util/clazy/clazy-1.12.ebuild | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/dev-util/clazy/clazy-1.12.ebuild b/dev-util/clazy/clazy-1.12.ebuild index a04372e51041..bcf6a9d8df19 100644 --- a/dev-util/clazy/clazy-1.12.ebuild +++ b/dev-util/clazy/clazy-1.12.ebuild @@ -25,7 +25,11 @@ DEPEND="${RDEPEND}" BDEPEND=" test? ( ${PYTHON_DEPS} + dev-qt/qtbase:6[network,xml] + dev-qt/qtmultimedia:6 dev-qt/qtnetworkauth:6 + dev-qt/qtscxml:6[qml] + dev-qt/qtsvg:6 ) " @@ -77,26 +81,7 @@ src_test() { local -x PATH="${BUILD_DIR}/${LLVM_ROOT}/bin:${BUILD_DIR}/bin:${BUILD_DIR}:${PATH}" local -x LD_LIBRARY_PATH="${BUILD_DIR}/lib" - # NOTE or DEPEND on "test? ( dev-qt/qtscxml:6[qml] )" - local -x CMAKE_SKIP_TESTS=() - chmod +x "${BUILD_DIR}"/clazy || die - if ! has_version dev-qt/qtscxml:6; then - CMAKE_SKIP_TESTS+=( - # cannot find -lQt6StateMachine: No such file or directory - "old-style-connect" - ) - fi - - if ! has_version dev-qt/qtdeclarative:6; then - CMAKE_SKIP_TESTS+=( - # lowercase-qml-type-name/main.cpp:3:10: fatal error: 'QtQml/QQmlEngine' file not found - "lowercase-qml-type-name" - # no-module-include/main.cpp:5:10: fatal error: 'QtQml/QtQml' file not found - "no-module-include" - ) - fi - cmake_src_test }