app-crypt/sops: add 3.12.2, drop 3.12.0

Signed-off-by: Skyler Mäntysaari <sm+gentoo@skym.fi>
This commit is contained in:
Skyler Mäntysaari
2026-04-14 15:21:17 +03:00
parent 5d84b820d9
commit ba8e65e9d0
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Simple And Flexible Tool For Managing Secrets"
HOMEPAGE="https://getsops.io/"
SRC_URI="https://github.com/getsops/sops/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://git.skysolutions.fi/gentoo-mirror/guru-vendored/releases/download/sops-${PV}/sops-${PV}-deps.tar.xz"
#SRC_URI+=" https://github.com/Arian-D/sops-deps/releases/download/${PV}/${P}-vendor.tar.xz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
src_compile() {
ego build
}
src_test() {
ego test
}
src_install() {
GOBIN="${S}/bin" ego install ./...
dobin bin/${PN}
dodoc README.rst
default
}