forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-util/bazel: Bump to version 3.7.2
Reported-by: Hans de Graaff <[email protected]> Closes: https://bugs.gentoo.org/783132 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Zac Medico <[email protected]>
- Loading branch information
Showing
2 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit bash-completion-r1 java-pkg-2 multiprocessing | ||
|
||
DESCRIPTION="Fast and correct automated build system" | ||
HOMEPAGE="https://bazel.build/" | ||
|
||
SRC_URI="https://github.com/bazelbuild/bazel/releases/download/${PV}/${P}-dist.zip" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="examples tools prefix static-libs" | ||
REQUIRED_USE="prefix? ( static-libs )" | ||
# 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/jdk-1.8:*" | ||
DEPEND="${RDEPEND} | ||
app-arch/unzip | ||
app-arch/zip" | ||
|
||
S="${WORKDIR}" | ||
|
||
bazel-get-flags() { | ||
local i fs=() | ||
for i in ${CFLAGS}; do | ||
fs+=( "--copt=${i}" "--host_copt=${i}" ) | ||
done | ||
for i in ${CXXFLAGS}; do | ||
fs+=( "--cxxopt=${i}" "--host_cxxopt=${i}" ) | ||
done | ||
for i in ${CPPFLAGS}; do | ||
fs+=( "--copt=${i}" "--host_copt=${i}" ) | ||
fs+=( "--cxxopt=${i}" "--host_cxxopt=${i}" ) | ||
done | ||
for i in ${LDFLAGS}; do | ||
fs+=( "--linkopt=${i}" "--host_linkopt=${i}" ) | ||
done | ||
echo "${fs[*]}" | ||
} | ||
|
||
pkg_setup() { | ||
echo ${PATH} | grep -q ccache && \ | ||
ewarn "${PN} usually fails to compile with ccache, you have been warned" | ||
java-pkg-2_pkg_setup | ||
} | ||
|
||
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 EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs) $(bazel-get-flags) --host_javabase=@local_jdk//:jdk" | ||
if use static-libs; then | ||
export BAZEL_LINKOPTS=-static-libs:-static-libgcc BAZEL_LINKLIBS=-l%:libstdc++.a:-lm | ||
fi | ||
VERBOSE=yes ./compile.sh || die | ||
|
||
./scripts/generate_bash_completion.sh \ | ||
--bazel=output/bazel \ | ||
--output=bazel-complete.bash \ | ||
--prepend=scripts/bazel-complete-header.bash \ | ||
--prepend=scripts/bazel-complete-template.bash | ||
} | ||
|
||
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 | ||
} |