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 EC4A71582ED for ; Sun, 9 Jun 2024 16:13:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C2ADE2A93; Sun, 9 Jun 2024 16:13:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E5F4BE2A93 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 0FF9B340BEA 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 400861C87 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: <1717949231.78debd196b1250fc571f83b9374862220bd8d44e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libqt6pas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libqt6pas/libqt6pas-1.0.0.ebuild X-VCS-Directories: dev-libs/libqt6pas/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 78debd196b1250fc571f83b9374862220bd8d44e 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: 4e8d7c53-9c3c-458c-b299-da09847385fd X-Archives-Hash: 18b4cb83ce7c90d19cce9de4553d37d6 commit: 78debd196b1250fc571f83b9374862220bd8d44e Author: Sam James gentoo org> AuthorDate: Sun Jun 9 16:05:23 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 9 16:07:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78debd19 dev-libs/libqt6pas: add missing RDEPEND, update SRC_URI Signed-off-by: Sam James gentoo.org> dev-libs/libqt6pas/libqt6pas-1.0.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-libs/libqt6pas/libqt6pas-1.0.0.ebuild b/dev-libs/libqt6pas/libqt6pas-1.0.0.ebuild index 26de772a8409..6b5fbcaef8f8 100644 --- a/dev-libs/libqt6pas/libqt6pas-1.0.0.ebuild +++ b/dev-libs/libqt6pas/libqt6pas-1.0.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020-2023 Gentoo Authors +# Copyright 2020-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,7 +9,7 @@ MY_P="lazarus-3.0-0" DESCRIPTION="Free Pascal Qt6 bindings library updated by lazarus IDE." HOMEPAGE="https://gitlab.com/freepascal.org/lazarus/lazarus" -SRC_URI="mirror://sourceforge/lazarus/${MY_P}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://downloads.sourceforge.net/lazarus/${MY_P}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" LICENSE="LGPL-3" @@ -18,6 +18,7 @@ SLOT="0/2.2" DEPEND=" dev-qt/qtbase:6 " +RDEPEND="${DEPEND}" S="${WORKDIR}/lazarus/lcl/interfaces/qt6/cbindings"