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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A927158042 for ; Sat, 9 Nov 2024 22:32:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 462F8E09B5; Sat, 9 Nov 2024 22:32:35 +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 266F8E09B5 for ; Sat, 9 Nov 2024 22:32:35 +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 3817A33BE19 for ; Sat, 9 Nov 2024 22:32:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 807DCAED for ; Sat, 9 Nov 2024 22:32:32 +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: <1731191520.8d3305a525177701f99364489694d5374337079e.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/libktorrent/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/libktorrent/libktorrent-9999.ebuild net-libs/libktorrent/metadata.xml X-VCS-Directories: net-libs/libktorrent/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8d3305a525177701f99364489694d5374337079e X-VCS-Branch: master Date: Sat, 9 Nov 2024 22:32:32 +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: f69d1140-aac6-484d-b6d2-0a20c1895502 X-Archives-Hash: f9e5492fb7f4343d4a94a11354c8eeec commit: 8d3305a525177701f99364489694d5374337079e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Nov 9 22:23:25 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Nov 9 22:32:00 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8d3305a5 net-libs/libktorrent: Add IUSE xfs Used in public header, so part of RDEPEND. Upstream commit fb59986a15ca93346a1e2f4cbb0c90804dc0eb40 Bug: https://bugs.gentoo.org/938576 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/libktorrent/libktorrent-9999.ebuild | 11 +++++++++-- net-libs/libktorrent/metadata.xml | 3 +++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/net-libs/libktorrent/libktorrent-9999.ebuild b/net-libs/libktorrent/libktorrent-9999.ebuild index 7ccea8acef..f9f2c7c5df 100644 --- a/net-libs/libktorrent/libktorrent-9999.ebuild +++ b/net-libs/libktorrent/libktorrent-9999.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/ktorrent/ https://userbase.kde.org/KTorrent" LICENSE="GPL-2+" SLOT="6" KEYWORDS="" -IUSE="" +IUSE="xfs" COMMON_DEPEND=" >=app-crypt/qca-2.3.7:2[qt6(+)] @@ -30,6 +30,7 @@ COMMON_DEPEND=" >=kde-frameworks/ki18n-${KFMIN}:6 >=kde-frameworks/kio-${KFMIN}:6 >=kde-frameworks/solid-${KFMIN}:6 + xfs? ( sys-fs/xfsprogs ) " DEPEND="${COMMON_DEPEND} >=dev-libs/boost-1.71 @@ -49,11 +50,17 @@ src_prepare() { KTorrent6Config.cmake.in || die } +src_configure() { + local mycmakeargs=( + -DWITH_XFS=$(usex xfs) + ) + ecm_src_configure +} + src_test() { # failing network tests local myctestargs=( -E "(fin|packetloss|send|superseedtest|transmit|utppolltest)" ) - ecm_src_test } diff --git a/net-libs/libktorrent/metadata.xml b/net-libs/libktorrent/metadata.xml index d925f24397..5e3a5f1a91 100644 --- a/net-libs/libktorrent/metadata.xml +++ b/net-libs/libktorrent/metadata.xml @@ -8,4 +8,7 @@ https://bugs.kde.org/ + + Enable XFS specific disk preallocation support via sys-fs/xfsprogs +