diff options
author | William Hubbs <williamh@gentoo.org> | 2023-01-11 15:07:16 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2023-01-11 15:10:34 -0600 |
commit | 9e85771d2ae723cf54df54fdb8fcd7a8ddb8c9a1 (patch) | |
tree | 33feb340f59f21c5c5c9f1e5ff00545f2e63b7a3 /app-containers | |
parent | virtual/rust: Stabilize 1.66.1 ppc64, #890541 (diff) | |
download | gentoo-9e85771d2ae723cf54df54fdb8fcd7a8ddb8c9a1.tar.gz gentoo-9e85771d2ae723cf54df54fdb8fcd7a8ddb8c9a1.tar.bz2 gentoo-9e85771d2ae723cf54df54fdb8fcd7a8ddb8c9a1.zip |
app-containers/cosign: add 1.13.1
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/cosign/Manifest | 2 | ||||
-rw-r--r-- | app-containers/cosign/cosign-1.13.1.ebuild | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/app-containers/cosign/Manifest b/app-containers/cosign/Manifest index 1d7e2d82d660..1f150f686ec4 100644 --- a/app-containers/cosign/Manifest +++ b/app-containers/cosign/Manifest @@ -1,2 +1,4 @@ DIST cosign-1.13.0-deps.tar.xz 381161148 BLAKE2B 63d4423c441fbf933ac7614ba5c2b0611b274be58f7e1c65528d02777a0da6ffc224e093135c0ec56b6a067dfc8f1a80216a75cac9fd31467c815519fdc48ae4 SHA512 03950de39b324708aefb0d5be44a04ebab913bd06c4ecc9dff8a15c9c044c40e4330c924e1b79d91a954bc711d96d5ce92705d85c148e67a5d6239f1b4a1d526 DIST cosign-1.13.0.tar.gz 6645872 BLAKE2B e909f87cac45dce155eb0185f3bb94dadad4aeea94b04937f288fa8d1a426028659f0277b8c4ab2c34778b7a948968fca040486257c357ef38dedfee400df792 SHA512 341928ecd7416cb4fd3023176e1f8a96f16b536810b9ea1b91d91051bfc42bc04d1fd4d03b765e39539c33ac1f94da8204f2e65f6858bc4bf7607ea78bc033c9 +DIST cosign-1.13.1-deps.tar.xz 380089968 BLAKE2B 6674d7c409f1dc6a04afc11ee113a4604edf93b2b849b1d1b7273910158ac4242013e15c65bd88a1a1524d3a50a35e8292eb33819982b623ee264ad9c2b1e90a SHA512 20b74424d56a59abb0cfbe8dde41c577220ac207d144eeab3a2632c2c622b69865c80fe93545b0432156c2d45c66abf3c60f6d14f35bfad26b73e857cfe45b89 +DIST cosign-1.13.1.tar.gz 6654855 BLAKE2B 85704c4bfef04d260966bc9297eb8b973627cc246ea6e293b5b7345eec3b5aef4582d1274d3e442f17f90d7a848280c31ecd9e10facbcd04b497bbc53036e93b SHA512 44fe662939fe8a4de11bd0056bad804aa706b05d56e44f6441fb85249235bdc4324cb19ecceeb39ddff28250615fb857f2727b7c1b8d5b60971b7785924d5694 diff --git a/app-containers/cosign/cosign-1.13.1.ebuild b/app-containers/cosign/cosign-1.13.1.ebuild new file mode 100644 index 000000000000..b680f7f34bb3 --- /dev/null +++ b/app-containers/cosign/cosign-1.13.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +GIT_HASH=d1c6336475b4be26bb7fb52d97f56ea0a1767f9f +inherit go-module + +DESCRIPTION="container signing utility" +HOMEPAGE="https://sigstore.dev" +SRC_URI="https://github.com/sigstore/cosign/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT="test" + +src_compile() { + emake \ + GIT_HASH=${GIT_HASH} \ + GIT_VERSION=v${PV} \ + GIT_TREESTATE=clean +} + +src_install() { + dobin cosign + einstalldocs +dodoc CHANGELOG.md +} |