dev-build/bazelisk - 1.28.1 (gentoo)

Search

Package Information

Description:
A user-friendly launcher for Bazel written in Go
Homepage:
https://github.com/bazelbuild/bazelisk/
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
1.28.1 8 amd64 arm64 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit go-module

DESCRIPTION="A user-friendly launcher for Bazel written in Go"
HOMEPAGE="https://github.com/bazelbuild/bazelisk/"
SRC_URI="
	https://github.com/bazelbuild/${PN}/archive/refs/tags/v${PV}.tar.gz
		-> ${P}.gh.tar.gz
	https://dev.gentoo.org/~xgqt/distfiles/deps/${P}-deps.tar.xz
"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm64"
IUSE="+bazel-symlink"

DOCS=( CONTRIBUTING.md README.md )

src_compile() {
	mkdir -p bin || die

	local go_ldflags="-X main.BazeliskVersion=${PV}"
	local -a go_buildargs=(
		-ldflags "${go_ldflags}"
		-o bin
	)
	ego build "${go_buildargs[@]}"
}

src_install() {
	exeinto /usr/bin
	doexe "bin/${PN}"

	if use bazel-symlink ; then
		dosym -r /usr/bin/bazelisk /usr/bin/bazel
	fi

	einstalldocs
}

USE Flags

bazel-symlink
Default: Enabled (+)

Manifest for 1.28.1

Type File Size Source URLs
DIST bazelisk-1.28.1-deps.tar.xz 2578056 bytes https://dev.gentoo.org/~xgqt/distfiles/deps/bazelisk-1.28.1-deps.tar.xz
DIST bazelisk-1.28.1.gh.tar.gz 160928 bytes https://github.com/bazelbuild/bazelisk/archive/refs/tags/v1.28.1.tar.gz