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 D853B138359 for ; Fri, 10 Jul 2020 11:53:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DC5DE086F; Fri, 10 Jul 2020 11:53:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D4494E086B for ; Fri, 10 Jul 2020 11:53:17 +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 6122434F66B for ; Fri, 10 Jul 2020 11:53:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA09A2D2 for ; Fri, 10 Jul 2020 11:53:13 +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: <1594381976.c34373f5f1d09d31265f8ec8215f4fa7241c94ca.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/pegtl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/pegtl/pegtl-2.8.3.ebuild X-VCS-Directories: dev-libs/pegtl/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c34373f5f1d09d31265f8ec8215f4fa7241c94ca X-VCS-Branch: master Date: Fri, 10 Jul 2020 11:53:13 +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: a9451ef4-7295-43c1-a751-c26ce765388e X-Archives-Hash: 3b877ed6c52475ee83dd25e05572e49a commit: c34373f5f1d09d31265f8ec8215f4fa7241c94ca Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jul 10 10:51:13 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jul 10 11:52:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c34373f5 dev-libs/pegtl: Switch to cmake.eclass Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/pegtl/pegtl-2.8.3.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-libs/pegtl/pegtl-2.8.3.ebuild b/dev-libs/pegtl/pegtl-2.8.3.ebuild index 51b7872a603..a2ead2df29f 100644 --- a/dev-libs/pegtl/pegtl-2.8.3.ebuild +++ b/dev-libs/pegtl/pegtl-2.8.3.ebuild @@ -3,9 +3,9 @@ EAPI=7 -inherit cmake-utils +inherit cmake -DESCRIPTION="header-only library for creating parsers according to Parsing Expression Grammar" +DESCRIPTION="Header-only library for creating parsers according to Parsing Expression Grammar" HOMEPAGE="https://github.com/taocpp/PEGTL" SRC_URI="https://github.com/taocpp/PEGTL/archive/${PV}.tar.gz -> ${P}.tar.gz" @@ -13,9 +13,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" -RESTRICT="!test? ( test )" -DEPEND="" -RDEPEND="${DEPEND}" +RESTRICT="!test? ( test )" S="${WORKDIR}/PEGTL-${PV}"