commit: 8a274b438990506c70f09fb56283861f22787cb4 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Wed Jul 2 18:51:55 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Wed Jul 2 18:58:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a274b43
app-containers/amazon-ecr-credential-helper: add 0.10.1 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> .../amazon-ecr-credential-helper/Manifest | 1 + .../amazon-ecr-credential-helper-0.10.1.ebuild | 29 ++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/app-containers/amazon-ecr-credential-helper/Manifest b/app-containers/amazon-ecr-credential-helper/Manifest index 3307454f2615..10a314a1faf3 100644 --- a/app-containers/amazon-ecr-credential-helper/Manifest +++ b/app-containers/amazon-ecr-credential-helper/Manifest @@ -1,2 +1,3 @@ DIST amazon-ecr-credential-helper-0.10.0.tar.gz 1989413 BLAKE2B 87d7b8d351c3063b534ce569c8ac2b3428013f552aa142e091b23d34a67d235a44b3a218bb9cb31a14816fc88f4d05fabed1968a293e90e420011e466b81f688 SHA512 117992826f6bf301de073ac973dbfb8b29a38ca40825628ae4f0da101b0cb0878ba9e30513493bb2d6f115222fc8915b3fe17fc0ca8d07b877746c5778505245 +DIST amazon-ecr-credential-helper-0.10.1.tar.gz 1991258 BLAKE2B 3b5175de0e66167fa18896304683951486d0ef3b00ed4edeb280fc70728235c587bb78b9d13fe0340ee11d6d6e06e8531f3f64c9256ada5e2a86c1ce381f5a3a SHA512 13b1be582a2c8bbb45c87ae3d0f7f1dc5606378454bb50d4f2ff7e587a916079f15b53908fa6689174a6c9ac12188201acc8359a530f06ca0c621f968d22f1bb DIST amazon-ecr-credential-helper-0.9.1.tar.gz 1948688 BLAKE2B c6c07fe93f7e0ab08d3e53a258d0a64e632c90edb441e672a22fb3a91d67598b25d4304498d4a2dd6b90366300dae9ca39340c4caf15e9aba330c167393469e2 SHA512 6550f33d8de505f41af6bfbaeac0905dedb13aa4913ab64bcdb3dba99e348aaa9c667992d548f527c71752611c80c9937fd0b941792453bbd22a5ebd6d4c1a57 diff --git a/app-containers/amazon-ecr-credential-helper/amazon-ecr-credential-helper-0.10.1.ebuild b/app-containers/amazon-ecr-credential-helper/amazon-ecr-credential-helper-0.10.1.ebuild new file mode 100644 index 000000000000..e3b165f88fff --- /dev/null +++ b/app-containers/amazon-ecr-credential-helper/amazon-ecr-credential-helper-0.10.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="Automatically gets credentials for Amazon ECR on docker push/docker pull" +HOMEPAGE="https://github.com/awslabs/amazon-ecr-credential-helper" +SRC_URI="https://${PN}-releases.s3.us-east-2.amazonaws.com/${PV}/release.tar.gz -> ${P}.tar.gz" +S=${WORKDIR}/ecr-login + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + ego build ./cli/docker-credential-ecr-login +} + +src_test() { + ego test ./... +} + +src_install() { + dobin docker-credential-ecr-login + doman ../docs/docker-credential-ecr-login.1 + dodoc ../README.md +}
