summaryrefslogtreecommitdiff
blob: 33bc85a23b876f77df7c46582dc0867dc38d587d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
#LUA_COMPAT="lua51 lua52 lua53 luajit2"
inherit lua

DESCRIPTION="A tool for linting and static analysis of Lua code"
HOMEPAGE="https://github.com/mpeterv/luacheck"
SRC_URI="https://github.com/mpeterv/luacheck/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc test"

RDEPEND="
	dev-lua/luafilesystem
	dev-lua/lanes
"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	doc? ( dev-python/sphinx )
	test? (
		dev-lua/busted
		dev-lua/luautf8
	)"

DOCS=( CHANGELOG.md README.md )

all_lua_compile() {
	if use doc; then
		sphinx-build docsrc html || die
	fi
}

each_lua_test() {
	busted -o gtest || die
}

each_lua_install() {
	dolua src/luacheck
}
all_lua_install() {
	newbin bin/luacheck.lua luacheck
	use doc && HTML_DOCS+=( html/. )
	einstalldocs
}