# Copyright 2020-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module DESCRIPTION="OCI registry client" HOMEPAGE="https://github.com/oras-project/oras" BDEPEND=">=dev-lang/go-1.25" SRC_URI="https://github.com/oras-project/oras/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz" COMMIT="40530fe4c68e5825b868cd874bd46fc0cdd0f432" LICENSE="BSD" LICENSE+=" Apache-2.0 MIT BSD" SLOT="0" KEYWORDS="~amd64" src_compile() { ego build -ldflags "-X oras.land/oras/internal/version.BuildMetadata="" \ -X oras.land/oras/internal/version.GitCommit=${COMMIT} \ -X oras.land/oras/internal/version.GitTreeState=clean" \ ./cmd/oras } src_test() { ego test ./... } src_install() { dobin oras }