sys-fs/ksmbd-tools: use a snapshot to have unit

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Guillaume Castagnino <casta@xwing.info>
This commit is contained in:
Guillaume Castagnino 2021-11-02 18:47:45 +01:00
parent 3ccb342f0b
commit 4634a61e7a
Signed by: casta
GPG Key ID: C47D4BFADB084424
2 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,3 @@
DIST ksmbd-tools-3.4.2.tgz 1277300 BLAKE2B 09469cef67ba5909d60ae54d288f52f3ab131664a49fcd5c68b7578d5edba5d419d755770702a467d99957998e2d15358be6c8b3b6a51b3d9408b0c613e0dbd7 SHA512 7d271ed5b10a3ed9cdece797f85405f0f93fdddf7da01f24c48caeb9f481d009fa73a3190c7270d0f2fd326ca6feba890f4ad15aca8fe09f29940c91686554e1
EBUILD ksmbd-tools-3.4.2.ebuild 651 BLAKE2B 28dcb2a73222de1dbb5348e5d176f729ec878777bcb7b09bd22ae3eaf4ca18f5cf61b9f9afa4a6241aa4feef7d88aaf936dde03dc2cf0fafdb6329423c79b68b SHA512 d39c85e41581e7bd9888317e7f649e3b2edf6626f61616fc2a8946e2e76f07211d1de88ff13fb69560e589d9cdf0e3b51032440a99a9887237f89e2ac6605a44
DIST a1144518d74a26e0a45c0c1685f56f0f695bb497.zip 110359 BLAKE2B 29ec05e01c4f6c280793b3ef3e6d11e033cab5c3b39fdf3365a9f3d3c02ea56ff4ccb5cbaac14cb17508fac2a5f954b825e5d9566af9189569801bc4b5c03caf SHA512 9d885c1084991798aea33855f58ebd261b22d46514e1cd25cbf434828d8ca108d0097693034364558daea4fd96c48dbf64f1422d3449e00f0f125b65592a3a23
EBUILD ksmbd-tools-3.4.2_p20211026.ebuild 958 BLAKE2B 4fe701fd27cf37068751a777fa59854ec71bdbd6482c7143a5f39defd8a1dd75b6d877c000ce8f5062b5c22f3ff9e6f7a9b38eddc430a9355078c9105351f2bb SHA512 d53d7ba02764cc16e5c7133d454515da439c85a44ed1eac6a7fde9f877c0158208a47a92b32dd91c60adbcab933cb5a8f63533b725f9059dd3c270fb2d8f7892
MISC metadata.xml 253 BLAKE2B ac50d70479526513b1c60d14e609cc24c0498bc5124837f8d20b5d5989cc3876c3e4878ac177658f4be088dd5731142eaefff3ec5aac963efe756eabc5ed26c1 SHA512 96696bc7a2e0f4c1447a44241c7aec867015c37f73f958b72b8489a5038b551f1700dc5540651129a19ab29ce58c4be88bea1226f31b846fb285a25ba4cd61e9

View File

@ -3,11 +3,13 @@
EAPI=8
inherit autotools
inherit autotools systemd
DESCRIPTION="cifsd kernel server userspace utilities"
HOMEPAGE="https://github.com/cifsd-team/ksmbd-tools"
SRC_URI="https://github.com/cifsd-team/${PN}/releases/download/${PV}/${P}.tgz"
#SRC_URI="https://github.com/cifsd-team/${PN}/releases/download/${PV}/${P}.tgz"
# for now, use a snapshot to have the unit file
SRC_URI="https://github.com/cifsd-team/${PN}/archive/a1144518d74a26e0a45c0c1685f56f0f695bb497.zip"
LICENSE="GPL-2"
SLOT="0"
@ -35,3 +37,12 @@ src_configure() {
)
econf "${myeconfargs[@]}"
}
src_install() {
emake DESTDIR="${D}" install
einstalldocs
dodoc smb.conf.example Documentation/configuration.txt
systemd_dounit ksmbd.service
}