diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-01-24 18:48:47 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-27 20:40:08 +0100 |
commit | e6e94a42c1f4c13f712e36da10c74a6e877ae51a (patch) | |
tree | 328b336045887eb17ecce5ef563f44e6d3a14fdd /dev-lua | |
parent | dev-ml/lablgtk: fix dep (diff) | |
download | gentoo-e6e94a42c1f4c13f712e36da10c74a6e877ae51a.tar.gz gentoo-e6e94a42c1f4c13f712e36da10c74a6e877ae51a.tar.bz2 gentoo-e6e94a42c1f4c13f712e36da10c74a6e877ae51a.zip |
dev-lua/busted: 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')
-rw-r--r-- | dev-lua/busted/busted-2.0.0.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-lua/busted/busted-2.0.0.ebuild b/dev-lua/busted/busted-2.0.0.ebuild deleted file mode 100644 index 69f13190ecd6..000000000000 --- a/dev-lua/busted/busted-2.0.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit 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" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-lang/lua-5.1:0= - >=dev-lua/lua_cliargs-3.0 - >=dev-lua/luafilesystem-1.5.0 - >=dev-lua/luasystem-0.2.0 - >=dev-lua/dkjson-2.1.0 - >=dev-lua/say-1.3 - >=dev-lua/luassert-1.7.8 - >=dev-lua/lua-term-0.1_p1 - >=dev-lua/penlight-1.3.2 - >=dev-lua/mediator_lua-1.1.1_p0 -" -BDEPEND=" - virtual/pkgconfig - test? ( - ${RDEPEND} - >=dev-lua/busted-2.0.0 - ) -" -DEPEND="${RDEPEND}" - -src_test() { - busted ./spec || die -} - -src_install() { - dobin bin/busted - insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)"/${PN} - doins -r busted/* - dodoc *.md -} |