dev-build/bazel - 5.3.0 (vowstar)

Search

Install

Install this version:

emerge -a =dev-build/bazel-5.3.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-build/bazel-5.3.0

Or alternatively:

emerge --autounmask-write -a =dev-build/bazel-5.3.0

Package Information

Description:
Fast and correct automated build system
Homepage:
https://bazel.build/
License:
Apache-2.0

Ebuild Details

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

EAPI=8

inherit bash-completion-r1 bazel java-pkg-2 multiprocessing toolchain-funcs

DESCRIPTION="Fast and correct automated build system"
HOMEPAGE="https://bazel.build/"

SRC_URI="https://github.com/bazelbuild/bazel/releases/download/${PV}/${P}-dist.zip"
S="${WORKDIR}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples tools"
# strip corrupts the bazel binary
# test fails with network-sandbox: An error occurred during the fetch of repository 'io_bazel_skydoc' (bug 690794)
RESTRICT="strip test"
RDEPEND=">=virtual/jre-11:*"
DEPEND="
	virtual/jdk:11
	app-arch/unzip
	app-arch/zip"

pkg_setup() {
	if has ccache ${FEATURES}; then
		ewarn "${PN} usually fails to compile with ccache, you have been warned"
	fi
	java-pkg-2_pkg_setup

	if [[ ${MERGE_TYPE} != binary ]] && tc-is-gcc && ver_test $(gcc-version) -ge 13 ; then
		eerror "Bazel 6 needs <=gcc-12 to compile."
		eerror "Please run 'eselect gcc' and set correct gcc version."
		die "GCC version is too new to compile Bazel!"
	fi
}

src_unpack() {
	# Only unpack the main distfile
	unpack ${P}-dist.zip
}

src_prepare() {
	default

	# F: fopen_wr
	# S: deny
	# P: /proc/self/setgroups
	# A: /proc/self/setgroups
	# R: /proc/24939/setgroups
	# C: /usr/lib/systemd/systemd
	addpredict /proc
}

src_compile() {
	export JAVA_HOME=$(java-config --jre-home) # so keepwork works
	export EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs) $(bazel_get_flags)
		--java_runtime_version=local_jdk
		--tool_java_runtime_version=local_jdk"
	VERBOSE=yes ./compile.sh || die "Failed compiling bazel"

	./scripts/generate_bash_completion.sh \
		--bazel=output/bazel \
		--output=bazel-complete.bash \
		--prepend=scripts/bazel-complete-header.bash \
		--prepend=scripts/bazel-complete-template.bash || die "Failed to generate bash completions"
}

src_test() {
	output/bazel test \
		--verbose_failures \
		--spawn_strategy=standalone \
		--genrule_strategy=standalone \
		--verbose_test_summary \
		examples/cpp:hello-success_test || die
	output/bazel shutdown
}

src_install() {
	dobin output/bazel
	newbashcomp bazel-complete.bash ${PN}
	bashcomp_alias ${PN} ibazel
	insinto /usr/share/zsh/site-functions
	doins scripts/zsh_completion/_bazel

	if use examples; then
		docinto examples
		dodoc -r examples/*
		docompress -x /usr/share/doc/${PF}/examples
	fi
	# could really build tools but I don't know which ones
	# are actually used
	if use tools; then
		docinto tools
		dodoc -r tools/*
		docompress -x /usr/share/doc/${PF}/tools
		docompress -x /usr/share/doc/${PF}/tools/build_defs/pkg/testdata
	fi
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-build/bazel | euse -E <flag> -p dev-build/bazel | euse -D <flag> -p dev-build/bazel

Global/Standard Flags

Inherited Eclasses

Dependencies

DEPEND

	virtual/jdk:11
	app-arch/unzip
	app-arch/zip

RDEPEND

>=virtual/jre-11:*

Manifest for 5.3.0

Type File Size Source URLs
DIST bazel-5.3.0-dist.zip 235314819 bytes https://github.com/bazelbuild/bazel/releases/download/5.3.0/bazel-5.3.0-dist.zip