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 200A913997F for ; Mon, 11 Nov 2019 07:34:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0172AE0A7E; Mon, 11 Nov 2019 07:34:30 +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 DCEC1E0A7E for ; Mon, 11 Nov 2019 07:34:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DD68D34CB7B for ; Mon, 11 Nov 2019 07:34:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 025B38AE for ; Mon, 11 Nov 2019 07:34:27 +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: <1573457648.30c244054624d95523d68e02be763943c47bfc35.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/oxygen-icons/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/oxygen-icons/oxygen-icons-5.64.0.ebuild X-VCS-Directories: kde-frameworks/oxygen-icons/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 30c244054624d95523d68e02be763943c47bfc35 X-VCS-Branch: master Date: Mon, 11 Nov 2019 07:34:27 +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: 27574951-d335-4f03-8b2d-bef1acdcb9ae X-Archives-Hash: 2178a459499422acfc94f2c19378adcb commit: 30c244054624d95523d68e02be763943c47bfc35 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Nov 11 07:25:13 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 11 07:34:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c24405 kde-frameworks/oxygen-icons: Add missing !test handling We don't inherit ecm.eclass so we need to do a bit extra. Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/oxygen-icons/oxygen-icons-5.64.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kde-frameworks/oxygen-icons/oxygen-icons-5.64.0.ebuild b/kde-frameworks/oxygen-icons/oxygen-icons-5.64.0.ebuild index f6a1cd6cecb..e821e17f2db 100644 --- a/kde-frameworks/oxygen-icons/oxygen-icons-5.64.0.ebuild +++ b/kde-frameworks/oxygen-icons/oxygen-icons-5.64.0.ebuild @@ -21,3 +21,8 @@ BDEPEND=" DEPEND="test? ( dev-qt/qttest:5 )" RESTRICT+=" !test? ( test )" + +src_prepare() { + cmake-utils_src_prepare + use test || cmake_comment_add_subdirectory autotests +}