Received: by mail.netbsd.org (Postfix, from userid 605) id ED47284CFD; Sat, 14 Aug 2021 14:33:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 31D9984CE2 for ; Sat, 14 Aug 2021 14:33:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id HVRUrBe0BcZN for ; Sat, 14 Aug 2021 14:33:09 +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 852AD84CD9 for ; Sat, 14 Aug 2021 14:33:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 78E32FA97; Sat, 14 Aug 2021 14:33:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162895158950110" MIME-Version: 1.0 Date: Sat, 14 Aug 2021 14:33:09 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/net/unifi To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20210814143309.78E32FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162895158950110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sat Aug 14 14:33:09 UTC 2021 Modified Files: pkgsrc/net/unifi: Makefile Log Message: unifi: Adjust MACHINE_ARCH armv7->earmv7 per pkglint Those using unifi from pkgsrc on GNU/Linux earmv7, if they exist, are advised to test. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/net/unifi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162895158950110 Content-Disposition: inline Content-Length: 797 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/unifi/Makefile diff -u pkgsrc/net/unifi/Makefile:1.27 pkgsrc/net/unifi/Makefile:1.28 --- pkgsrc/net/unifi/Makefile:1.27 Sat Aug 14 14:30:45 2021 +++ pkgsrc/net/unifi/Makefile Sat Aug 14 14:33:09 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2021/08/14 14:30:45 gdt Exp $ +# $NetBSD: Makefile,v 1.28 2021/08/14 14:33:09 gdt Exp $ # Update to 6.2 (wip) is on hold pending reports that the greater # Unifi world thinks it is stable enough. -- gdt, 2021-06-01 @@ -91,7 +91,7 @@ post-extract: . if (${MACHINE_ARCH} != "aarch64") rm -rf ${WRKDIR}/UniFi/lib/native/Linux/aarch64 . endif -. if (${MACHINE_ARCH} != "armv7") +. if (${MACHINE_ARCH} != "earmv7") rm -rf ${WRKDIR}/UniFi/lib/native/Linux/armv7 . endif . if (${MACHINE_ARCH} != "x86_64") --_----------=_162895158950110--