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 53A921382C5 for ; Sun, 11 Feb 2018 22:01:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B182EE0D8E; Sun, 11 Feb 2018 22:01:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 87EA7E0D83 for ; Sun, 11 Feb 2018 22:01:10 +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 BA777335C5B for ; Sun, 11 Feb 2018 22:01:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74F651FE for ; Sun, 11 Feb 2018 22:01:07 +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: <1518386424.87aa8ec15fa5123651c0ee20a8389b1f64dd37be.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kimageformats/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kimageformats/kimageformats-5.43.0.ebuild X-VCS-Directories: kde-frameworks/kimageformats/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 87aa8ec15fa5123651c0ee20a8389b1f64dd37be X-VCS-Branch: master Date: Sun, 11 Feb 2018 22:01:07 +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: a09def07-4809-4ff8-93e1-3a1cf17ff41b X-Archives-Hash: 628a75bdb94a13277ec2658f203b2000 commit: 87aa8ec15fa5123651c0ee20a8389b1f64dd37be Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 11 12:48:12 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 11 22:00:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87aa8ec1 kde-frameworks/kimageformats: Disable broken test Bug: https://bugs.gentoo.org/634426 Package-Manager: Portage-2.3.24, Repoman-2.3.6 kde-frameworks/kimageformats/kimageformats-5.43.0.ebuild | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/kde-frameworks/kimageformats/kimageformats-5.43.0.ebuild b/kde-frameworks/kimageformats/kimageformats-5.43.0.ebuild index a75c094c801..d99cac6e0b0 100644 --- a/kde-frameworks/kimageformats/kimageformats-5.43.0.ebuild +++ b/kde-frameworks/kimageformats/kimageformats-5.43.0.ebuild @@ -33,3 +33,16 @@ src_configure() { kde5_src_configure } + +src_test() { + local myctestargs + + # bug: 634426 + if ! has_version >=dev-qt/qtcore-5.9.4; then + myctestargs+=( + -E "(kimageformats-read-xcf)" + ) + fi + + kde5_src_test +}