diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-20 23:30:53 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-21 18:10:47 +0200 |
commit | 4696d5246e50ead084a42d5784572db2ff438cd6 (patch) | |
tree | 6b057654432f586c38d3b49e02ce2557f6e44343 /dev-util/ragel/ragel-6.9.ebuild | |
parent | www-servers/tomcat: fixed optional classpath in 8.5.57 (diff) | |
download | gentoo-4696d5246e50ead084a42d5784572db2ff438cd6.tar.gz gentoo-4696d5246e50ead084a42d5784572db2ff438cd6.tar.bz2 gentoo-4696d5246e50ead084a42d5784572db2ff438cd6.zip |
dev-util/ragel: Drop 6.7-r1, 6.8 and 6.9
Closes: https://bugs.gentoo.org/724094
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-util/ragel/ragel-6.9.ebuild')
-rw-r--r-- | dev-util/ragel/ragel-6.9.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-util/ragel/ragel-6.9.ebuild b/dev-util/ragel/ragel-6.9.ebuild deleted file mode 100644 index 21b79373ef5f..000000000000 --- a/dev-util/ragel/ragel-6.9.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils autotools autotools-utils - -DESCRIPTION="Compiles finite state machines from regular languages into executable code" -HOMEPAGE="http://www.colm.net/open-source/ragel/" -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 ~x86-macos ~m68k-mint ~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 - -PATCHES=( "${FILESDIR}"/${P}-gcc6.patch ) -DOCS=( ChangeLog CREDITS README TODO ) - -src_test() { - cd "${S}"/test - ./runtests.in || die -} - -src_install() { - autotools-utils_src_install - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - doins ragel.vim - fi -} |