Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/radare2/
Date: Fri, 29 May 2020 22:13:56
Message-Id: 1590790421.ff1762deda69790c2d4d0b21873bee9c659831b3.slyfox@gentoo
1 commit: ff1762deda69790c2d4d0b21873bee9c659831b3
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 29 22:08:04 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri May 29 22:13:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff1762de
7
8 dev-util/radare2: drop old
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-util/radare2/radare2-4.4.0.ebuild | 56 -----------------------------------
14 1 file changed, 56 deletions(-)
15
16 diff --git a/dev-util/radare2/radare2-4.4.0.ebuild b/dev-util/radare2/radare2-4.4.0.ebuild
17 deleted file mode 100644
18 index c3c2387a8dc..00000000000
19 --- a/dev-util/radare2/radare2-4.4.0.ebuild
20 +++ /dev/null
21 @@ -1,56 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit bash-completion-r1 eutils
28 -
29 -DESCRIPTION="unix-like reverse engineering framework and commandline tools"
30 -HOMEPAGE="http://www.radare.org"
31 -
32 -if [[ ${PV} == *9999 ]]; then
33 - inherit git-r3
34 - EGIT_REPO_URI="https://github.com/radareorg/radare2"
35 -else
36 - SRC_URI="https://github.com/radareorg/radare2/archive/${PV}.tar.gz -> ${P}.tar.gz"
37 - KEYWORDS="~amd64 ~arm ~arm64 ~x86"
38 -fi
39 -
40 -LICENSE="GPL-2"
41 -SLOT="0"
42 -IUSE="ssl libressl"
43 -
44 -RDEPEND="
45 - dev-libs/capstone:0=
46 - ssl? (
47 - !libressl? ( dev-libs/openssl:0= )
48 - libressl? ( dev-libs/libressl:0= )
49 - )
50 -"
51 -DEPEND="${RDEPEND}"
52 -BDEPEND="virtual/pkgconfig"
53 -
54 -src_configure() {
55 - econf \
56 - --without-libuv \
57 - --with-syscapstone \
58 - $(use_with ssl openssl)
59 -}
60 -
61 -src_install() {
62 - default
63 -
64 - insinto /usr/share/zsh/site-functions
65 - doins doc/zsh/_*
66 -
67 - newbashcomp doc/bash_autocompletion.sh "${PN}"
68 - bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2
69 -
70 - # a workaround for unstable $(INSTALL) call, bug #574866
71 - local d
72 - for d in doc/*; do
73 - if [[ -d $d ]]; then
74 - rm -rfv "$d" || die "failed to delete '$d'"
75 - fi
76 - done
77 -}