blob: 7dc9bf98499f17b7f0bdb6dd940b648ff52dca81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 2020-2024 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.22"
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="dcef719e208a9b226b15bc6512ad729a7dd93270"
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
}
|