Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/honggfuzz/
Date: Fri, 29 May 2020 22:13:55
Message-Id: 1590790417.96b77af627b65bf352e0b463e5049e5149940adc.slyfox@gentoo
1 commit: 96b77af627b65bf352e0b463e5049e5149940adc
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 29 22:02:51 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri May 29 22:13:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96b77af6
7
8 app-forensics/honggfuzz: 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 app-forensics/honggfuzz/honggfuzz-2.2.ebuild | 44 ----------------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/app-forensics/honggfuzz/honggfuzz-2.2.ebuild b/app-forensics/honggfuzz/honggfuzz-2.2.ebuild
17 deleted file mode 100644
18 index 087d70b53f6..00000000000
19 --- a/app-forensics/honggfuzz/honggfuzz-2.2.ebuild
20 +++ /dev/null
21 @@ -1,44 +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 toolchain-funcs
28 -
29 -DESCRIPTION="A general purpose fuzzer with feedback support"
30 -HOMEPAGE="https://google.github.io/honggfuzz/"
31 -SRC_URI="https://github.com/google/honggfuzz/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="~amd64"
36 -IUSE=""
37 -
38 -RDEPEND="
39 - >=sys-libs/binutils-libs-2.29:=
40 - sys-libs/libunwind:=
41 - app-arch/xz-utils
42 -"
43 -
44 -DEPEND="${RDEPEND}"
45 -
46 -DOCS=(
47 - CHANGELOG
48 - COPYING
49 - CONTRIBUTING
50 - README.md
51 -)
52 -
53 -PATCHES=(
54 - "${FILESDIR}"/${PN}-2.0-no-werror.patch
55 -)
56 -
57 -src_compile() {
58 - CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" emake
59 -}
60 -
61 -src_install() {
62 - dobin ${PN}
63 -
64 - einstalldocs
65 -}