gentoo-ebuilds/app-containers/amazon-ecr-credential-helper/amazon-ecr-credential-helper-0.10.1.ebuild
Arthur Zamarin 8a274b4389
app-containers/amazon-ecr-credential-helper: add 0.10.1
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-07-02 21:58:51 +03:00

29 lines
664 B
Bash

# 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
}