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 27D5215812D for ; Thu, 02 Jan 2025 20:15:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67FA0E0891; Thu, 02 Jan 2025 20:15:10 +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 4B6CEE0891 for ; Thu, 02 Jan 2025 20:15: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54A36335C52 for ; Thu, 02 Jan 2025 20:15:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3C4BD81 for ; Thu, 02 Jan 2025 20:15:07 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1735848886.d3033cb399cd07d6d45908e3843b44d6e27654a4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/lazarus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/lazarus/lazarus-3.4-r1.ebuild X-VCS-Directories: dev-lang/lazarus/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d3033cb399cd07d6d45908e3843b44d6e27654a4 X-VCS-Branch: master Date: Thu, 02 Jan 2025 20:15:07 +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: ae11a3e8-f3b2-431e-99a7-b2492fc5a768 X-Archives-Hash: 3311ac59cb1170ab06366f6b0000acb1 commit: d3033cb399cd07d6d45908e3843b44d6e27654a4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Dec 29 21:54:11 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 2 20:14:46 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3033cb3 dev-lang/lazarus: Drop IUSE qt5 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-lang/lazarus/lazarus-3.4-r1.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dev-lang/lazarus/lazarus-3.4-r1.ebuild b/dev-lang/lazarus/lazarus-3.4-r1.ebuild index db37dcd2026c..2e6c8c1035fe 100644 --- a/dev-lang/lazarus/lazarus-3.4-r1.ebuild +++ b/dev-lang/lazarus/lazarus-3.4-r1.ebuild @@ -18,9 +18,9 @@ S="${WORKDIR}/${PN}" LICENSE="GPL-2 LGPL-2.1-with-linking-exception" SLOT="0/3.0" # Note: Slotting Lazarus needs slotting fpc, see DEPEND. KEYWORDS="amd64 ~x86" -IUSE="+gui gtk2 gtk qt5 qt6 extras" +IUSE="+gui gtk2 gtk qt6 extras" # TODO: Drop REQUIRED_USE per QA policy for USE=gui -REQUIRED_USE="gui? ( ^^ ( gtk2 gtk qt5 qt6 ) ) extras? ( gui )" +REQUIRED_USE="gui? ( ^^ ( gtk2 gtk qt6 ) ) extras? ( gui )" # Pascal ignores CFLAGS and does its own stripping. Nothing else can be done about it. QA_FLAGS_IGNORED=" @@ -41,7 +41,6 @@ DEPEND=" gui? ( gtk2? ( x11-libs/gtk+:2 ) gtk? ( x11-libs/gtk+:3 ) - qt5? ( dev-libs/libqt5pas:0/3.0 ) qt6? ( dev-libs/libqt6pas:0/3.0 ) ) " @@ -72,8 +71,6 @@ src_compile() { export LCL_PLATFORM=gtk2 elif use gtk ; then export LCL_PLATFORM=gtk3 - elif use qt5 ; then - export LCL_PLATFORM=qt5 else export LCL_PLATFORM=qt6 fi