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 D42C713835A for ; Wed, 10 Mar 2021 11:05:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1091AE0844; Wed, 10 Mar 2021 11:05:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EF2F2E0844 for ; Wed, 10 Mar 2021 11:05:05 +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 127D6335C03 for ; Wed, 10 Mar 2021 11:05:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65FAC58F for ; Wed, 10 Mar 2021 11:05:01 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1615374284.d378d3a2af7ca08a915eb85b45d33c42eab1b814.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/antlr-cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/antlr-cpp/antlr-cpp-4.7.2.ebuild X-VCS-Directories: dev-cpp/antlr-cpp/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: d378d3a2af7ca08a915eb85b45d33c42eab1b814 X-VCS-Branch: master Date: Wed, 10 Mar 2021 11:05:01 +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: fc4c2bb9-8f38-425c-8b7c-c28af163a0a2 X-Archives-Hash: 791a54ed8ed381d43330562ceb7b708e commit: d378d3a2af7ca08a915eb85b45d33c42eab1b814 Author: Miroslav Šulc gentoo org> AuthorDate: Wed Mar 10 11:04:24 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Mar 10 11:04:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d378d3a2 dev-cpp/antlr-cpp: migrated from cmake-utils to cmake in 4.7.2 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Miroslav Šulc gentoo.org> dev-cpp/antlr-cpp/antlr-cpp-4.7.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-cpp/antlr-cpp/antlr-cpp-4.7.2.ebuild b/dev-cpp/antlr-cpp/antlr-cpp-4.7.2.ebuild index 955e60af6ca..9f123f01790 100644 --- a/dev-cpp/antlr-cpp/antlr-cpp-4.7.2.ebuild +++ b/dev-cpp/antlr-cpp/antlr-cpp-4.7.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="The ANTLR 4 C++ Runtime" HOMEPAGE="https://www.antlr.org/" @@ -23,5 +23,5 @@ src_prepare() { sed -i -e "s#share/doc/libantlr4#share/doc/${P}#g" \ "${S}"/CMakeLists.txt || die "failed sed" - cmake-utils_src_prepare + cmake_src_prepare }