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 10330158089 for ; Tue, 5 Sep 2023 13:06:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CA572BC074; Tue, 5 Sep 2023 13:05:54 +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 1C6E22BC075 for ; Tue, 5 Sep 2023 13:05:54 +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 59222335D0D for ; Tue, 5 Sep 2023 13:05:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6A31148 for ; Tue, 5 Sep 2023 13:05:48 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1693918874.653d474c2217be2fe3ef5aeb000236c9a8e510fc.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qt3d/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qt3d/qt3d-6.5.2-r1.ebuild dev-qt/qt3d/qt3d-6.5.9999.ebuild dev-qt/qt3d/qt3d-6.9999.ebuild X-VCS-Directories: dev-qt/qt3d/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 653d474c2217be2fe3ef5aeb000236c9a8e510fc X-VCS-Branch: master Date: Tue, 5 Sep 2023 13:05:48 +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: 37baffd9-b902-4bba-9a45-d95a8c3f66a1 X-Archives-Hash: 8230e6fdbbad0e250245070981f1ba55 commit: 653d474c2217be2fe3ef5aeb000236c9a8e510fc Author: Ionen Wolkens gentoo org> AuthorDate: Mon Sep 4 19:19:18 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 5 13:01:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=653d474c dev-qt/qt3d: do not fetch assimp in live (qt6) Same deal as qtquick3d, likely more cases where we are fetching unneeded submodules (haven't verified), but this one was inconsistent. Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qt3d/qt3d-6.5.2-r1.ebuild | 2 ++ dev-qt/qt3d/qt3d-6.5.9999.ebuild | 2 ++ dev-qt/qt3d/qt3d-6.9999.ebuild | 2 ++ 3 files changed, 6 insertions(+) diff --git a/dev-qt/qt3d/qt3d-6.5.2-r1.ebuild b/dev-qt/qt3d/qt3d-6.5.2-r1.ebuild index 938e0258bcd8..8990362039c3 100644 --- a/dev-qt/qt3d/qt3d-6.5.2-r1.ebuild +++ b/dev-qt/qt3d/qt3d-6.5.2-r1.ebuild @@ -9,6 +9,8 @@ DESCRIPTION="3D rendering module for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64" +elif [[ ${QT6_BUILD_TYPE} == live ]]; then + EGIT_SUBMODULES=() # skip qtquick3d-assimp fi IUSE="qml vulkan" diff --git a/dev-qt/qt3d/qt3d-6.5.9999.ebuild b/dev-qt/qt3d/qt3d-6.5.9999.ebuild index 938e0258bcd8..8990362039c3 100644 --- a/dev-qt/qt3d/qt3d-6.5.9999.ebuild +++ b/dev-qt/qt3d/qt3d-6.5.9999.ebuild @@ -9,6 +9,8 @@ DESCRIPTION="3D rendering module for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64" +elif [[ ${QT6_BUILD_TYPE} == live ]]; then + EGIT_SUBMODULES=() # skip qtquick3d-assimp fi IUSE="qml vulkan" diff --git a/dev-qt/qt3d/qt3d-6.9999.ebuild b/dev-qt/qt3d/qt3d-6.9999.ebuild index 938e0258bcd8..8990362039c3 100644 --- a/dev-qt/qt3d/qt3d-6.9999.ebuild +++ b/dev-qt/qt3d/qt3d-6.9999.ebuild @@ -9,6 +9,8 @@ DESCRIPTION="3D rendering module for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64" +elif [[ ${QT6_BUILD_TYPE} == live ]]; then + EGIT_SUBMODULES=() # skip qtquick3d-assimp fi IUSE="qml vulkan"