summaryrefslogtreecommitdiff
path: root/dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild
diff options
context:
space:
mode:
authorVictor Payno <vpayno+gentoo@gmail.com>2020-01-24 14:18:23 -0800
committerGeorgy Yakovlev <gyakovlev@gentoo.org>2020-03-14 16:35:08 -0700
commit4f1bc88871ed583c10bee6e6b94f4259afbfb752 (patch)
tree6f683ab6523b977afe0c41bd38e791cfceed6acb /dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild
parentf8669c1089dd9962d946c7be46a17fdd1cd2ebd8 (diff)
downloadgentoo-4f1bc88871ed583c10bee6e6b94f4259afbfb752.tar.gz
gentoo-4f1bc88871ed583c10bee6e6b94f4259afbfb752.tar.bz2
gentoo-4f1bc88871ed583c10bee6e6b94f4259afbfb752.zip
dev-lua/lua-argparse: command line parser for Lua (new package)
Signed-off-by: Victor Payno <vpayno+gentoo@gmail.com> Argparse is a feature-rich command line parser for Lua inspired by argparse for Python. Closes: https://github.com/gentoo/gentoo/pull/14435 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild')
-rw-r--r--dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild53
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild b/dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild
new file mode 100644
index 000000000000..49f81111ec76
--- /dev/null
+++ b/dev-lua/lua-argparse/lua-argparse-0.6.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="Command line argument parser for the Lua Programming Language"
+HOMEPAGE="https://github.com/mpeterv/argparse"
+SRC_URI="https://github.com/mpeterv/argparse/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc luajit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-lang/lua-5.1:=
+ luajit? ( dev-lang/luajit:2 )"
+BDEPEND="
+ virtual/pkgconfig
+ doc? ( dev-python/sphinx )
+ test? (
+ ${RDEPEND}
+ dev-lua/busted
+ )"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN//lua-/}-${PV}"
+
+src_compile() {
+ if use doc; then
+ sphinx-build docsrc html || die
+ rm -rf "${S}"/html/{.doctrees,_sources} || die
+ fi
+}
+
+src_test() {
+ busted -o gtest || die
+}
+
+src_install() {
+ use doc && local -a HTML_DOCS=( html/. )
+ local -a DOCS=( README.md CHANGELOG.md )
+ einstalldocs
+
+ local instdir
+ instdir="$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD $(usex luajit 'luajit' 'lua'))"/${PN}
+
+ insinto "${instdir#${EPREFIX}}"
+ doins src/argparse.lua
+}