commit: a3f40382183e42d6590dd0fd51bb447c456258bd Author: Skyler Mäntysaari <sm+gentoo <AT> skym <DOT> fi> AuthorDate: Sat Feb 1 11:09:58 2025 +0000 Commit: Skyler Mäntysaari <gentoo <AT> samip <DOT> fi> CommitDate: Sat Feb 1 11:10:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a3f40382
app-crypt/sops: add 3.9.4 Signed-off-by: Skyler Mäntysaari <sm+gentoo <AT> skym.fi> app-crypt/sops/Manifest | 2 ++ app-crypt/sops/metadata.xml | 4 ++++ app-crypt/sops/sops-3.9.4.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/app-crypt/sops/Manifest b/app-crypt/sops/Manifest index b9f548075..e0f966533 100644 --- a/app-crypt/sops/Manifest +++ b/app-crypt/sops/Manifest @@ -1,2 +1,4 @@ DIST sops-3.9.2-vendor.tar.xz 5316320 BLAKE2B e45f25fc5cf8d76abd1b62a5886fe2dbceb9045551b8cd5e6369a9fcc40736973877ac134876f021c76e6d2debbc6c64ee259c28edfef375352c97a7c3891a8f SHA512 cc91beb05a0b0489729af8be81f70c1b1db90f0bdc7658bc4ce9f78fbb22880cd47f9011108fe8cd36fafaa2dcf7471d82163300efd6d0fab3b4b9ec43e305b8 DIST sops-3.9.2.tar.gz 251323 BLAKE2B 97aad0fef7f83c61c94425d20dbdb428a79f3d333c636548b3dcce186ffe22f8da79826de1a25647e417773c88e4a32f75bacddc83d8e6a0f33f013d693e71a7 SHA512 6914c010604aae9694092550864dfe93c89497fac251926f50bd5084a280c82250072308755c16a76309f81542f4b0da9b42e21cdef06fd239bab8c3378e1dca +DIST sops-3.9.4-vendor.tar.xz 5341228 BLAKE2B 4d7d162867466b01a300d6be0b39a28327532b01b3d3ae2b5be29a1d5316160e44c01845601535078225b2a7d6b40c214463cf0eca4042e03c67eb453e35b03f SHA512 6154f3aaeffc6b96169bebc70636b6260e414147ece976c18e13cbebb352c69604219156b72d6a6594b96bd42e15e6d554e5b2a9140fbb70627e8585e0f3eeba +DIST sops-3.9.4.tar.gz 250843 BLAKE2B b48f390417df3eb1d9aec5028b8a0f7331874250728499cda603b317e9fe468158222b187f708ff0a0083e060c712b27e25a13494ea9744f293137775e642699 SHA512 bf4eb2e536d1bb83e2bf91fc1684cc121917dc2e5a3d0a51b526ff57f006fbb817a4e7e6f658451dfdac56fb1b76f8063c59163a9c5ba5f2dcb44d1d1826cbbb diff --git a/app-crypt/sops/metadata.xml b/app-crypt/sops/metadata.xml index 3956c5f78..cb9ccde08 100644 --- a/app-crypt/sops/metadata.xml +++ b/app-crypt/sops/metadata.xml @@ -5,6 +5,10 @@ <email>arianxdehgh...@gmail.com</email> <name>Arian Dehghani</name> </maintainer> + <maintainer type="person"> + <email>sm+gen...@skym.fi</email> + <name>Skyler Mäntysaari</name> + </maintainer> <upstream> <remote-id type="github">getsops/sops</remote-id> <bugs-to>https://github.com/getsops/sops/issues</bugs-to> diff --git a/app-crypt/sops/sops-3.9.4.ebuild b/app-crypt/sops/sops-3.9.4.ebuild new file mode 100644 index 000000000..a800bd8f0 --- /dev/null +++ b/app-crypt/sops/sops-3.9.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 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/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://samip537.kapsi.fi/gentoo-mirror/sops-${PV}-vendor.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 +}