Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bazel/
Date: Sat, 15 Sep 2018 16:02:38
Message-Id: 1537027060.be573c729a0dcc2026ab41a2ff4c8ef7c6f41124.perfinion@gentoo
1 commit: be573c729a0dcc2026ab41a2ff4c8ef7c6f41124
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 15 11:09:39 2018 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 15 15:57:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be573c72
7
8 dev-util/bazel: bump 0.17.1
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-util/bazel/Manifest | 1 +
13 dev-util/bazel/bazel-0.17.1.ebuild | 123 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 124 insertions(+)
15
16 diff --git a/dev-util/bazel/Manifest b/dev-util/bazel/Manifest
17 index 3a560586453..bd8c88be06f 100644
18 --- a/dev-util/bazel/Manifest
19 +++ b/dev-util/bazel/Manifest
20 @@ -1,4 +1,5 @@
21 DIST bazel-0.14.1-dist.zip 89415405 BLAKE2B 7be5d4630d024d235a66f6bdf495c282b04a4034dde156c50d37a7e2eb3bf98df0caead7887f421b664fe92486e6baa5cd90e61b1e82b07b1691dc509ab93a68 SHA512 02c7125438f060d8e5e25b91ce3ca76fac6681b4f12033d807955a4ca5a5c22a3508a7229581b7349f35f343911f8408f43f8d78d54601277576dd32539e4681
22 DIST bazel-0.16.0-dist.zip 89720984 BLAKE2B be8ad9c94b13dd8d1d1de76ed67a3a695a2541327b8cb8a4d27b9279c065cb351d6b2d5785024d11a163bfd4697fb1375b350c8220387ab79db7e95537def5c3 SHA512 89cefed69df1cae7076673900546199427fab3508aad1f0347b9da38153b6b1566b19a4c205055f41ca431fd9444ec772c86bc32fbff0da0485a5e5f11728932
23 +DIST bazel-0.17.1-dist.zip 79229870 BLAKE2B 0f149ac881dc1bc02ab5b07590620d19921034d6d5fb88bf46b0a10e0eceac1ba0f33181e9912d342c01e551bf94e38a13e4252762e6b4e7800ec1527a970f76 SHA512 b8c2292baf67b0b8a85811145ac220084975a2bcd2f2a9f461e83589296c56166886f91a32cde343762247a9c3a04100b3f86a8f969d880f641f88183a804e6b
24 DIST google-desugar_jdk_libs-f5e6d80c6b4ec6b0a46603f72b015d45cf3c11cd.zip 1056996 BLAKE2B bf168c41a9958bcdc679a40d1e88911c6af0e47207362204326b712e0129b37348360a855f44af8b76acc46108ac89a707d0c0f793500c513a919070248939b9 SHA512 40cb9ffcaa3c57c69bcbec7b070fad5865e7317817049b7588dd42899054eb97cd17cb0019df99ad2324ed8e2efd8334cd83ace758a4c2d3f453503ccf54a91e
25 DIST zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz 53360827 BLAKE2B 2cf000a50950d839fec4a0ff871632a18a67e93ff31a430d8af92fb0bf40f11d0d45a4427ec546618620aa1c1fc1078a9e918c540315ef8e5fb3928c9b36019d SHA512 63c3989b97845d9a019be5f20e667d9c96550738502c148b0dbf6cd9c1553df077217cb6fa0a9517d555c53a7a6eadeb7403d94aebca01f67aee3d97517df4fd
26
27 diff --git a/dev-util/bazel/bazel-0.17.1.ebuild b/dev-util/bazel/bazel-0.17.1.ebuild
28 new file mode 100644
29 index 00000000000..79fea4a87e0
30 --- /dev/null
31 +++ b/dev-util/bazel/bazel-0.17.1.ebuild
32 @@ -0,0 +1,123 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit bash-completion-r1 java-pkg-2 multiprocessing
39 +
40 +DESCRIPTION="Fast and correct automated build system"
41 +HOMEPAGE="http://bazel.io/"
42 +
43 +SRC_URI="https://github.com/bazelbuild/bazel/releases/download/${PV}/${P}-dist.zip"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +IUSE="examples tools zsh-completion"
49 +# strip corrupts the bazel binary
50 +RESTRICT="strip"
51 +RDEPEND="virtual/jdk:1.8"
52 +DEPEND="${RDEPEND}
53 + app-arch/unzip
54 + app-arch/zip"
55 +
56 +S="${WORKDIR}"
57 +QA_FLAGS_IGNORED="usr/bin/bazel"
58 +
59 +bazel-get-flags() {
60 + local i fs=()
61 + for i in ${CFLAGS}; do
62 + fs+=( "--copt=${i}" "--host_copt=${i}" )
63 + done
64 + for i in ${CXXFLAGS}; do
65 + fs+=( "--cxxopt=${i}" "--host_cxxopt=${i}" )
66 + done
67 + for i in ${CPPFLAGS}; do
68 + fs+=( "--copt=${i}" "--host_copt=${i}" )
69 + fs+=( "--cxxopt=${i}" "--host_cxxopt=${i}" )
70 + done
71 + for i in ${LDFLAGS}; do
72 + fs+=( "--linkopt=${i}" "--host_linkopt=${i}" )
73 + done
74 + echo "${fs[*]}"
75 +}
76 +
77 +pkg_setup() {
78 + echo ${PATH} | grep -q ccache && \
79 + ewarn "${PN} usually fails to compile with ccache, you have been warned"
80 + java-pkg-2_pkg_setup
81 +}
82 +
83 +src_unpack() {
84 + # Only unpack the main distfile
85 + unpack ${P}-dist.zip
86 +}
87 +
88 +src_prepare() {
89 + default
90 +
91 + sed -i 's@//src:bazel@//src:bazel_nojdk@' scripts/BUILD || die
92 +
93 + # F: fopen_wr
94 + # S: deny
95 + # P: /proc/self/setgroups
96 + # A: /proc/self/setgroups
97 + # R: /proc/24939/setgroups
98 + # C: /usr/lib/systemd/systemd
99 + addpredict /proc
100 +
101 + # Use standalone strategy to deactivate the bazel sandbox, since it
102 + # conflicts with FEATURES=sandbox.
103 + cat > "${T}/bazelrc" <<-EOF
104 + build --verbose_failures
105 + build --spawn_strategy=standalone --genrule_strategy=standalone
106 +
107 + build --distdir=${S}/derived/distdir/
108 + build --jobs=$(makeopts_jobs) $(bazel-get-flags)
109 +
110 + test --verbose_failures --verbose_test_summary
111 + test --spawn_strategy=standalone --genrule_strategy=standalone
112 + EOF
113 +
114 + echo "import ${T}/bazelrc" >> "${S}/.bazelrc"
115 +}
116 +
117 +src_compile() {
118 + export EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs)"
119 + VERBOSE=yes ./compile.sh || die
120 + output/bazel --bazelrc="${T}/bazelrc" build //scripts:bazel-complete.bash || die
121 + output/bazel shutdown
122 +}
123 +
124 +src_test() {
125 + output/bazel test \
126 + --verbose_failures \
127 + --spawn_strategy=standalone \
128 + --genrule_strategy=standalone \
129 + --verbose_test_summary \
130 + examples/cpp:hello-success_test || die
131 + output/bazel shutdown
132 +}
133 +
134 +src_install() {
135 + dobin output/bazel
136 + newbashcomp bazel-bin/scripts/bazel-complete.bash ${PN}
137 + bashcomp_alias ${PN} ibazel
138 + if use zsh-completion ; then
139 + insinto /usr/share/zsh/site-functions
140 + doins scripts/zsh_completion/_bazel
141 + fi
142 +
143 + if use examples; then
144 + docinto examples
145 + dodoc -r examples/*
146 + docompress -x /usr/share/doc/${PF}/examples
147 + fi
148 + # could really build tools but I don't know which ones
149 + # are actually used
150 + if use tools; then
151 + docinto tools
152 + dodoc -r tools/*
153 + docompress -x /usr/share/doc/${PF}/tools
154 + fi
155 +}