public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bazel/
Date: Fri, 16 Apr 2021 17:56:37 +0000 (UTC)	[thread overview]
Message-ID: <1618595792.100595fec4afcb6a33ff49618779569947c4184c.zmedico@gentoo> (raw)

commit:     100595fec4afcb6a33ff49618779569947c4184c
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 16 17:51:37 2021 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Apr 16 17:56:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=100595fe

dev-util/bazel: Bump to version 3.7.2

Reported-by: Hans de Graaff <graaff <AT> gentoo.org>
Closes: https://bugs.gentoo.org/783132
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 dev-util/bazel/Manifest           |   1 +
 dev-util/bazel/bazel-3.7.2.ebuild | 113 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 114 insertions(+)

diff --git a/dev-util/bazel/Manifest b/dev-util/bazel/Manifest
index 8b3231b39db..5257e3ea42b 100644
--- a/dev-util/bazel/Manifest
+++ b/dev-util/bazel/Manifest
@@ -9,3 +9,4 @@ DIST bazel-1.2.0-rename-gettid-functions.patch 3303 BLAKE2B 75aaed0b8e5fe33910d1
 DIST bazel-1.2.1-dist.zip 267514406 BLAKE2B f9d316ac096f503a2c7fe101b103b88e7f0247f767a8dc28eb8c9d2cd0b6df6fa785f3b187e1a3963e2f9f0ae742a3330e5104e7a8aea75cb9b9e100366a5aca SHA512 bc0e6526bfbb8725a4f2ae95fc88b22229301b64559325fca3bcf5a9bc642cec2b2284eb9a6ce0699f1f910378b89ee23657dbea7928a92cc1900f1f2f405ff3
 DIST bazel-2.0.0-dist.zip 259625808 BLAKE2B 31b62fb3da1f6fc7efc4c3f44521e12f879a1e5b532fe814d8f49c01c511b34cd65df252d6d143fdcd96f72dc94d76249f79be50fc66a459132c030ef0182ca8 SHA512 db609e9d0ee0cdbfb999de850db17907af02dc26e605f4617dfeb2fbac5c30c4c0a9f48c6ba3673ffe8babb5b9e157cc51c32832015b85ed279b6b160506cdae
 DIST bazel-3.2.0-dist.zip 269368916 BLAKE2B 1eb54c42e22432d2c836a87179094563b797744de423468bf9bce1b7b4dbcdce20e033ed03c4cd7ea5026c9e0d971e16202aff09f9c45d91c9fc53af6f0f8802 SHA512 fd8191188ecb49087b2b474bc383b2bb5d131460952be64b8930dc7e573fd14f99f231c4270b88fb4c9537fb94a04588fb580891519d20c7b90d705238f17f81
+DIST bazel-3.7.2-dist.zip 313677756 BLAKE2B cd6363762c68d25739a6bf6c13f10e191302a10b6fb7d97455effbc678d4f0b644c76115cad478aad7c09f703d9e594f4bdb8669ed6ab97d6a559a27723c510c SHA512 e8746ef5ec22feb95e9dbbddb3fb56cf8f49c80f326fc2a4e0ce2619607826fac22f46bfb995daee55bf9ffabb9d646b8454be2bce7b479da5cf2a7e5b3be62b

diff --git a/dev-util/bazel/bazel-3.7.2.ebuild b/dev-util/bazel/bazel-3.7.2.ebuild
new file mode 100644
index 00000000000..ac040b43670
--- /dev/null
+++ b/dev-util/bazel/bazel-3.7.2.ebuild
@@ -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
+}


             reply	other threads:[~2021-04-16 17:56 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-16 17:56 Zac Medico [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-05-21 19:32 [gentoo-commits] repo/gentoo:master commit in: dev-util/bazel/ Jason Zaman
2022-11-22 18:03 Jason Zaman
2022-09-23  3:06 Jason Zaman
2022-09-23  3:06 Jason Zaman
2022-05-01 19:04 Florian Schmaus
2022-03-31  1:18 Jason Zaman
2022-03-31  1:18 Jason Zaman
2021-11-22 15:08 David Seifert
2021-11-22  7:48 Agostino Sarubbo
2021-11-06  4:48 Benda XU
2021-09-19  1:39 Sam James
2021-03-06  8:55 Zac Medico
2020-06-13 21:16 Zac Medico
2020-03-29  2:26 Jason Zaman
2020-03-26  1:38 Benda XU
2020-03-17 18:44 Agostino Sarubbo
2020-02-22  7:39 Jason Zaman
2019-12-09  7:10 Zac Medico
2019-11-23  0:06 Zac Medico
2019-11-22 23:54 Zac Medico
2019-11-22 23:36 Zac Medico
2019-09-11  0:48 Zac Medico
2019-07-29  6:41 Zac Medico
2019-07-21 23:02 Zac Medico
2019-07-21 20:51 Zac Medico
2019-07-03  5:51 Jason Zaman
2019-06-27  5:06 Jason Zaman
2019-06-17 19:43 Zac Medico
2019-06-11  1:16 Zac Medico
2019-05-18 20:33 Zac Medico
2019-04-26  7:42 Jason Zaman
2019-02-03 14:33 Jason Zaman
2019-02-03 14:33 Jason Zaman
2019-02-03 14:33 Jason Zaman
2018-12-24 10:32 Jason Zaman
2018-11-17 17:32 Jason Zaman
2018-10-17  4:46 Jason Zaman
2018-10-05  9:44 Jason Zaman
2018-10-03 17:10 Jason Zaman
2018-09-15 16:02 Jason Zaman
2018-09-15 16:02 Jason Zaman
2018-08-02 16:39 Jason Zaman
2018-08-02 16:39 Jason Zaman
2018-06-11 18:24 Jason Zaman
2018-06-11 18:24 Jason Zaman
2018-05-21 18:10 Zac Medico
2018-04-30 18:55 Jason Zaman
2018-02-18 22:49 Zac Medico
2018-02-17 19:18 Zac Medico
2017-11-26 11:39 David Seifert
2017-10-25  6:39 Zac Medico
2017-10-25  6:15 Zac Medico
2017-07-15 21:18 Zac Medico
2017-07-09 20:12 Zac Medico
2017-07-09 19:57 Zac Medico
2017-04-23  0:19 Zac Medico
2017-04-22 23:09 Zac Medico
2017-03-08 18:04 Sebastien Fabbro
2017-01-02 16:13 Sebastien Fabbro
2016-11-17 17:28 Sebastien Fabbro
2016-10-29  0:52 Sebastien Fabbro
2016-10-28 23:38 Zac Medico

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1618595792.100595fec4afcb6a33ff49618779569947c4184c.zmedico@gentoo \
    --to=zmedico@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox