sys-process/uksmd: add 6.12.2

Closes: https://bugs.gentoo.org/958332
Signed-off-by: xz-dev <xiangzhedev@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/42645
Closes: https://github.com/gentoo/gentoo/pull/42645
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
xz-dev
2025-06-18 09:53:36 +08:00
committed by Sam James
parent db5699f24a
commit c413b40acd
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST uksmd-6.12.2.tar.gz 16952 BLAKE2B f44061b64d8b25cc8df9626f00a1e560dad7e6c98bb5e1f10247bfc063114d2ecb2ce95cf272799beb67ef04c28df8422f532c88c4897572749b11a0591753a8 SHA512 1e3e8d814d3bfa8531f9bbfe155c87e0978e5a2c12da7d3958989577f2939bc45d5bcb5d7c3f78831ab302d781f5e27b79a5d4397cd2e0557a9a67d18dc63a97
DIST uksmd-6.5.1.tar.gz 16878 BLAKE2B 12c0ed088ce189470a63ed74de02b35c994363500a04a28e2b1a8e7ad1ad3b75970cf69af939476b00b8bf1a9838591f83051dc004f2f91d74f19fd17746c37f SHA512 9be0b2f16aee16201a16fb157c5389f104dc9a818a0528cfda6c37e4e9a0d82bd9966cf654052e5f645e21db2f4f149873b07cac5451a5b377a92a5ec4b6e11e

View File

@@ -0,0 +1,39 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit linux-info meson
DESCRIPTION="Userspace KSM helper daemon"
HOMEPAGE="https://codeberg.org/pf-kernel/uksmd"
SRC_URI="https://codeberg.org/pf-kernel/uksmd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN}
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="systemd"
DEPEND="
sys-libs/libcap-ng
>=sys-process/procps-4.0.5:=
systemd? ( sys-apps/systemd:= )
"
RDEPEND="${DEPEND}"
CONFIG_CHECK="~KSM"
src_configure() {
local emesonargs=(
$(meson_feature systemd)
)
meson_src_configure
}
src_install() {
meson_src_install
newinitd "${FILESDIR}/uksmd.init" uksmd
}