Gentoo Archives: gentoo-commits

From: Guilherme Amadio <amadio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/uftrace/
Date: Mon, 31 May 2021 15:24:39
Message-Id: 1622474658.a643be8f567d69104121ae82c6593f051f83db86.amadio@gentoo
1 commit: a643be8f567d69104121ae82c6593f051f83db86
2 Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 14:54:12 2021 +0000
4 Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 15:24:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a643be8f
7
8 dev-util/uftrace: drop old
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
12
13 dev-util/uftrace/Manifest | 1 -
14 dev-util/uftrace/uftrace-0.9.4-r100.ebuild | 61 ------------------------------
15 dev-util/uftrace/uftrace-0.9.4.ebuild | 43 ---------------------
16 3 files changed, 105 deletions(-)
17
18 diff --git a/dev-util/uftrace/Manifest b/dev-util/uftrace/Manifest
19 index a9e6c5f4a0b..8348aba2e20 100644
20 --- a/dev-util/uftrace/Manifest
21 +++ b/dev-util/uftrace/Manifest
22 @@ -1,2 +1 @@
23 DIST uftrace-0.10.tar.gz 1111530 BLAKE2B 29388523e1009276ba4609d85e5979e823d028ff647239aa02ec2cac5ae21c7812c7699d47c09c0b9289a0debb39a2f502615547c8e658a821d5078e3b12c6fe SHA512 788234e4156974a70f06d02527e56e5fac821e8b66363dc5fc55d68797c374043c0b66b18b4ab1488b9647e08969e8dc94a64d6bb1a38ccad4cf98eaecc6e919
24 -DIST uftrace-0.9.4.tar.gz 1068091 BLAKE2B cbf9ead0e2c0e8d59be379e65617cfa310fd4134cfbbc8091c489913f108e8a7a0b81e33d46032f3717a5bb8127cbeeeb246e3be0c37da03981dac4bacc07119 SHA512 f73ad4461051b9c61668161e077897d118ac556d234ff204e32bf14ecdc2c0df148da30ea5d5054641e79ea20b29261d6f637908f5047f5669207ef244865358
25
26 diff --git a/dev-util/uftrace/uftrace-0.9.4-r100.ebuild b/dev-util/uftrace/uftrace-0.9.4-r100.ebuild
27 deleted file mode 100644
28 index ce77c3c09d5..00000000000
29 --- a/dev-util/uftrace/uftrace-0.9.4-r100.ebuild
30 +++ /dev/null
31 @@ -1,61 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -LUA_COMPAT=( luajit )
38 -
39 -inherit bash-completion-r1 lua-single
40 -
41 -DESCRIPTION="Function (graph) tracer for user-space"
42 -HOMEPAGE="https://github.com/namhyung/uftrace"
43 -SRC_URI="https://github.com/namhyung/uftrace/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm64"
48 -IUSE="bash-completion capstone lua"
49 -
50 -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
51 -
52 -RESTRICT="test"
53 -
54 -RDEPEND="
55 - sys-libs/ncurses:=
56 - virtual/libelf:=
57 - capstone? ( dev-libs/capstone:0= )
58 - lua? ( ${LUA_DEPS} )
59 -"
60 -DEPEND="${RDEPEND}"
61 -
62 -src_prepare() {
63 - default
64 - sed -i -e "s/ARCH/MYARCH/g" -e "/ldconfig/d" -e "/bash.completion/d" Makefile || die
65 -}
66 -
67 -src_configure() {
68 - local myconf=(
69 - $(use_with capstone)
70 - --without-libpython
71 - )
72 - if use lua && use lua_single_target_luajit; then
73 - myconf+=(
74 - --with-libluajit
75 - )
76 - else
77 - myconf+=(
78 - --without-libluajit
79 - )
80 - fi
81 - econf "${myconf[@]}"
82 -}
83 -
84 -src_compile() {
85 - emake V=1
86 -}
87 -
88 -src_install() {
89 - default
90 - dodoc doc/*.{md,gif,png}
91 - use bash-completion && newbashcomp misc/bash-completion.sh uftrace
92 -}
93
94 diff --git a/dev-util/uftrace/uftrace-0.9.4.ebuild b/dev-util/uftrace/uftrace-0.9.4.ebuild
95 deleted file mode 100644
96 index 51506dbff69..00000000000
97 --- a/dev-util/uftrace/uftrace-0.9.4.ebuild
98 +++ /dev/null
99 @@ -1,43 +0,0 @@
100 -# Copyright 1999-2020 Gentoo Authors
101 -# Distributed under the terms of the GNU General Public License v2
102 -
103 -EAPI=7
104 -
105 -inherit bash-completion-r1
106 -
107 -DESCRIPTION="Function (graph) tracer for user-space"
108 -HOMEPAGE="https://github.com/namhyung/uftrace"
109 -SRC_URI="https://github.com/namhyung/uftrace/archive/v${PV}.tar.gz -> ${P}.tar.gz"
110 -
111 -LICENSE="GPL-2"
112 -SLOT="0"
113 -KEYWORDS="~amd64"
114 -IUSE="bash-completion capstone luajit"
115 -
116 -RESTRICT="test"
117 -
118 -RDEPEND="
119 - sys-libs/ncurses:=
120 - virtual/libelf:=
121 - capstone? ( dev-libs/capstone:0= )
122 - luajit? ( dev-lang/luajit )
123 -"
124 -DEPEND="${RDEPEND}"
125 -
126 -src_prepare() {
127 - default
128 - sed -i -e "s/ARCH/MYARCH/g" -e "/ldconfig/d" -e "/bash.completion/d" Makefile || die
129 -}
130 -
131 -src_configure() {
132 - econf \
133 - $(use_with capstone) \
134 - $(use_with luajit libluajit) \
135 - --without-libpython
136 -}
137 -
138 -src_install() {
139 - default
140 - dodoc doc/*.{md,gif,png}
141 - use bash-completion && newbashcomp misc/bash-completion.sh uftrace
142 -}