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 0407C1382C5 for ; Thu, 20 May 2021 19:35:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4668FE088D; Thu, 20 May 2021 19:35:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2E21BE088D for ; Thu, 20 May 2021 19:35:50 +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 AEE48335C9F for ; Thu, 20 May 2021 19:35:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FCBA729 for ; Thu, 20 May 2021 19:35:47 +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: <1621539230.bb42dd4d5565693be2c05a76736b7cd5658c3ee7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kglobalaccel/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kglobalaccel/kglobalaccel-5.82.0.ebuild X-VCS-Directories: kde-frameworks/kglobalaccel/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bb42dd4d5565693be2c05a76736b7cd5658c3ee7 X-VCS-Branch: master Date: Thu, 20 May 2021 19:35:47 +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: 82ccfc94-f7ad-4108-a3c8-926c5ae20e56 X-Archives-Hash: 88286a630c2f6ee438e2a6094744f9d4 commit: bb42dd4d5565693be2c05a76736b7cd5658c3ee7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 20 19:33:50 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 20 19:33:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb42dd4d kde-frameworks/kglobalaccel: Fix kglobalshortcuttest Caused by upstream commit 48c3376927e5e9c13377bf3cfc8b0c411783e7f3 Closes: https://bugs.gentoo.org/789342 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kglobalaccel/kglobalaccel-5.82.0.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-5.82.0.ebuild b/kde-frameworks/kglobalaccel/kglobalaccel-5.82.0.ebuild index 6473474b63b..c07636e53c5 100644 --- a/kde-frameworks/kglobalaccel/kglobalaccel-5.82.0.ebuild +++ b/kde-frameworks/kglobalaccel/kglobalaccel-5.82.0.ebuild @@ -9,13 +9,11 @@ VIRTUALX_REQUIRED="test" inherit ecm kde.org DESCRIPTION="Framework to handle global shortcuts" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" IUSE="nls" -BDEPEND=" - nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) -" DEPEND=" >=dev-qt/qtdbus-${QTMIN}:5 >=dev-qt/qtgui-${QTMIN}:5 @@ -30,3 +28,8 @@ DEPEND=" x11-libs/xcb-util-keysyms " RDEPEND="${DEPEND}" +BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )" + +src_test() { + XDG_CURRENT_DESKTOP="KDE" ecm_src_test # bug 789342 +}