Install this version:
emerge -a =dev-lua/lanes-4.0.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-lua/lanes-4.0.0
Or alternatively:
emerge --autounmask-write -a =dev-lua/lanes-4.0.0
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 4.0.0 | 8 | ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-{1..4} 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 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
REQUIRED_USE="${LUA_REQUIRED_USE}"
# Tests are currently somehow problematic.
# https://github.com/LuaLanes/lanes/issues/197
# https://github.com/LuaLanes/lanes/issues/198
RESTRICT="test"
RDEPEND="${LUA_DEPS}"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
test? ( ${RDEPEND} )
"
HTML_DOCS=( "docs/." )
PATCHES=(
"${FILESDIR}/${PN}-4.0.0-glibc-2.43.patch"
"${FILESDIR}/${PN}-4.0.0-makefile.patch"
)
src_prepare() {
default
# Replace which with 'command -v'
sed -e 's/which/command -v/g' -i Makefile || die
sed -e 's/which/command -v/g' -i Shared.makefile || die
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}"
)
tc-export PKG_CONFIG
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
}
Manage flags for this package:
euse -i <flag> -p dev-lua/lanes |
euse -E <flag> -p dev-lua/lanes |
euse -D <flag> -p dev-lua/lanes
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | lanes-4.0.0.tar.gz | 536121 bytes | https://github.com/LuaLanes/lanes/archive/v4.0.0.tar.gz |