Files
guru/app-benchmarks/k6/k6-1.4.2.ebuild
Gabriel M. Dutra 3bb204b43d app-benchmarks/k6: update SRC_URI
Signed-off-by: Gabriel M. Dutra <hi@dutra.sh>
2026-01-04 04:25:22 -03:00

27 lines
526 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Load testing tool"
HOMEPAGE="https://github.com/grafana/k6"
SRC_URI="https://github.com/grafana/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://distfiles.dutra.sh/distfiles/${P}-vendor.tar.xz"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64"
# Tests requires network connection
RESTRICT=test
src_compile() {
ego build -v -x -o ${PN}
}
src_install() {
dobin ${PN}
}