public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aisha Tammy" <gentoo@aisha.cc>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: dev-util/bazel/
Date: Fri,  9 Oct 2020 01:47:46 +0000 (UTC)	[thread overview]
Message-ID: <1602208046.b756bc0ddb4093e73e75085227db68a8a492720f.epsilon-0@gentoo> (raw)

commit:     b756bc0ddb4093e73e75085227db68a8a492720f
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Oct  9 01:47:26 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Oct  9 01:47:26 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=b756bc0d

dev-util/bazel: drop package

present in ::gentoo

Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 dev-util/bazel/bazel-0.13.0.ebuild | 104 -------------------------------------
 dev-util/bazel/metadata.xml        |  20 -------
 2 files changed, 124 deletions(-)

diff --git a/dev-util/bazel/bazel-0.13.0.ebuild b/dev-util/bazel/bazel-0.13.0.ebuild
deleted file mode 100644
index 797c062b0..000000000
--- a/dev-util/bazel/bazel-0.13.0.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2018 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
-}
-
-bazel-get-flags() {
-	local fs=""
-	for i in ${CFLAGS}; do
-		[[ -n "${fs}" ]] && fs+=" "
-		fs+="--copt=${i}"
-	done
-	for i in ${CXXFLAGS}; do
-		[[ -n "${fs}" ]] && fs+=" "
-		fs+="--cxxopt=${i}"
-	done
-	for i in ${CPPFLAGS}; do
-		[[ -n "${fs}" ]] && fs+=" "
-		fs+="--copt=${i}"
-		fs+="--cxxopt=${i}"
-	done
-	for i in ${LDFLAGS}; do
-		[[ -n "${fs}" ]] && fs+=" "
-		fs+="--linkopt=${i}"
-	done
-	echo "${fs}"
-}
-
-src_compile() {
-	# F: fopen_wr
-	# S: deny
-	# P: /proc/self/setgroups
-	# A: /proc/self/setgroups
-	# R: /proc/24939/setgroups
-	# C: /usr/lib/systemd/systemd
-	addpredict /proc
-	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
-	einfo "output/bazel --bazelrc=\"${T}/bazelrc\" build \\"
-	einfo "    $(bazel-get-flags) \\"
-	einfo "    scripts:bazel-complete.bash"
-	output/bazel --bazelrc="${T}/bazelrc" build $(bazel-get-flags) \
-		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}
-	bashcomp_alias ${PN} ibazel
-	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/metadata.xml b/dev-util/bazel/metadata.xml
deleted file mode 100644
index e7d5f3b34..000000000
--- a/dev-util/bazel/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>zmedico@gentoo.org</email>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">bazelbuild/bazel</remote-id>
-	</upstream>
-	<longdescription>
-		Bazel is Google's own build tool. Bazel has built-in support for
-		building both client and server software, including client
-		applications for both Android and iOS platforms. It also provides
-		an extensible framework that you can use to develop your own build
-		rules.
-	</longdescription>
-	<use>
-		<flag name="tools">Install extra bazel tools to build from sources</flag>
-	</use>
-</pkgmetadata>


             reply	other threads:[~2020-10-09  1:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-09  1:47 Aisha Tammy [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-05-02 23:20 [gentoo-commits] proj/sci:master commit in: dev-util/bazel/ Mark Wright

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=1602208046.b756bc0ddb4093e73e75085227db68a8a492720f.epsilon-0@gentoo \
    --to=gentoo@aisha.cc \
    --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