From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3843139360 for ; Thu, 5 Aug 2021 02:58:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5C34E0985; Thu, 5 Aug 2021 02:58:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BC5BBE097D for ; Thu, 5 Aug 2021 02:58:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50195342C7C for ; Thu, 5 Aug 2021 02:58:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D45C184F for ; Thu, 5 Aug 2021 02:58:02 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1628132214.6d9dc5f421ef28ce50750fb8ac4336750702bb8b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/fuzz/fuzz-0.6-r2.ebuild X-VCS-Directories: dev-util/fuzz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6d9dc5f421ef28ce50750fb8ac4336750702bb8b X-VCS-Branch: master Date: Thu, 5 Aug 2021 02:58:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 81a5b322-367a-4997-9f76-c4916cff0383 X-Archives-Hash: 375a5f15ca2b8fe632fcc3e7f47e41ab commit: 6d9dc5f421ef28ce50750fb8ac4336750702bb8b Author: Andrew Savchenko gentoo org> AuthorDate: Thu Aug 5 02:56:24 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 5 02:56:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9dc5f4 dev-util/fuzz: fix build with glibc-2.32, fix applying patchset Closes: https://bugs.gentoo.org/738942 Acked-by: Robin Johnson gentoo.org> Signed-off-by: Andrew Savchenko gentoo.org> Signed-off-by: Sam James gentoo.org> dev-util/fuzz/fuzz-0.6-r2.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-util/fuzz/fuzz-0.6-r2.ebuild b/dev-util/fuzz/fuzz-0.6-r2.ebuild new file mode 100644 index 00000000000..92ef90211b3 --- /dev/null +++ b/dev-util/fuzz/fuzz-0.6-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Stress-tests programs by giving them random input" +HOMEPAGE="http://fuzz.sourceforge.net/" +DEB_P="${PN}_${PV}" +DEB_PR="7.3" +SRC_URI=" + mirror://sourceforge/${PN}/${P}.tar.gz + mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/readline:0=" +RDEPEND="${DEPEND}" + +PATCHES=( "${WORKDIR}"/${DEB_P}-${DEB_PR}.diff ) + +src_prepare() { + default + tc-export CC +} + +src_install() { + emake DESTDIR="${D}" install + dodoc NEWS README ChangeLog AUTHORS +}