Install this version:
emerge -a =dev-lua/lanes-3.11
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-lua/lanes-3.11
Or alternatively:
emerge --autounmask-write -a =dev-lua/lanes-3.11
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License
EAPI=8
LUA_COMPAT=( lua{5-{1..4},jit} )
inherit cmake lua
DESCRIPTION="lightweight, native, lazy evaluating multithreading library"
HOMEPAGE="https://github.com/LuaLanes/lanes"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/LuaLanes/lanes"
else
SRC_URI="https://github.com/LuaLanes/lanes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE="examples"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RDEPEND="${LUA_DEPS}"
DEPEND="${RDEPEND}"
HTML_DOCS=(docs/.)
each_lua_configure() {
pushd "${BUILD_DIR}"
mycmakeargs=(
-DINSTALL_CMOD="$(lua_get_cmod_dir)"
-DINSTALL_LMOD="$(lua_get_lmod_dir)"
)
cmake_src_configure
popd
}
each_lua_compile() {
pushd "${BUILD_DIR}"
cmake_src_compile
popd
}
each_lua_install() {
pushd "${BUILD_DIR}"
cmake_src_install
popd
}
src_prepare() {
sed -i -r \
-e '/^INSTALL..DIRECTORY docs/d' \
-e '/^INSTALL..DIRECTORY tests/d' \
-e '/^INSTALL..FILES .* README /d' \
CMakeLists.txt
cmake_src_prepare
lua_copy_sources
}
src_configure() {
lua_foreach_impl each_lua_configure
}
src_compile() {
lua_foreach_impl each_lua_compile
}
src_install() {
lua_foreach_impl each_lua_install
if use examples; then
mv tests examples
DOCS+=(examples)
docompress -x "/usr/share/doc/${PF}/examples"
fi
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-3.11.tar.gz | 233462 bytes | https://github.com/LuaLanes/lanes/archive/v3.11.tar.gz |