mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 05:34:45 +02:00
43 lines
927 B
Bash
43 lines
927 B
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit go-module
|
|
|
|
DESCRIPTION="yq is a lightweight and portable command-line YAML, JSON and XML processor"
|
|
HOMEPAGE="https://github.com/mikefarah/yq"
|
|
SRC_URI="https://github.com/mikefarah/yq/archive/refs/tags/v${PV}.tar.gz -> ${P/-go/}.tar.gz
|
|
https://dev.gentoo.org/~zmedico/dist/${P/-go/}-deps.tar.xz"
|
|
|
|
S=${WORKDIR}/${P/-go/}
|
|
LICENSE+=" Apache-2.0 BSD BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 ~loong"
|
|
IUSE="+yq-symlink"
|
|
DOCS=(README.md)
|
|
RDEPEND="yq-symlink? ( !app-misc/yq[yq-symlink(+)] )"
|
|
|
|
src_unpack() {
|
|
default
|
|
}
|
|
|
|
src_prepare() {
|
|
ln -sv ../vendor ./ || die
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
CGO_ENABLED=0 ego build -ldflags "-X main.GitDescribe=v${PV} -s -w"
|
|
}
|
|
|
|
src_install() {
|
|
einstalldocs
|
|
newbin yq yq-go
|
|
if use yq-symlink; then
|
|
dosym yq-go /usr/bin/yq
|
|
fi
|
|
}
|
|
|
|
src_test() {
|
|
./scripts/test.sh || die
|
|
}
|