Install this version:
emerge -a =app-admin/aws-vault-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-admin/aws-vault-9999
Or alternatively:
emerge --autounmask-write -a =app-admin/aws-vault-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 git-r3 go-module optfeature shell-completion
DESCRIPTION="A vault for securely storing and accessing AWS credentials"
HOMEPAGE="https://github.com/ByteNess/aws-vault"
EGIT_REPO_URI="https://github.com/ByteNess/${PN}.git"
LICENSE="MIT"
SLOT="0"
DOCS=( {README,USAGE}.md )
src_unpack() {
git-r3_src_unpack
go-module_live_vendor
}
src_compile() {
ego build -ldflags="-X main.Version=${PV}" -o aws-vault
}
src_test() {
ego test -work ./...
}
src_install() {
einstalldocs
dobin aws-vault
newinitd "${FILESDIR}"/aws-vault.initd aws-vault
newconfd "${FILESDIR}"/aws-vault.confd aws-vault
newbashcomp contrib/completions/bash/aws-vault.bash aws-vault
newfishcomp contrib/completions/fish/aws-vault.fish aws-vault
newzshcomp contrib/completions/zsh/aws-vault.zsh _aws-vault
dodoc contrib/scripts/aws-iam-{create,resync}-yubikey-mfa.sh
}
pkg_postinst() {
optfeature "storing passwords via Secret Service API provider" virtual/secret-service
optfeature "storing passwords via passwordstore" app-admin/pass
}