Install this version:
emerge -a =app-crypt/step-kms-plugin-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-crypt/step-kms-plugin-9999
Or alternatively:
emerge --autounmask-write -a =app-crypt/step-kms-plugin-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo git-r3 go-module shell-completion
DESCRIPTION="A private certificate authority and ACME server"
HOMEPAGE="https://github.com/smallstep/certificates"
EGIT_REPO_URI="https://github.com/smallstep/certificates.git"
LICENSE="Apache-2.0"
SLOT="0"
RDEPEND="sys-apps/pcsc-lite"
src_unpack() {
git-r3_src_unpack
go-module_live_vendor
}
src_compile() {
DATE="$(date -u '+%Y-%m-%d-%H%M UTC')"
LDFLAGS="-w -X github.com/smallstep/step-kms-plugin/cmd.Version=${PV}
-X \"github.com/smallstep/step-kms-plugin/cmd.ReleaseDate=${DATE}\""
ego build -ldflags "${LDFLAGS}" -o step-kms-plugin
local completion
for completion in bash fish zsh ; do
edo ./step-kms-plugin completion ${completion} > step-kms-plugin.${completion}
done
}
src_test() {
ego test -work ./...
}
src_install() {
einstalldocs
dobin step-kms-plugin
newbashcomp step-kms-plugin.bash step-kms-plugin
newfishcomp step-kms-plugin.fish step-kms-plugin
newzshcomp step-kms-plugin.zsh _step-kms-plugin
}
sys-apps/pcsc-lite