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 7859813835C for ; Sun, 28 Feb 2021 18:08:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C81B9E0949; Sun, 28 Feb 2021 18:08:49 +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 B0CDFE0949 for ; Sun, 28 Feb 2021 18:08:49 +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 CF62D3410F1 for ; Sun, 28 Feb 2021 18:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18D06583 for ; Sun, 28 Feb 2021 18:08:46 +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: <1614535697.28e7b04ef641b30f54b05e94668ae776519fdea8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libbson/libbson-1.17.0.ebuild X-VCS-Directories: dev-libs/libbson/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 28e7b04ef641b30f54b05e94668ae776519fdea8 X-VCS-Branch: master Date: Sun, 28 Feb 2021 18:08:46 +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: fe083923-7178-44ea-a00d-db64e9bc83d5 X-Archives-Hash: 847bcdaeeec61339e7abcd4f970ac479 commit: 28e7b04ef641b30f54b05e94668ae776519fdea8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 28 15:46:22 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 28 18:08:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e7b04e dev-libs/libbson: Switch to cmake.eclass Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libbson/libbson-1.17.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/libbson/libbson-1.17.0.ebuild b/dev-libs/libbson/libbson-1.17.0.ebuild index d29735c6690..a25e6ef7e4e 100644 --- a/dev-libs/libbson/libbson-1.17.0.ebuild +++ b/dev-libs/libbson/libbson-1.17.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="Library routines related to building,parsing and iterating BSON documents" HOMEPAGE="https://github.com/mongodb/mongo-c-driver/tree/master/src/libbson" @@ -34,7 +34,7 @@ src_configure() { -DENABLE_UNINSTALL=OFF ) - cmake-utils_src_configure + cmake_src_configure } src_install() { @@ -43,5 +43,5 @@ src_install() { dodoc src/libbson/examples/*.c fi - cmake-utils_src_install + cmake_src_install }