net-fs/ksmbd-tools: drop 3.4.8

Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk
2024-12-24 14:41:49 +01:00
parent 3c99e14824
commit 44079c2a63
3 changed files with 0 additions and 117 deletions

View File

@@ -1,2 +1 @@
DIST ksmbd-tools-3.4.8.tar.gz 88898 BLAKE2B 4bd4fa77e7d89de4f48427e6867807b27a9be91e4f27079d4a5b231c4925aef73489bced1e4569361105fe7e04671fa8d6f3394154b36072f9d4ec77fded7466 SHA512 f5372ea7fd4b754482374cdeefa011bebe32c37a26acc180c34c61f37cf08125b5b4626128cae413cd517a74af326188f3f9e7cf459308e4305d86e7c6702436
DIST ksmbd-tools-3.5.2.tar.gz 463604 BLAKE2B f54ff13719dd7e7167d065a7aaf5393fc18f67611be0a22fc4914e6d2afd25e751db85c27ff3adde482e1d9c4192161b76dc92f9c066dcc41cae7c820510483c SHA512 20035501e63798f5a23d3d9502ff4a50b04f74a03154bc4bfdfabb37dcf106410cd1355c2612cc46a0e52742f8e213dad4862790661781691e77760c56f40386

View File

@@ -1,41 +0,0 @@
#!/sbin/openrc-run
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
KSMBD_CONF="${KSMBD_CONF:-/etc/ksmbd/ksmbd.conf}"
KSMBD_OPTS="${KSMBD_OPTS:-}"
depend() {
need localmount
use net
}
description="ksmbd userspace daemon"
command="/sbin/ksmbd.mountd"
command_control="/sbin/ksmbd.control"
command_args="--config=${KSMBD_CONF} ${KSMBD_OPTS}"
extra_started_commands="reload"
required_files="${KSMBD_CONF}"
reload() {
ebegin "Reloading ${RC_SVCNAME}"
"${command_control}" --reload
eend $?
}
start_pre() {
/sbin/modprobe -q ksmbd || return 0
}
stop() {
ebegin "Stopping ${RC_SVCNAME}"
"${command_control}" --shutdown
eend $?
}
stop_post() {
/sbin/modprobe -r -q ksmbd || return 0
}

View File

@@ -1,75 +0,0 @@
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools linux-info systemd
DESCRIPTION="cifsd/ksmbd kernel server userspace utilities"
HOMEPAGE="https://github.com/cifsd-team/ksmbd-tools"
SRC_URI="https://github.com/cifsd-team/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"
DEPEND="
dev-libs/glib:2
dev-libs/libnl:3
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
pkg_setup() {
# we don't want to die() here to be able to build binpkgs
kernel_is -lt 5 15 && eerror "kernel >= 5.15 required for ${PN}"
CONFIG_CHECK="~SMB_SERVER"
ERROR_SMB_SERVER="CONFIG_SMB_SERVER is not set: ksmbd is not enabled in kernel, ${PN} will not work"
# use krb5 && CONFIG_CHECK+=" ~SMB_SERVER_KERBEROS5"
linux-info_pkg_setup
}
src_prepare() {
eautoreconf
default
}
src_configure() {
# TODO: add kerberos support, explicitly disable for now
# tools are expected to reside in /sbin, not /usr/sbin
econf \
--prefix="${EPREFIX:-}" \
--enable-krb5=no \
--libexecdir="${EPREFIX}/usr/libexec" \
--with-rundir="${EPREFIX}/run" \
--with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
}
src_install() {
default
local DOCS=( README.md ksmbd.conf.example )
einstalldocs
insinto /etc/ksmbd
doins ksmbd.conf.example
newinitd "${FILESDIR}/ksmbd.initd" ksmbd
newconfd "${FILESDIR}/ksmbd.confd" ksmbd
dosym ksmbd.addshare /sbin/smbshareadd
dosym ksmbd.adduser /sbin/smbuseradd
}
pkg_postinst() {
local ver
for ver in ${REPLACING_VERSIONS}; do
if ver_test ${ver} -lt 3.4.6; then
ewarn "Upgrade from version <${CATEGORY}/${PN}-3.4.6 detected"
ewarn "${PN} config file moved to ${EPREFIX}/etc/ksmbd/ksmbd.conf"
ewarn "Please migrate from old ${EPREFIX}/etc/ksmbd/smb.conf"
fi
done
unset ver
}