From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bazel/
Date: Sun, 23 Apr 2017 00:19:13 +0000 (UTC) [thread overview]
Message-ID: <1492906749.d9ec6cce5a78c1c2c75b17d483c11fa7c4046a26.zmedico@gentoo> (raw)
commit: d9ec6cce5a78c1c2c75b17d483c11fa7c4046a26
Author: kuzetsa <kuzetsa <AT> gmail <DOT> com>
AuthorDate: Fri Apr 7 04:01:20 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 00:19:09 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9ec6cce
dev-util/bazel: version bump (0.4.5)
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-util/bazel/Manifest | 1 +
dev-util/bazel/bazel-0.4.5.ebuild | 69 +++++++++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
diff --git a/dev-util/bazel/Manifest b/dev-util/bazel/Manifest
index 05ea2a4120d..7b0feba1a13 100644
--- a/dev-util/bazel/Manifest
+++ b/dev-util/bazel/Manifest
@@ -2,3 +2,4 @@ DIST bazel-0.3.2.tar.gz 145095554 SHA256 9692ac3318a40e8a0530f68bbfc473ae5f6a4a5
DIST bazel-0.4.0.tar.gz 159192903 SHA256 2370649043b5b3c407016a74946d5c443dd5c8ba43c1ffe28b83553983e5057c SHA512 be5c91b8c8e7061c4992d477d9ffa7eaf11fcc064a54ae2db7ccf8fa931223e758288876b8c191f3d4ddf16dd1858b2c99ce1ef58da71dc2edbcc57b2036f871 WHIRLPOOL 72d720b57241bf5a4769d3e84d6dee787aed9b4bb32353a32f2a3580cd74b6185db2c002c1e403246c511af7072ce24ba3cb71a12fa426f97faf4dbae9dff9d1
DIST bazel-0.4.3-dist.zip 90363167 SHA256 cbd2ab580181c17317cf18b2bf825bcded2d97cab01cd5b5fe4f4d520b64f90f SHA512 fd5886c5951c71181a73bd7efd66a09606f372e9f9af01a62436bfb3fb4f1e37095d1d11a567856b6e6649afddaae436df9f8aaa03a436e3427b2ee60a9b0370 WHIRLPOOL 367ea40bd5df22c5f8b2d7c77c176d9d23c301a7a28c39afd241888ed0de611fe3eccc2402173b3ea98cc980cd18208d4d8b452040910c4cc3d47797e646a58b
DIST bazel-0.4.4-dist.zip 93032267 SHA256 d52a21dda271ae645711ce99c70cf44c5d3a809138e656bbff00998827548ebb SHA512 0ca24cbd3894f7db657e50b63ccd2613530eca5df607acb71642f9d33196ee3b1b21244541880cd27ff87050bc189f1b65b22f89aad73c6b25efbe9a5c86d114 WHIRLPOOL ef3fb9fb285c19292bb7d4ad300034cc5f6a36d4405f34b2bb9192ffb18f3bda93f8a52a97bbb678ef8e4bddfac506e35cee6ae72a069da576fc663e29269211
+DIST bazel-0.4.5-dist.zip 101505017 SHA256 2b737be42678900470ae9e48c975ac5b2296d9ae23c007bf118350dbe7c0552b SHA512 bc70e379a9f6f962440d05d4a706959461690e28a943833e17d6e2b7e3cd7dd2344f329f72d833ec5104334a71764fde195e50b09a582ae7c1b89bd62822943b WHIRLPOOL d236eb387373f4b1cba32084a8b282f2bc75e6a0a714f18229cf5064230ad912bd879df2e7ebcc30da18538958ded4a1b8e59c27c0716aa6b677690b10a0356e
diff --git a/dev-util/bazel/bazel-0.4.5.ebuild b/dev-util/bazel/bazel-0.4.5.ebuild
new file mode 100644
index 00000000000..e25a3d27164
--- /dev/null
+++ b/dev-util/bazel/bazel-0.4.5.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit bash-completion-r1 java-pkg-2
+
+DESCRIPTION="Fast and correct automated build system"
+HOMEPAGE="http://bazel.io/"
+SRC_URI="https://github.com/bazelbuild/bazel/releases/download/${PV}/${P}-dist.zip"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples tools zsh-completion"
+# strip corrupts the bazel binary
+RESTRICT="strip"
+RDEPEND="virtual/jdk:1.8"
+DEPEND="${RDEPEND}
+ app-arch/unzip
+ app-arch/zip"
+
+S="${WORKDIR}"
+
+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_compile() {
+ VERBOSE=yes ./compile.sh || die
+ # Use standalone strategy to deactivate the bazel sandbox, since it
+ # conflicts with FEATURES=sandbox.
+ echo "build --verbose_failures --spawn_strategy=standalone --genrule_strategy=standalone" \
+ > "${T}/bazelrc" || die
+ output/bazel --bazelrc="${T}/bazelrc" build scripts:bazel-complete.bash || die
+}
+
+src_test() {
+ output/bazel test \
+ --verbose_failures \
+ --spawn_strategy=standalone \
+ --genrule_strategy=standalone \
+ --verbose_test_summary \
+ examples/cpp:hello-success_test || die
+}
+
+src_install() {
+ output/bazel shutdown
+ dobin output/bazel
+ newbashcomp bazel-bin/scripts/bazel-complete.bash ${PN}
+ if use zsh-completion ; then
+ insinto /usr/share/zsh/site-functions
+ doins scripts/zsh_completion/_bazel
+ fi
+ if use examples; then
+ docinto examples
+ doins -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
+ doins -r tools/*
+ docompress -x /usr/share/doc/${PF}/tools
+ fi
+}
next reply other threads:[~2017-04-23 0:19 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-23 0:19 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-04-16 17:56 Zac Medico
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-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=1492906749.d9ec6cce5a78c1c2c75b17d483c11fa7c4046a26.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