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 A9DA6138346 for ; Mon, 6 Jan 2020 13:14:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8BA7E08F4; Mon, 6 Jan 2020 13:14:58 +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 C078DE08F4 for ; Mon, 6 Jan 2020 13:14:57 +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 8D95934DE23 for ; Mon, 6 Jan 2020 13:14:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E8E989 for ; Mon, 6 Jan 2020 13:14:55 +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: <1578316408.f0e6f01858df6f24ae1efb4270c63b789de1324e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-c-event-stream/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.3.ebuild X-VCS-Directories: dev-libs/aws-c-event-stream/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f0e6f01858df6f24ae1efb4270c63b789de1324e X-VCS-Branch: master Date: Mon, 6 Jan 2020 13:14:55 +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: 0e11f2ed-0c21-40a7-9e2e-445f31369127 X-Archives-Hash: 0cb55cc01661fc22ab4f119023abeab9 commit: f0e6f01858df6f24ae1efb4270c63b789de1324e Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jan 6 13:08:15 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jan 6 13:13:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e6f018 dev-libs/aws-c-event-stream: Switch to cmake.eclass Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.3.ebuild b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.3.ebuild index b33495cc06c..8102c997b7c 100644 --- a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.3.ebuild +++ b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.1.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="C99 implementation of the vnd.amazon.eventstream content-type" HOMEPAGE="https://github.com/awslabs/aws-c-event-stream" @@ -29,5 +29,5 @@ src_configure() { local mycmakeargs=( -DBUILD_TESTING=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure }