Eerste test

This commit is contained in:
nils 2024-12-27 21:17:14 +01:00
commit ecd3198a88
7 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST v0.19.2.tar.gz 367782 BLAKE2B 0f55dc818b2562426b7cd42dea8018fc819f7d1aedf5d3ffc4b3e7c128c543a41107cb371513e7f7ba8397ffcf64f643db81e4b7ac006e6bc93a207c305d80e4 SHA512 56f0de98366d36cc9826c38b1c7aa9defac642bbbcbbbcef8cb1e89672bc537152a652f1c39803c4bbdb4634adf636861bff65a88d14103eb4c3104f63883491

View file

@ -0,0 +1,29 @@
# No copyright
EAPI=8
inherit meson
DESCRIPTION="Service monitoring / 'init' system"
HOMEPAGE="https://davmac.org/projects/dinit"
SRC_URI="https://github.com/davmac314/dinit/archive/refs/tags/v${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+man test -shutdown -cgroups"
DEPEND=""
RDEPEND="${DEPEND}"
#BDEPEND=""
src_configure() {
local emesonargs=(
$(meson_use man man-pages)
$(meson_use test unit-tests)
$(meson_use test igr-tests)
$(meson_feature shutdown build-shutdown)
$(meson_feature cgroups support-cgroups)
)
meson_src_configure
}