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 4C7511382C5 for ; Sat, 30 May 2020 11:06:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B153E0875; Sat, 30 May 2020 11:06:52 +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 32BA6E0875 for ; Sat, 30 May 2020 11:06:52 +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 C2F3B34E801 for ; Sat, 30 May 2020 11:06:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE2D926 for ; Sat, 30 May 2020 11:06:48 +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: <1590836798.e67279188e5b63ead4d59307399260ddb884661c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/konsole/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/konsole/konsole-19.12.3-r1.ebuild kde-apps/konsole/konsole-20.04.1-r2.ebuild X-VCS-Directories: kde-apps/konsole/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e67279188e5b63ead4d59307399260ddb884661c X-VCS-Branch: master Date: Sat, 30 May 2020 11:06:48 +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: 536ac26e-7c79-47de-a450-69a5ed41cf50 X-Archives-Hash: 76d89147cbdb056567e150d3df086390 commit: e67279188e5b63ead4d59307399260ddb884661c Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat May 30 10:53:41 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 30 11:06:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6727918 kde-apps/konsole: Disable hanging DBusTest Bug: https://bugs.gentoo.org/702690 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/konsole/konsole-19.12.3-r1.ebuild | 9 +++++++++ kde-apps/konsole/konsole-20.04.1-r2.ebuild | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/kde-apps/konsole/konsole-19.12.3-r1.ebuild b/kde-apps/konsole/konsole-19.12.3-r1.ebuild index 26ddf0f3892..6799320faf8 100644 --- a/kde-apps/konsole/konsole-19.12.3-r1.ebuild +++ b/kde-apps/konsole/konsole-19.12.3-r1.ebuild @@ -67,3 +67,12 @@ src_configure() { ecm_src_configure } + +src_test() { + # drkonqi process interferes. bug 702690 + local myctestargs=( + -E "(DBusTest)" + ) + + ecm_src_test +} diff --git a/kde-apps/konsole/konsole-20.04.1-r2.ebuild b/kde-apps/konsole/konsole-20.04.1-r2.ebuild index 95fd7ffcee3..c532b9d1b71 100644 --- a/kde-apps/konsole/konsole-20.04.1-r2.ebuild +++ b/kde-apps/konsole/konsole-20.04.1-r2.ebuild @@ -66,3 +66,12 @@ src_configure() { ecm_src_configure } + +src_test() { + # drkonqi process interferes. bug 702690 + local myctestargs=( + -E "(DBusTest)" + ) + + ecm_src_test +}