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 2127F15814C for ; Tue, 10 Oct 2023 18:25:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 245982BC017; Tue, 10 Oct 2023 18:25:57 +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 083EA2BC017 for ; Tue, 10 Oct 2023 18:25:57 +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 DEA13335C31 for ; Tue, 10 Oct 2023 18:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44FB7EBF for ; Tue, 10 Oct 2023 18:25:54 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1696962348.eceec7ad29cfc1efe0dece1f93a5c0e484a370df.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/microsoft-edge/microsoft-edge-117.0.2045.55.ebuild X-VCS-Directories: www-client/microsoft-edge/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: eceec7ad29cfc1efe0dece1f93a5c0e484a370df X-VCS-Branch: master Date: Tue, 10 Oct 2023 18:25:54 +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: ae9b6608-28f5-4444-9d75-fc94fffaed21 X-Archives-Hash: f9466a0f3000e2c0fa905852c60aa370 commit: eceec7ad29cfc1efe0dece1f93a5c0e484a370df Author: Mike Gilbert gentoo org> AuthorDate: Tue Oct 10 18:20:53 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Oct 10 18:25:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eceec7ad www-client/microsoft-edge: add qt6 USE flag Bug: https://bugs.gentoo.org/915122 Signed-off-by: Mike Gilbert gentoo.org> www-client/microsoft-edge/microsoft-edge-117.0.2045.55.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/www-client/microsoft-edge/microsoft-edge-117.0.2045.55.ebuild b/www-client/microsoft-edge/microsoft-edge-117.0.2045.55.ebuild index 40e3af0e1470..332a69d1f006 100644 --- a/www-client/microsoft-edge/microsoft-edge-117.0.2045.55.ebuild +++ b/www-client/microsoft-edge/microsoft-edge-117.0.2045.55.ebuild @@ -23,7 +23,7 @@ SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_ LICENSE="microsoft-edge" SLOT="0" RESTRICT="bindist mirror strip" -IUSE="+mip qt5" +IUSE="+mip qt5 qt6" RDEPEND=" >=app-accessibility/at-spi2-core-2.46.0:2 @@ -61,6 +61,7 @@ RDEPEND=" dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) + qt6? ( dev-qt/qtbase:6[gui,widgets] ) " QA_PREBUILT="*" @@ -118,6 +119,9 @@ src_install() { if ! use qt5; then rm "${EDGE_HOME}/libqt5_shim.so" || die fi + if ! use qt6; then + rm "${EDGE_HOME}/libqt6_shim.so" || die + fi pax-mark m "${EDGE_HOME}/msedge" }