Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luacov/
Date: Wed, 27 Jan 2021 19:48:17
Message-Id: 1611776419.0d04d8d504b484d3652d5a896bdb8e781e45fdf4.conikost@gentoo
1 commit: 0d04d8d504b484d3652d5a896bdb8e781e45fdf4
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 24 18:04:41 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 19:40:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d04d8d5
7
8 dev-lua/luacov: drop old version
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-lua/luacov/luacov-0.14.0.ebuild | 46 -------------------------------------
14 1 file changed, 46 deletions(-)
15
16 diff --git a/dev-lua/luacov/luacov-0.14.0.ebuild b/dev-lua/luacov/luacov-0.14.0.ebuild
17 deleted file mode 100644
18 index ab0c2bbc60d..00000000000
19 --- a/dev-lua/luacov/luacov-0.14.0.ebuild
20 +++ /dev/null
21 @@ -1,46 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="A simple coverage analyzer for Lua scripts"
30 -HOMEPAGE="https://github.com/keplerproject/luacov"
31 -SRC_URI="https://github.com/keplerproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
36 -IUSE="luajit test"
37 -REQUIRED_USE="${LUA_REQUIRED_USE}"
38 -RESTRICT="!test? ( test )"
39 -
40 -RDEPEND="
41 - luajit? ( dev-lang/luajit:2 )
42 - !luajit? ( dev-lang/lua:0 )
43 -"
44 -DEPEND="${RDEPEND}"
45 -BDEPEND="
46 - virtual/pkgconfig
47 - test? (
48 - dev-lua/busted
49 - ${RDEPEND}
50 - )
51 -"
52 -
53 -HTML_DOCS=( "doc/." )
54 -
55 -src_test() {
56 - busted --lua="$(usex luajit 'luajit' 'lua')" || die
57 -}
58 -
59 -src_install() {
60 - dobin src/bin/luacov
61 -
62 - insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD $(usex luajit 'luajit' 'lua'))"
63 - doins src/luacov.lua
64 - doins -r src/luacov
65 -
66 - einstalldocs
67 -}