diff options
author | 2023-04-22 10:12:38 +0200 | |
---|---|---|
committer | 2023-04-22 11:12:15 +0200 | |
commit | 90c59a44b5df9e84bed77a001e58382e691f891b (patch) | |
tree | 04d56d4fce2493c86725af8016437030e0a0c42e /net-libs/libktorrent | |
parent | net-irc/konversation: 23.04.0 version bump (diff) | |
download | gentoo-90c59a44b5df9e84bed77a001e58382e691f891b.tar.gz gentoo-90c59a44b5df9e84bed77a001e58382e691f891b.tar.bz2 gentoo-90c59a44b5df9e84bed77a001e58382e691f891b.zip |
net-libs/libktorrent: 23.04.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/libktorrent')
-rw-r--r-- | net-libs/libktorrent/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libktorrent/libktorrent-23.04.0.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/net-libs/libktorrent/Manifest b/net-libs/libktorrent/Manifest index a087984c9377..bfaf9f694b73 100644 --- a/net-libs/libktorrent/Manifest +++ b/net-libs/libktorrent/Manifest @@ -1 +1,2 @@ DIST libktorrent-22.12.3.tar.xz 616864 BLAKE2B 7acccec7a946083bde8ecf7fe67a0e0fef2fa02a8e2d2e8319956249630d902651f56e1b22d4eafbbc2c1709b0b70cfde762475a2bbe4b355941c8a9aecdd4db SHA512 16fbdf1422882928e22c326df432c5d266815a56e83a80056734fd15a38898036d4cef993a86e63ccf8bf8a8618f857535b6aa4bc3c8479e1ad4b0dd3b4521c3 +DIST libktorrent-23.04.0.tar.xz 603984 BLAKE2B cc8517e2c57bd49ae52b717f8eeb6cc8e70b2a6893da06deaff26b13c3c8fb2d7c626ba36311f41536f50278a69ad09709007168da1500aa8c69b0dc5c5d8865 SHA512 4d88beb5bc7893a27eb9a963f2d18aadf8c92bf13260c3520f4b83acf91c4083165019fbe21d24265439461a3541d2f6641c617e6d9d0936842bfbfa22a8b9e7 diff --git a/net-libs/libktorrent/libktorrent-23.04.0.ebuild b/net-libs/libktorrent/libktorrent-23.04.0.ebuild new file mode 100644 index 000000000000..2ef0c863b832 --- /dev/null +++ b/net-libs/libktorrent/libktorrent-23.04.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="forceoptional" +KDE_ORG_CATEGORY="network" +KFMIN=5.104.0 +QTMIN=5.15.5 +VIRTUALX_REQUIRED="test" +inherit ecm gear.kde.org + +DESCRIPTION="BitTorrent library based on KDE Frameworks" +HOMEPAGE="https://apps.kde.org/ktorrent/ https://userbase.kde.org/KTorrent" + +LICENSE="GPL-2+" +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="" + +COMMON_DEPEND=" + >=app-crypt/qca-2.3.0:2[qt5(+)] + >=dev-libs/gmp-6.0.0a:0= + dev-libs/libgcrypt:0= + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtxml-${QTMIN}:5 + >=kde-frameworks/karchive-${KFMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/kcrash-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/solid-${KFMIN}:5 +" +DEPEND="${COMMON_DEPEND} + >=dev-libs/boost-1.71 +" +RDEPEND="${COMMON_DEPEND} + !dev-libs/botan[gmp(-)] +" +BDEPEND="sys-devel/gettext" + +src_prepare() { + ecm_src_prepare + + # Gentoo workaround because gmp.h in MULTILIB_WRAPPED_HEADERS is breaking this + sed -i -e "/^find_package/ s/\"\${LibGMP_MIN_VERSION}\" //" \ + CMakeLists.txt || die + sed -i -e "/^find_dependency/ s/ \"@LibGMP_MIN_VERSION@\"//" \ + KF5TorrentConfig.cmake.in || die +} + +src_test() { + # failing network tests + local myctestargs=( + -E "(fin|packetloss|send|superseedtest|transmit|utppolltest)" + ) + + ecm_src_test +} |