Received: by mail.netbsd.org (Postfix, from userid 605) id 602A584EB7; Thu, 7 Oct 2021 11:46:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 99C3F84EA0 for ; Thu, 7 Oct 2021 11:46:12 +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 a54MrBMwhz74 for ; Thu, 7 Oct 2021 11:46:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F28D784D61 for ; Thu, 7 Oct 2021 11:46:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EA251FA97; Thu, 7 Oct 2021 11:46:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1633607171228670" MIME-Version: 1.0 Date: Thu, 7 Oct 2021 11:46:11 +0000 From: "pin" Subject: CVS commit: pkgsrc/www/longboard To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20211007114611.EA251FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1633607171228670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Thu Oct 7 11:46:11 UTC 2021 Modified Files: pkgsrc/www/longboard: Makefile Log Message: www/longboard: doesn't build on 32 bit systems To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/longboard/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1633607171228670 Content-Disposition: inline Content-Length: 765 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/longboard/Makefile diff -u pkgsrc/www/longboard/Makefile:1.3 pkgsrc/www/longboard/Makefile:1.4 --- pkgsrc/www/longboard/Makefile:1.3 Mon Aug 2 15:42:09 2021 +++ pkgsrc/www/longboard/Makefile Thu Oct 7 11:46:11 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2021/08/02 15:42:09 pin Exp $ +# $NetBSD: Makefile,v 1.4 2021/10/07 11:46:11 pin Exp $ DISTNAME= longboard-0.0.7 CATEGORIES= www @@ -10,6 +10,10 @@ HOMEPAGE= https://github.com/jbr/longboa COMMENT= Longboard: The easy way to surf LICENSE= apache-2.0 OR mit +# sys-info crate doesn't currently build on 32bit cpus +# see, https://github.com/FillZpp/sys-info-rs/issues/80 +ONLY_FOR_PLATFORM= *-*-x86_64mkd + .include "cargo-depends.mk" INSTALLATION_DIRS= bin --_----------=_1633607171228670--