dev-lua/lsysstats - 9999 (mva)

Search

Install

Install this version:

emerge -a =dev-lua/lsysstats-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-lua/lsysstats-9999

Or alternatively:

emerge --autounmask-write -a =dev-lua/lsysstats-9999

Package Information

Description:
System statistics library for Lua
Homepage:
https://code.matthewwild.co.uk/
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License

EAPI=8

LUA_COMPAT=( lua{5-{1..4},jit} )

inherit lua mercurial

DESCRIPTION="System statistics library for Lua"
HOMEPAGE="https://code.matthewwild.co.uk/"
EHG_REPO_URI="https://code.matthewwild.co.uk/${PN}/"

LICENSE="MIT"
SLOT="0"
IUSE="examples"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RDEPEND="${LUA_DEPS}"
DEPEND="${RDEPEND}"

src_prepare() {
	default
	sed -r \
		-e "s@(require.*)(proc.*)@\1${PN}.\2@" \
		-i init.lua

	mkdir -p ${PN}
	mv {init,proc}.lua ${PN}
}

each_lua_install() {
	insinto "$(lua_get_lmod_dir)"
	doins -r ${PN}
}
src_install() {
	lua_foreach_impl each_lua_install
	if use examples; then
		mkdir examples -p
		mv demo.lua examples
		DOCS+=(examples)
		docompress -x /usr/share/doc/"${PF}"/examples
	fi
	einstalldocs
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-lua/lsysstats | euse -E <flag> -p dev-lua/lsysstats | euse -D <flag> -p dev-lua/lsysstats

Global/Standard Flags

Inherited Eclasses

lua