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 077A715817D for ; Sun, 9 Jun 2024 16:13:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1EFF3E2A94; Sun, 9 Jun 2024 16:13:26 +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 00DEFE2A94 for ; Sun, 9 Jun 2024 16:13:25 +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 1B37D340C3C for ; Sun, 9 Jun 2024 16:13:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 665841C89 for ; Sun, 9 Jun 2024 16:13:22 +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: <1717949350.1f7f99372581b7762ae615604d1a92dcb98ebccc.sam@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.0.ebuild X-VCS-Directories: dev-lang/lazarus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1f7f99372581b7762ae615604d1a92dcb98ebccc X-VCS-Branch: master Date: Sun, 9 Jun 2024 16:13:22 +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: 59b3d728-21a3-441d-b1c7-46ff013b1932 X-Archives-Hash: d6747fa236c3d27bd7b3e7666a155026 commit: 1f7f99372581b7762ae615604d1a92dcb98ebccc Author: Sam James gentoo org> AuthorDate: Sun Jun 9 16:09:10 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 9 16:09:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7f9937 dev-lang/lazarus: fix variable order, fix indentation Signed-off-by: Sam James gentoo.org> dev-lang/lazarus/lazarus-3.0.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dev-lang/lazarus/lazarus-3.0.ebuild b/dev-lang/lazarus/lazarus-3.0.ebuild index f1c6a08ef987..e1e4a1f49b4a 100644 --- a/dev-lang/lazarus/lazarus-3.0.ebuild +++ b/dev-lang/lazarus/lazarus-3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,7 +11,8 @@ FPCVER="3.2.2" DESCRIPTION="feature rich visual programming environment emulating Delphi" HOMEPAGE="https://www.lazarus-ide.org/" -SRC_URI="mirror://sourceforge/lazarus/${P}-0.tar.gz" +SRC_URI="https://downloads.sourceforge.net/lazarus/${P}-0.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="GPL-2 LGPL-2.1-with-linking-exception" SLOT="0/2.2" # Note: Slotting Lazarus needs slotting fpc, see DEPEND. @@ -36,18 +37,17 @@ DEPEND=" >=dev-lang/fpc-${FPCVER}[source] >=sys-devel/binutils-2.19.1-r1:= gui? ( - gtk2? ( x11-libs/gtk+:2 ) - gtk? ( x11-libs/gtk+:3 ) - qt5? ( dev-libs/libqt5pas:0/2.2 ) - qt6? ( dev-libs/libqt6pas:0/2.2 ) -)" + gtk2? ( x11-libs/gtk+:2 ) + gtk? ( x11-libs/gtk+:3 ) + qt5? ( dev-libs/libqt5pas:0/2.2 ) + qt6? ( dev-libs/libqt6pas:0/2.2 ) + ) +" BDEPEND="net-misc/rsync" RDEPEND="${DEPEND}" RESTRICT="strip" #269221 -S="${WORKDIR}/${PN}" - PATCHES=( "${FILESDIR}"/${P}-makefile.patch )