Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 925D71A921F for ; Sun, 17 Apr 2022 07:34:48 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EDCDA84FC1; Sun, 17 Apr 2022 07:34:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3174684EC0 for ; Sun, 17 Apr 2022 07:34:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id DBuHac4jr0FV for ; Sun, 17 Apr 2022 07:34:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AB2B784CE9 for ; Sun, 17 Apr 2022 07:34:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9F2B1FB19; Sun, 17 Apr 2022 07:34:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165018088678870" MIME-Version: 1.0 Date: Sun, 17 Apr 2022 07:34:46 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/afl++ To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220417073446.9F2B1FB19@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165018088678870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Apr 17 07:34:46 UTC 2022 Modified Files: pkgsrc/devel/afl++: Makefile PLIST Log Message: afl++: fix PLIST on aarch64 To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/afl++/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/afl++/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165018088678870 Content-Disposition: inline Content-Length: 1505 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/afl++/Makefile diff -u pkgsrc/devel/afl++/Makefile:1.2 pkgsrc/devel/afl++/Makefile:1.3 --- pkgsrc/devel/afl++/Makefile:1.2 Sat Mar 19 08:35:18 2022 +++ pkgsrc/devel/afl++/Makefile Sun Apr 17 07:34:46 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/03/19 08:35:18 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/04/17 07:34:46 nia Exp $ DISTNAME= AFLplusplus-2.62c PKGNAME= ${DISTNAME:C/AFLplusplus/afl++/} @@ -33,4 +33,11 @@ REPLACE_SH+= afl-plot REPLACE_BASH+= afl-cmin REPLACE_BASH+= afl-cmin.bash +.include "../../mk/bsd.prefs.mk" + +PLIST_VARS+= amd64 +.if ${MACHINE_ARCH} == "x86_64" +PLIST.amd64= yes +.endif + .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/afl++/PLIST diff -u pkgsrc/devel/afl++/PLIST:1.1 pkgsrc/devel/afl++/PLIST:1.2 --- pkgsrc/devel/afl++/PLIST:1.1 Fri Apr 17 17:51:09 2020 +++ pkgsrc/devel/afl++/PLIST Sun Apr 17 07:34:46 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2020/04/17 17:51:09 wiz Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/04/17 07:34:46 nia Exp $ bin/afl-analyze bin/afl-clang bin/afl-clang++ @@ -14,11 +14,11 @@ bin/afl-system-config bin/afl-tmin bin/afl-whatsup lib/afl/afl-as -lib/afl/argvfuzz32.so -lib/afl/argvfuzz64.so +${PLIST.amd64}lib/afl/argvfuzz32.so +${PLIST.amd64}lib/afl/argvfuzz64.so lib/afl/as -lib/afl/socketfuzz32.so -lib/afl/socketfuzz64.so +${PLIST.amd64}lib/afl/socketfuzz32.so +${PLIST.amd64}lib/afl/socketfuzz64.so man/man8/afl-analyze.8 man/man8/afl-as.8 man/man8/afl-cmin.8 --_----------=_165018088678870--