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