Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ply/
Date: Wed, 20 May 2020 22:26:44
Message-Id: 1590013594.5cd835f3c148a053fc1b402b025968af599ab376.zmedico@gentoo
1 commit: 5cd835f3c148a053fc1b402b025968af599ab376
2 Author: Jakov Petrina <jakov.petrina <AT> sartura <DOT> hr>
3 AuthorDate: Mon May 18 23:21:47 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed May 20 22:26:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cd835f3
7
8 dev-util/ply: remove old ebuild
9
10 Closes: https://github.com/gentoo/gentoo/pull/15874
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Jakov Petrina <jakov.petrina <AT> sartura.hr>
13 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
14 Signed-off-by: Luka Perkov <luka.perkov <AT> sartura.hr>
15 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
16
17 dev-util/ply/Manifest | 1 -
18 dev-util/ply/ply-0_pre20160313.ebuild | 58 -----------------------------------
19 2 files changed, 59 deletions(-)
20
21 diff --git a/dev-util/ply/Manifest b/dev-util/ply/Manifest
22 index 6438cf1567c..db6ffb998c1 100644
23 --- a/dev-util/ply/Manifest
24 +++ b/dev-util/ply/Manifest
25 @@ -1,2 +1 @@
26 -DIST ply-0_pre20160313.tar.gz 38530 BLAKE2B 3c709e98c32cfd5dce389cf8829e135e0ecdc7907c83dcd2eed88c9c4c5f5a81093cc9ca7045b0cdb18566f0a8b49ddb4d3ba7320c7eaf56a350e45345e8d7bf SHA512 2de2ca2751574fe23b48188b0e8d1b4f1afe46003cbdefa69aeadaed0442675dad42b6cbfd161ebfbe006fbb21d447be4fca0ea7350b1409207473511f685d47
27 DIST ply-2.1.1.tar.gz 71578 BLAKE2B b63d0bd355985035b8d1c934c13982e21eeda0d710f40b8131562e9ef6a21a3eaf04960b871f5ab83d718ab1726450996988a2aef1a6fbd2e8f1a3c55db92beb SHA512 fdc66d752989a239e01d2746e6c56610c2c945fbeeff8f2a79be1db487a6cbba365d1bd1b553d25c43a3fdc3634ab96bf4a37ab4f694c6eb6eba82c35b37231e
28
29 diff --git a/dev-util/ply/ply-0_pre20160313.ebuild b/dev-util/ply/ply-0_pre20160313.ebuild
30 deleted file mode 100644
31 index 46367c55cfc..00000000000
32 --- a/dev-util/ply/ply-0_pre20160313.ebuild
33 +++ /dev/null
34 @@ -1,58 +0,0 @@
35 -# Copyright 1999-2016 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -inherit autotools linux-info
41 -
42 -DESCRIPTION="Dynamic instrumentation of the Linux kernel with BPF and kprobes"
43 -HOMEPAGE="https://github.com/iovisor/ply"
44 -EGIT_COMMIT="cfc56c789ad1eff1080ecb0dad18d009b91ae8ea"
45 -SRC_URI="https://github.com/iovisor/ply/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE=""
51 -
52 -S=${WORKDIR}/${PN}-${EGIT_COMMIT}
53 -
54 -pkg_pretend() {
55 - local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF
56 - ~BPF_JIT ~HAVE_BPF_JIT ~BPF_EVENTS"
57 -
58 - check_extra_config
59 -}
60 -
61 -src_prepare() {
62 - eapply_user
63 - eautoreconf
64 - default
65 -}
66 -
67 -src_configure() {
68 - local econf_args=() kerneldir_orig
69 - if [[ -d ${KERNEL_DIR} ]]; then
70 - # Using KBUILD_OUTPUT can fail, depending on the source tree
71 - # state (it might demand that we make mrproper). Therefore,
72 - # create a symlink copy of the source tree so that we are free
73 - # to clean things up as needed.
74 - kerneldir_orig=${KERNEL_DIR}
75 - cp -sR "$(realpath "${kerneldir_orig}")" "${T}/kerneldir" || die
76 - export KERNEL_DIR="${T}/kerneldir"
77 - pushd "${KERNEL_DIR}" || die
78 - # avoid sandbox violation for scripts/kconfig/.conf.cmd
79 - find . -name '\.*' -delete
80 - cp "${kerneldir_orig}/.config" ./.config || die
81 - set_arch_to_kernel
82 - make mrproper oldconfig prepare || die
83 - popd || die
84 - econf_args+=(--with-kerneldir="${KERNEL_DIR}")
85 - fi
86 - econf "${econf_args[@]}"
87 -}
88 -
89 -src_install() {
90 - default
91 - rm -f "${ED}/usr/share/doc/${P}/COPYING"
92 -}