summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2017-03-19 14:51:22 -0700
committerZac Medico <zmedico@gentoo.org>2017-03-19 14:53:13 -0700
commit82f6dd994b64fc190768f26b4fee91b84e9b0ed9 (patch)
tree4482cc15c09a6c85a3352f348fb46b1fe4193d28 /dev-util/bcc/bcc-0.1.8-r2.ebuild
parentdev-util/bcc: version bump to 0.3.0 (diff)
downloadgentoo-82f6dd994b64fc190768f26b4fee91b84e9b0ed9.tar.gz
gentoo-82f6dd994b64fc190768f26b4fee91b84e9b0ed9.tar.bz2
gentoo-82f6dd994b64fc190768f26b4fee91b84e9b0ed9.zip
dev-util/bcc: remove old version 0.1.8-r2
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-util/bcc/bcc-0.1.8-r2.ebuild')
-rw-r--r--dev-util/bcc/bcc-0.1.8-r2.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-util/bcc/bcc-0.1.8-r2.ebuild b/dev-util/bcc/bcc-0.1.8-r2.ebuild
deleted file mode 100644
index b2a4e834cb1f..000000000000
--- a/dev-util/bcc/bcc-0.1.8-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit cmake-utils linux-info python-single-r1 python-utils-r1
-
-DESCRIPTION="Tools for BPF-based Linux IO analysis, networking, monitoring, and more"
-HOMEPAGE="https://iovisor.github.io/bcc/"
-EGIT_COMMIT="v${PV}"
-SRC_URI="https://github.com/iovisor/bcc/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-RESTRICT="test"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND=">=sys-devel/llvm-3.7:=[llvm_targets_BPF(+)]
- sys-devel/clang
- ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-S=${WORKDIR}/${PN}-${EGIT_COMMIT#v}
-
-pkg_pretend() {
- local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF
- ~BPF_JIT ~BPF_EVENTS"
-
- check_extra_config
-}
-
-pkg_setup() {
- python-single-r1_pkg_setup
-}
-
-src_prepare() {
- #582770 don't use static libstdc++
- sed -i -e '21,33d' src/cc/CMakeLists.txt || die
- default
-}
-
-src_configure() {
- local mycmakeargs=(
- -DREVISION=${PV%%_*}
- )
-
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- python_fix_shebang "${ED}"
-}