diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-11-28 17:15:50 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-11-28 17:16:42 +0100 |
commit | d089d1b7118de53261993cec0cac16dc75b4053d (patch) | |
tree | 8945e9ed5c4d9d4a3871c8919853bcfd5f4d3045 /dev-lua/busted | |
parent | dev-lua/dkjson: migrate to lua eclass (diff) | |
download | gentoo-d089d1b7118de53261993cec0cac16dc75b4053d.tar.gz gentoo-d089d1b7118de53261993cec0cac16dc75b4053d.tar.bz2 gentoo-d089d1b7118de53261993cec0cac16dc75b4053d.zip |
dev-lua/busted: migrate to lua eclass
Also adding tests.
Bug: https://bugs.gentoo.org/628758
Closes: https://bugs.gentoo.org/584694
Closes: https://bugs.gentoo.org/752921
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/busted')
-rw-r--r-- | dev-lua/busted/busted-2.0.0-r100.ebuild | 63 | ||||
-rw-r--r-- | dev-lua/busted/metadata.xml | 6 |
2 files changed, 68 insertions, 1 deletions
diff --git a/dev-lua/busted/busted-2.0.0-r100.ebuild b/dev-lua/busted/busted-2.0.0-r100.ebuild new file mode 100644 index 000000000000..7653e068ddcf --- /dev/null +++ b/dev-lua/busted/busted-2.0.0-r100.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..3} luajit ) + +inherit lua toolchain-funcs + +DESCRIPTION="Elegant Lua unit testing" +HOMEPAGE="http://olivinelabs.com/busted/" +SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="test" +REQUIRED_USE="${LUA_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-lua/lua_cliargs-3.0_p2-r100 + >=dev-lua/luafilesystem-1.8.0-r100 + >=dev-lua/luasystem-0.2.1_p0-r100 + >=dev-lua/dkjson-2.5-r100 + >=dev-lua/say-1.3_p1-r100 + >=dev-lua/luassert-1.8.0-r100 + >=dev-lua/lua-term-0.7-r100 + >=dev-lua/penlight-1.7.0-r100 + >=dev-lua/mediator_lua-1.1.2_p0-r100 + ${LUA_DEPS} +" + +DEPEND="${RDEPEND}" + +BDEPEND=" + virtual/pkgconfig + test? ( + >=dev-lua/busted-2.0.0-r100 + ${RDEPEND} + ) +" + +lua_src_test() { + busted --lua=${ELUA} || die +} + +src_test() { + lua_foreach_impl lua_src_test +} + +lua_src_install() { + insinto $(lua_get_lmod_dir) + doins -r busted +} + +src_install() { + dobin bin/busted + + lua_foreach_impl lua_src_install + + einstalldocs +} diff --git a/dev-lua/busted/metadata.xml b/dev-lua/busted/metadata.xml index e8e32b1eb332..3c09cac56953 100644 --- a/dev-lua/busted/metadata.xml +++ b/dev-lua/busted/metadata.xml @@ -5,7 +5,11 @@ <email>williamh@gentoo.org</email> <name>William Hubbs</name> </maintainer> - <longdescription lang="en"> + <maintainer type="person"> + <email>conikost@gentoo.org</email> + <name>Conrad Kostecki</name> + </maintainer> + <longdescription> An elegant, extensible, testing framework. Ships with a large amount of useful asserts, plus the ability to write your own. Output |