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/luassert/
Date: Wed, 24 Aug 2022 21:51:39
Message-Id: 1661377358.9ebfa4a0cb5e37b80f91959446f4c131bb4f8423.conikost@gentoo
1 commit: 9ebfa4a0cb5e37b80f91959446f4c131bb4f8423
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 21:42:38 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 21:42:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ebfa4a0
7
8 dev-lua/luassert: add 1.9.0
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 dev-lua/luassert/Manifest | 1 +
13 dev-lua/luassert/luassert-1.9.0.ebuild | 54 ++++++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/dev-lua/luassert/Manifest b/dev-lua/luassert/Manifest
17 index 63ffa4b5bf01..c111573a5e69 100644
18 --- a/dev-lua/luassert/Manifest
19 +++ b/dev-lua/luassert/Manifest
20 @@ -1 +1,2 @@
21 DIST luassert-1.8.0.tar.gz 38874 BLAKE2B ebc4aab1de5dc830d0b9266726ca6bf361e03000f3a8acd27c04805a6c963373755c8e163b187714f64178acc5d755c05493d745b55c785e3254dd41aa4bef31 SHA512 18b296fececa6b0d5950b2a20c4d30da3bbf9b0932c568bbb8ca212b5c82a1047b73c52ee72b4505a41a393d41dd21321189367e038dd029152d177e11bafc93
22 +DIST luassert-1.9.0.tar.gz 42645 BLAKE2B 2541184bb5ee7a6a7e0c8e2fead8c4926a5d8384345dc173d60c9b52bb4cffe9f50e90980293465e1e5cadee337823abf77421d1cfc423eb32d9d73a7594a306 SHA512 267d31f0061376a4766c7e978bda9e4a2396c8bf959d4aaa347ad40bd286a3873441e38983e1e86ea07a1be7cf7c92d91248c4ba70d6dd4ec82f02c7f7638e9f
23
24 diff --git a/dev-lua/luassert/luassert-1.9.0.ebuild b/dev-lua/luassert/luassert-1.9.0.ebuild
25 new file mode 100644
26 index 000000000000..3bfe540696f0
27 --- /dev/null
28 +++ b/dev-lua/luassert/luassert-1.9.0.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +LUA_COMPAT=( lua5-{1..4} luajit )
36 +
37 +inherit lua
38 +
39 +DESCRIPTION="Assertion library for Lua"
40 +HOMEPAGE="http://olivinelabs.com/busted/"
41 +SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
46 +IUSE="test"
47 +REQUIRED_USE="${LUA_REQUIRED_USE}"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="
51 + dev-lua/say[${LUA_USEDEP}]
52 + ${LUA_DEPS}
53 +"
54 +
55 +BDEPEND="
56 + virtual/pkgconfig
57 + test? (
58 + dev-lua/busted[${LUA_USEDEP}]
59 + dev-lua/lua_cliargs[${LUA_USEDEP}]
60 + ${RDEPEND}
61 + )
62 +"
63 +
64 +DEPEND="${RDEPEND}"
65 +
66 +lua_src_test() {
67 + busted --lua=${ELUA} || die
68 +}
69 +
70 +src_test() {
71 + lua_foreach_impl lua_src_test
72 +}
73 +
74 +lua_src_install() {
75 + insinto $(lua_get_lmod_dir)/luassert
76 + doins -r src/.
77 +
78 + einstalldocs
79 +}
80 +
81 +src_install() {
82 + lua_foreach_impl lua_src_install
83 +}