Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/bgrep/
Date: Tue, 23 Apr 2019 08:51:47
Message-Id: 1556009473.ba012418757f7de93f4e0d3f8c1bd63ea2827ac6.soap@gentoo
1 commit: ba012418757f7de93f4e0d3f8c1bd63ea2827ac6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 22 11:36:01 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 23 08:51:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba012418
7
8 app-misc/bgrep: drop old (EAPI4)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 app-misc/bgrep/bgrep-0_p20110121.ebuild | 45 ---------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/app-misc/bgrep/bgrep-0_p20110121.ebuild b/app-misc/bgrep/bgrep-0_p20110121.ebuild
17 deleted file mode 100644
18 index c4022734544..00000000000
19 --- a/app-misc/bgrep/bgrep-0_p20110121.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2011 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -GITHUB_USER="tmbinc"
28 -GITHUB_HASH="49b098be9548d174023ad05c10f6af9d02b8e18e"
29 -MY_P="${GITHUB_USER}-${PN}-${GITHUB_HASH:0:7}"
30 -
31 -inherit toolchain-funcs
32 -
33 -DESCRIPTION="grep-like tool to search for binary strings"
34 -HOMEPAGE="https://github.com/tmbinc/bgrep/"
35 -SRC_URI="https://github.com/${GITHUB_USER}/${PN}/tarball/${GITHUB_HASH} -> ${MY_P}.tar.gz"
36 -
37 -S="${WORKDIR}/${MY_P}"
38 -LICENSE="MIT"
39 -SLOT="0"
40 -
41 -KEYWORDS="~amd64"
42 -
43 -IUSE="test"
44 -
45 -RDEPEND=""
46 -DEPEND="test? ( dev-lang/perl )"
47 -
48 -src_prepare() {
49 - sed -i -e "s|/tmp/|${T}/|g" \
50 - test/bgrep-test.sh || die
51 -}
52 -
53 -src_compile() {
54 - tc-export CC
55 - emake || die
56 -}
57 -
58 -src_test() {
59 - cd test
60 - ./bgrep-test.sh || die
61 -}
62 -
63 -src_install() {
64 - dobin bgrep
65 - dodoc README
66 -}