summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2021-01-24 19:04:41 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-01-27 20:40:19 +0100
commit0d04d8d504b484d3652d5a896bdb8e781e45fdf4 (patch)
treec4b806b3086504e03db2bbde5e9f316b9765816e /dev-lua/luacov
parentdev-lua/lua_cliargs: drop old version (diff)
downloadgentoo-0d04d8d504b484d3652d5a896bdb8e781e45fdf4.tar.gz
gentoo-0d04d8d504b484d3652d5a896bdb8e781e45fdf4.tar.bz2
gentoo-0d04d8d504b484d3652d5a896bdb8e781e45fdf4.zip
dev-lua/luacov: drop old version
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/luacov')
-rw-r--r--dev-lua/luacov/luacov-0.14.0.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-lua/luacov/luacov-0.14.0.ebuild b/dev-lua/luacov/luacov-0.14.0.ebuild
deleted file mode 100644
index ab0c2bbc60d2..000000000000
--- a/dev-lua/luacov/luacov-0.14.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="A simple coverage analyzer for Lua scripts"
-HOMEPAGE="https://github.com/keplerproject/luacov"
-SRC_URI="https://github.com/keplerproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="luajit test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- luajit? ( dev-lang/luajit:2 )
- !luajit? ( dev-lang/lua:0 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? (
- dev-lua/busted
- ${RDEPEND}
- )
-"
-
-HTML_DOCS=( "doc/." )
-
-src_test() {
- busted --lua="$(usex luajit 'luajit' 'lua')" || die
-}
-
-src_install() {
- dobin src/bin/luacov
-
- insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD $(usex luajit 'luajit' 'lua'))"
- doins src/luacov.lua
- doins -r src/luacov
-
- einstalldocs
-}