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 C972E1392E8 for ; Sat, 24 Jul 2021 23:02:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C459EE0C27; Sat, 24 Jul 2021 23:02:57 +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 A5452E0C27 for ; Sat, 24 Jul 2021 23:02:57 +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 BE5D1342D59 for ; Sat, 24 Jul 2021 23:02:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA81F851 for ; Sat, 24 Jul 2021 23:02:52 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1627167754.c26f2a2ef5de53b65d8567cce755828d3cbbca7b.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/zzuf/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/zzuf/zzuf-0.15-r2.ebuild X-VCS-Directories: app-forensics/zzuf/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: c26f2a2ef5de53b65d8567cce755828d3cbbca7b X-VCS-Branch: master Date: Sat, 24 Jul 2021 23:02:52 +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: 416d1c4c-2a63-46c3-9647-1135a8c6e453 X-Archives-Hash: 4a7955450dd4bb8bdd3d3ad033c50132 commit: c26f2a2ef5de53b65d8567cce755828d3cbbca7b Author: Marek Szuba gentoo org> AuthorDate: Sat Jul 24 22:25:41 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sat Jul 24 23:02:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26f2a2e app-forensics/zzuf: update EAPI 7 -> 8, add multilib support Also drop USE=static-libs, installing static versions of libraries whose primary purpose is to be preloaded is rather pointless. Closes: https://bugs.gentoo.org/546796 Signed-off-by: Marek Szuba gentoo.org> app-forensics/zzuf/zzuf-0.15-r2.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-forensics/zzuf/zzuf-0.15-r2.ebuild b/app-forensics/zzuf/zzuf-0.15-r2.ebuild new file mode 100644 index 00000000000..8e8009ec5c5 --- /dev/null +++ b/app-forensics/zzuf/zzuf-0.15-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib-minimal + +DESCRIPTION="Transparent application input fuzzer" +HOMEPAGE="http://caca.zoy.org/wiki/zzuf" +SRC_URI="https://github.com/samhocevar/zzuf/releases/download/v${PV}/${P}.tar.bz2" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" + +# Uses dlopen hack to hijack many libc functions. +# Fails 2 tests with sandbox enabled: check-zzuf-A-autoinc check-utils +RESTRICT="test" + +DOCS=( AUTHORS COPYING TODO ) + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf +} + +multilib_src_install_all() { + default + + find "${ED}" -name '*.la' -delete || die +}