diff options
Diffstat (limited to 'dev-util/bazel/bazel-0.3.2.ebuild')
-rw-r--r-- | dev-util/bazel/bazel-0.3.2.ebuild | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-util/bazel/bazel-0.3.2.ebuild b/dev-util/bazel/bazel-0.3.2.ebuild deleted file mode 100644 index 60d5fc5ed595..000000000000 --- a/dev-util/bazel/bazel-0.3.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 java-pkg-2 - -DESCRIPTION="Bazel build system" -HOMEPAGE="https://bazel.io/" -SRC_URI="https://github.com/bazelbuild/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" -# strip corrupts the bazel binary -RESTRICT="strip" -DEPEND="virtual/jdk:1.8" -RDEPEND="${DEPEND}" - -src_compile() { - ./compile.sh || die - # Use standalone strategy to deactivate the bazel sandbox, since it - # conflicts with FEATURES=sandbox. - echo "build --spawn_strategy=standalone --genrule_strategy=standalone" \ - > "${T}/bazelrc" || die - output/bazel --bazelrc="${T}/bazelrc" build //scripts:bazel-complete.bash || die -} - -src_install() { - dobin output/bazel - newbashcomp bazel-bin/scripts/bazel-complete.bash ${PN} -} |