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 C610213835A for ; Fri, 2 Apr 2021 09:54:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23374E09BD; Fri, 2 Apr 2021 09:54:12 +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 0965EE09BD for ; Fri, 2 Apr 2021 09:54:12 +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 C80AE340D1C for ; Fri, 2 Apr 2021 09:54:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E160643 for ; Fri, 2 Apr 2021 09:54:05 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1617357239.e6aa4531a5cecb01c7b703fb8f19c5f9db30effd.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/re2c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/re2c/re2c-2.1.1.ebuild X-VCS-Directories: dev-util/re2c/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: e6aa4531a5cecb01c7b703fb8f19c5f9db30effd X-VCS-Branch: master Date: Fri, 2 Apr 2021 09:54:05 +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: 0caaca55-2dd5-454b-81b1-1825df85b4e6 X-Archives-Hash: 53d2eb228258663979722f8aee3ab186 commit: e6aa4531a5cecb01c7b703fb8f19c5f9db30effd Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Apr 2 09:52:25 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Apr 2 09:53:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6aa4531 dev-util/re2c: drop old Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich gentoo.org> dev-util/re2c/re2c-2.1.1.ebuild | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/dev-util/re2c/re2c-2.1.1.ebuild b/dev-util/re2c/re2c-2.1.1.ebuild deleted file mode 100644 index cf4238f0a8d..00000000000 --- a/dev-util/re2c/re2c-2.1.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="tool for generating C-based recognizers from regular expressions" -HOMEPAGE="http://re2c.org/" -SRC_URI="https://github.com/skvadrik/re2c/releases/download/${PV}/${P}.tar.xz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug" - -src_configure() { - econf \ - --enable-golang \ - ac_cv_path_BISON="no" \ - $(use_enable debug) -} - -src_install() { - default - - docompress -x /usr/share/doc/${PF}/examples - dodoc -r README.md CHANGELOG examples -}