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 02C1B1382C5 for ; Sat, 27 Feb 2021 01:00:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54631E087A; Sat, 27 Feb 2021 01:00:32 +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 3E976E087A for ; Sat, 27 Feb 2021 01:00:32 +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 587D6340D1B for ; Sat, 27 Feb 2021 01:00:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1639581 for ; Sat, 27 Feb 2021 01:00:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1614387609.44d986efea399a2adcedec918c7a061f1cf1f780.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ragel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ragel/ragel-6.10.ebuild X-VCS-Directories: dev-util/ragel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 44d986efea399a2adcedec918c7a061f1cf1f780 X-VCS-Branch: master Date: Sat, 27 Feb 2021 01:00:28 +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: 923e3821-5d67-4990-82ff-ae7c871bfad9 X-Archives-Hash: c0f597008a6789b400e73e31f209dd9e commit: 44d986efea399a2adcedec918c7a061f1cf1f780 Author: Sam James gentoo org> AuthorDate: Sat Feb 27 00:25:32 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 27 01:00:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d986ef dev-util/ragel: port 6.10 to EAPI 7 Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-util/ragel/ragel-6.10.ebuild | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/dev-util/ragel/ragel-6.10.ebuild b/dev-util/ragel/ragel-6.10.ebuild index 8c0d3bba319..00b8d07df42 100644 --- a/dev-util/ragel/ragel-6.10.ebuild +++ b/dev-util/ragel/ragel-6.10.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils autotools autotools-utils +inherit autotools DESCRIPTION="Compiles finite state machines from regular languages into executable code" HOMEPAGE="http://www.colm.net/open-source/ragel/" @@ -12,26 +12,26 @@ SRC_URI="http://www.colm.net/files/ragel/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="vim-syntax" - -DEPEND="" -RDEPEND="" # We need to get the txl language in Portage to have the tests :( -RESTRICT=test +RESTRICT="test" DOCS=( ChangeLog CREDITS README TODO ) +src_prepare() { + default + + eautoreconf +} + src_test() { cd "${S}"/test ./runtests.in || die } src_install() { - autotools-utils_src_install + default - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - doins ragel.vim - fi + insinto /usr/share/vim/vimfiles/syntax + doins ragel.vim }