Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/sysdig-kmod/
Date: Mon, 04 May 2020 09:37:19
Message-Id: 1588585015.a7e3d47095dc0783d9475bf3ac7404f407936c8d.mgorny@gentoo
1 commit: a7e3d47095dc0783d9475bf3ac7404f407936c8d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 09:29:20 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 09:36:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e3d470
7
8 dev-util/sysdig-kmod: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/sysdig-kmod/Manifest | 1 -
13 dev-util/sysdig-kmod/sysdig-kmod-0.26.4.ebuild | 47 --------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-util/sysdig-kmod/Manifest b/dev-util/sysdig-kmod/Manifest
17 index a55a5d704af..e1493303a0b 100644
18 --- a/dev-util/sysdig-kmod/Manifest
19 +++ b/dev-util/sysdig-kmod/Manifest
20 @@ -1,2 +1 @@
21 -DIST sysdig-0.26.4.tar.gz 902181 BLAKE2B a7ac38be2f7a3d7e4f4fdec6a2fbf5305a8224ee27352da70f509139ebefd14616f84c7b8860f50d2546819a94deb1117034bceddd22128fcf25386b835274f2 SHA512 f56f5d0a522b861df4803bfdafcaf8db3fc9c0e751d06c321082757f6828a210cb86bab4550a3b35bf6412f930e44ab0f5cf709a30651c57dd7064a68e273a88
22 DIST sysdig-0.26.6.tar.gz 923918 BLAKE2B e022eba30977f5300c80a4806926d3e755b1395f05475c1fe925b86823670e397ad29e8bd18b1beaa893cb1bf83c329960c1bf9ff6faf0a5144343e88d52a4a0 SHA512 94784f0dfe46924b81d8804d950a9563cd18f4aa8b1cacd7e27e3974ecf7215223e03bdab001f408f64eb6c72f0da5082fd922d63079119427eb493c77e15795
23
24 diff --git a/dev-util/sysdig-kmod/sysdig-kmod-0.26.4.ebuild b/dev-util/sysdig-kmod/sysdig-kmod-0.26.4.ebuild
25 deleted file mode 100644
26 index ba7201399d5..00000000000
27 --- a/dev-util/sysdig-kmod/sysdig-kmod-0.26.4.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit cmake linux-mod
36 -
37 -MY_P=${P/-kmod}
38 -DESCRIPTION="Kernel module for dev-util/sysdig"
39 -HOMEPAGE="https://sysdig.com/"
40 -SRC_URI="https://github.com/draios/sysdig/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
41 -S=${WORKDIR}/${MY_P}
42 -
43 -LICENSE="|| ( MIT GPL-2 )"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -
47 -RDEPEND="!<=dev-util/sysdig-0.26.4[modules]"
48 -
49 -CONFIG_CHECK="HAVE_SYSCALL_TRACEPOINTS ~TRACEPOINTS"
50 -
51 -pkg_pretend() {
52 - linux-mod_pkg_setup
53 -}
54 -
55 -pkg_setup() {
56 - linux-mod_pkg_setup
57 -}
58 -
59 -src_prepare() {
60 - sed -i -e '/USE_BUNDLED_DEPS/,$d' CMakeLists.txt || die
61 - cmake_src_prepare
62 -}
63 -
64 -src_configure() {
65 - local mycmakeargs=(
66 - # we will use linux-mod for that
67 - -DBUILD_DRIVER=OFF
68 - )
69 -
70 - cmake_src_configure
71 -
72 - # setup linux-mod ugliness
73 - MODULE_NAMES="sysdig-probe(extra:${BUILD_DIR}/driver/src:)"
74 - BUILD_PARAMS='KERNELDIR="${KERNEL_DIR}"'
75 - BUILD_TARGETS="all"
76 -}