commit:     1bf5ae81e2859a4bee5820a04dfca5223b96b70a
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 21:17:15 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 21:19:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf5ae81

dev-lua/lanes: migrate to lua eclass

Closes: https://bugs.gentoo.org/752606
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/lanes/lanes-3.13.0-r100.ebuild | 87 ++++++++++++++++++++++++++++++++++
 dev-lua/lanes/metadata.xml             |  4 ++
 profiles/package.mask                  |  1 +
 3 files changed, 92 insertions(+)

diff --git a/dev-lua/lanes/lanes-3.13.0-r100.ebuild 
b/dev-lua/lanes/lanes-3.13.0-r100.ebuild
new file mode 100644
index 00000000000..3c7d429b112
--- /dev/null
+++ b/dev-lua/lanes/lanes-3.13.0-r100.ebuild
@@ -0,0 +1,87 @@
+# 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="Lightweight, native, lazy evaluating multithreading library"
+HOMEPAGE="https://github.com/LuaLanes/lanes";
+SRC_URI="https://github.com/LuaLanes/lanes/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="${LUA_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="
+       virtual/pkgconfig
+       test? ( ${RDEPEND} )
+"
+
+HTML_DOCS=( "docs/." )
+
+PATCHES=( "${FILESDIR}/${PN}-3.13.0-makefile.patch" )
+
+src_prepare() {
+       default
+
+       lua_copy_sources
+}
+
+lua_src_compile() {
+       pushd "${BUILD_DIR}" || die
+
+       local myemakeargs=(
+               "CC=$(tc-getCC)"
+               "LUA=${ELUA}"
+               "LUA_FLAGS=$(lua_get_CFLAGS)"
+               "LUA_LIBS="
+               "OPT_FLAGS=${CFLAGS}"
+       )
+
+       emake "${myemakeargs[@]}"
+
+       popd
+}
+
+src_compile() {
+       lua_foreach_impl lua_src_compile
+}
+
+lua_src_test() {
+       pushd "${BUILD_DIR}" || die
+
+       emake LUA="${ELUA}" test
+
+       popd
+}
+
+src_test() {
+       lua_foreach_impl lua_src_test
+}
+
+lua_src_install() {
+       pushd "${BUILD_DIR}" || die
+
+       local myemakeargs=(
+               "LUA_LIBDIR=${ED}/$(lua_get_cmod_dir)"
+               "LUA_SHAREDIR=${ED}/$(lua_get_lmod_dir)"
+       )
+
+       emake "${myemakeargs[@]}" install
+
+       popd
+}
+
+src_install() {
+       lua_foreach_impl lua_src_install
+
+       einstalldocs
+}

diff --git a/dev-lua/lanes/metadata.xml b/dev-lua/lanes/metadata.xml
index 5d8223a9b7b..b2c291b1b2b 100644
--- a/dev-lua/lanes/metadata.xml
+++ b/dev-lua/lanes/metadata.xml
@@ -5,6 +5,10 @@
                <email>[email protected]</email>
                <name>William Hubbs</name>
        </maintainer>
+       <maintainer type="person">
+               <email>[email protected]</email>
+               <name>Conrad Kostecki</name>
+       </maintainer>
        <upstream>
                <remote-id type="github">LuaLanes/lanes</remote-id>
        </upstream>

diff --git a/profiles/package.mask b/profiles/package.mask
index f3287cd4f24..2b2cf8f636a 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -524,6 +524,7 @@ dev-lua/luacrypto
 >=dev-lua/busted-htest-1.0.0-r100
 >=dev-lua/dkjson-2.5-r100
 >=dev-lua/inifile-1.0-r100
+>=dev-lua/lanes-3.13.0-r100
 >=dev-lua/ldoc-1.4.6-r100
 >=dev-lua/lgi-0.9.2-r100
 >=dev-lua/lpeg-1.0.2-r100

Reply via email to