From 4ce66b046600c6eed7d678fb101c2dbaa80390ef Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 9 Jul 2017 12:54:40 -0700 Subject: dev-util/bazel: fix tools/examples install location for bug 624302, revbump to 0.4.5-r1 Package-Manager: Portage-2.3.6, Repoman-2.3.2 --- dev-util/bazel/bazel-0.4.5-r1.ebuild | 70 ++++++++++++++++++++++++++++++++++++ dev-util/bazel/bazel-0.4.5.ebuild | 69 ----------------------------------- 2 files changed, 70 insertions(+), 69 deletions(-) create mode 100644 dev-util/bazel/bazel-0.4.5-r1.ebuild delete mode 100644 dev-util/bazel/bazel-0.4.5.ebuild (limited to 'dev-util/bazel') diff --git a/dev-util/bazel/bazel-0.4.5-r1.ebuild b/dev-util/bazel/bazel-0.4.5-r1.ebuild new file mode 100644 index 000000000000..d3b75d558a98 --- /dev/null +++ b/dev-util/bazel/bazel-0.4.5-r1.ebuild @@ -0,0 +1,70 @@ +# 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 + mv bazel-bin/scripts/bazel-complete.bash output/ || 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 output/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 + 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 + fi +} diff --git a/dev-util/bazel/bazel-0.4.5.ebuild b/dev-util/bazel/bazel-0.4.5.ebuild deleted file mode 100644 index e25a3d27164e..000000000000 --- a/dev-util/bazel/bazel-0.4.5.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# 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 -} -- cgit v1.2.3-65-gdbad