app-misc/bgrep: drop 0.2_p20210221

Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk 2025-05-15 08:39:42 +02:00
parent fd54e568fa
commit 31b1607367
No known key found for this signature in database
GPG Key ID: 351D91B6D7DF9E50
2 changed files with 0 additions and 46 deletions

View File

@ -1,2 +1 @@
DIST bgrep-0.2_p20210221.tar.gz 4854 BLAKE2B 85c9171572e440f1e5def3a902a4adb1a3339706847013c6ff139745a819d9eab48a9449bf89b631cfcfe0081365240eefcae46a68064f710178db6d2db50037 SHA512 a9488ee9fd68a1b0e9924cbdf1e36fb3517cdceee4b57a27ef148ccd2c3f51942f8a57b41d47a2cb5b65b376b0b87c92ca4ee5d7053714a725c57ffbabbf12b6
DIST bgrep-0.2_p20250205.tar.gz 5584 BLAKE2B 150e17de8da4906691f96c55a7f0198d9b85812a2e8ca3a4e20abb0d395472fea78186b594721cc3a652b973a0cec637745a7ed8d8dff43722a657bc4fb154cf SHA512 4875121988e9fd55f456fa3a043f2702cdaa5a39bba39e5384c049f9b26b27deae597240ea5ac9dd98860baeeeb73cd62814f8ec73d7a20e1e645498be3080f0

View File

@ -1,45 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
COMMIT="58c0b83f7ef13cd8d3d7352fadef88a006a514cd"
inherit toolchain-funcs
DESCRIPTION="Grep-like tool to search for binary strings"
HOMEPAGE="https://github.com/tmbinc/bgrep/"
SRC_URI="https://github.com/tmbinc/bgrep/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="test? ( dev-lang/perl )"
src_prepare() {
default
sed -i -e "s|/tmp/|${T}/|g" \
test/bgrep-test.sh || die
}
src_compile() {
tc-export CC
emake
}
src_test() {
cd test || die
./bgrep-test.sh || die
}
src_install() {
dobin bgrep
dodoc README
}