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 767FB139696 for ; Mon, 22 May 2017 14:43:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C994921C06A; Mon, 22 May 2017 14:43:52 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 90FFD21C06A for ; Mon, 22 May 2017 14:43:52 +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 758D3341709 for ; Mon, 22 May 2017 14:43:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6030745E for ; Mon, 22 May 2017 14:43:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1495464213.aa9fe7191f36c8bdaece354625131084cdd2090e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/apitrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/apitrace/apitrace-4.0.ebuild dev-util/apitrace/apitrace-5.0.ebuild dev-util/apitrace/apitrace-6.0.ebuild dev-util/apitrace/apitrace-6.1.ebuild dev-util/apitrace/apitrace-7.1.ebuild X-VCS-Directories: dev-util/apitrace/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aa9fe7191f36c8bdaece354625131084cdd2090e X-VCS-Branch: master Date: Mon, 22 May 2017 14:43:49 +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: 5a603abb-934d-4d42-851b-06f0d3e21fc3 X-Archives-Hash: 1f1784588948f0635ef52d149a69ca61 commit: aa9fe7191f36c8bdaece354625131084cdd2090e Author: Michał Górny gentoo org> AuthorDate: Sun May 21 13:40:06 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 22 14:43:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa9fe719 dev-util/apitrace: Do not call enable_cmake* directly dev-util/apitrace/apitrace-4.0.ebuild | 2 +- dev-util/apitrace/apitrace-5.0.ebuild | 2 +- dev-util/apitrace/apitrace-6.0.ebuild | 2 +- dev-util/apitrace/apitrace-6.1.ebuild | 2 +- dev-util/apitrace/apitrace-7.1.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-util/apitrace/apitrace-4.0.ebuild b/dev-util/apitrace/apitrace-4.0.ebuild index 5986a792373..9b529af0490 100644 --- a/dev-util/apitrace/apitrace-4.0.ebuild +++ b/dev-util/apitrace/apitrace-4.0.ebuild @@ -46,7 +46,7 @@ PATCHES=( ) src_prepare() { - enable_cmake-utils_src_prepare + cmake-utils_src_prepare # The apitrace code grubs around in the internal zlib structures. # We have to extract this header and clean it up to keep that working. diff --git a/dev-util/apitrace/apitrace-5.0.ebuild b/dev-util/apitrace/apitrace-5.0.ebuild index fcab924e2fe..712b310b558 100644 --- a/dev-util/apitrace/apitrace-5.0.ebuild +++ b/dev-util/apitrace/apitrace-5.0.ebuild @@ -42,7 +42,7 @@ PATCHES=( ) src_prepare() { - enable_cmake-utils_src_prepare + cmake-utils_src_prepare # The apitrace code grubs around in the internal zlib structures. # We have to extract this header and clean it up to keep that working. diff --git a/dev-util/apitrace/apitrace-6.0.ebuild b/dev-util/apitrace/apitrace-6.0.ebuild index 995d8975574..9e36010d4e4 100644 --- a/dev-util/apitrace/apitrace-6.0.ebuild +++ b/dev-util/apitrace/apitrace-6.0.ebuild @@ -42,7 +42,7 @@ PATCHES=( ) src_prepare() { - enable_cmake-utils_src_prepare + cmake-utils_src_prepare # The apitrace code grubs around in the internal zlib structures. # We have to extract this header and clean it up to keep that working. diff --git a/dev-util/apitrace/apitrace-6.1.ebuild b/dev-util/apitrace/apitrace-6.1.ebuild index 1c0210a3bda..3439c4a2830 100644 --- a/dev-util/apitrace/apitrace-6.1.ebuild +++ b/dev-util/apitrace/apitrace-6.1.ebuild @@ -42,7 +42,7 @@ PATCHES=( ) src_prepare() { - enable_cmake-utils_src_prepare + cmake-utils_src_prepare # The apitrace code grubs around in the internal zlib structures. # We have to extract this header and clean it up to keep that working. diff --git a/dev-util/apitrace/apitrace-7.1.ebuild b/dev-util/apitrace/apitrace-7.1.ebuild index d79578e64e0..7ebcd73810e 100644 --- a/dev-util/apitrace/apitrace-7.1.ebuild +++ b/dev-util/apitrace/apitrace-7.1.ebuild @@ -48,7 +48,7 @@ PATCHES=( ) src_prepare() { - enable_cmake-utils_src_prepare + cmake-utils_src_prepare # The apitrace code grubs around in the internal zlib structures. # We have to extract this header and clean it up to keep that working.