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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EAD8B1396D0 for ; Fri, 29 Sep 2017 02:56:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C0ABE0BEC; Fri, 29 Sep 2017 02:56:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19C38E0BEC for ; Fri, 29 Sep 2017 02:56:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42A82341764 for ; Fri, 29 Sep 2017 02:56:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03A4E9078 for ; Fri, 29 Sep 2017 02:56:25 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1506653776.ac0f37a5e2c729fe6b1e87efed958d79b3e9858e.kensington@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 X-VCS-Directories: net-libs/libktorrent/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: ac0f37a5e2c729fe6b1e87efed958d79b3e9858e X-VCS-Branch: master Date: Fri, 29 Sep 2017 02:56:25 +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-Archives-Salt: 0227318a-954a-487b-b827-1813bef390c3 X-Archives-Hash: 43842f874e49f0e2a9a8838ce7e9bdd4 commit: ac0f37a5e2c729fe6b1e87efed958d79b3e9858e Author: Michael Palimaka gentoo org> AuthorDate: Fri Sep 29 02:51:07 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Sep 29 02:56:16 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ac0f37a5 net-libs/libktorrent: sync with main tree Package-Manager: Portage-2.3.8, Repoman-2.3.3 net-libs/libktorrent/libktorrent-9999.ebuild | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/net-libs/libktorrent/libktorrent-9999.ebuild b/net-libs/libktorrent/libktorrent-9999.ebuild index ec37dc3e7b..612dceb531 100644 --- a/net-libs/libktorrent/libktorrent-9999.ebuild +++ b/net-libs/libktorrent/libktorrent-9999.ebuild @@ -3,19 +3,6 @@ EAPI=6 -if [[ ${PV} != 9999* ]]; then - inherit versionator - # upstream likes to skip that _ in beta releases - MY_PV="${PV/_/}" - KTORRENT_VERSION=$(($(get_major_version)+3)).$(get_version_component_range 2 ${MY_PV}) - MY_P="${PN}-${MY_PV}" - - SRC_URI="mirror://kde/stable/ktorrent/${KTORRENT_VERSION}/${MY_P}.tar.xz" - S="${WORKDIR}"/"${MY_P}" - - KEYWORDS="~amd64 ~arm ~x86" -fi - KDE_TEST="forceoptional" VIRTUALX_REQUIRED="test" inherit kde5 @@ -24,6 +11,7 @@ DESCRIPTION="BitTorrent library based on KDE Frameworks" HOMEPAGE="https://www.kde.org/applications/internet/ktorrent/" LICENSE="GPL-2+" +KEYWORDS="" IUSE="" COMMON_DEPEND=" @@ -58,3 +46,12 @@ src_prepare() { sed -i -e "/^find_dependency/ s/ \"@LibGMP_MIN_VERSION@\"//" \ KF5TorrentConfig.cmake.in || die } + +src_test() { + # failing network tests + local myctestargs=( + -E "(fin|packetloss|send|transmit)" + ) + + kde5_src_test +}