Received: by mail.netbsd.org (Postfix, from userid 605) id D27F584DCF; Fri, 14 Sep 2018 11:04:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DFE9584DA2 for ; Fri, 14 Sep 2018 11:04:21 +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 xzzhs4Et5n38 for ; Fri, 14 Sep 2018 11:04:20 +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 96B5E84D5F for ; Fri, 14 Sep 2018 11:04:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 90322FBF8; Fri, 14 Sep 2018 11:04:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1536923060172540" MIME-Version: 1.0 Date: Fri, 14 Sep 2018 11:04:20 +0000 From: "Gavan Fantom" Subject: CVS commit: pkgsrc/databases/mongodb To: pkgsrc-changes@NetBSD.org Reply-To: gavan@netbsd.org X-Mailer: log_accum Message-Id: <20180914110420.90322FBF8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1536923060172540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gavan Date: Fri Sep 14 11:04:20 UTC 2018 Modified Files: pkgsrc/databases/mongodb: Makefile Log Message: mongodb: Mark as unavailable on i386 platforms. MongoDB since 3.4 has explicitly not supported 32-bit x86 platforms. As the current package fails to build, let's acknowledge that up front. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/databases/mongodb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1536923060172540 Content-Disposition: inline Content-Length: 804 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/mongodb/Makefile diff -u pkgsrc/databases/mongodb/Makefile:1.29 pkgsrc/databases/mongodb/Makefile:1.30 --- pkgsrc/databases/mongodb/Makefile:1.29 Thu Aug 16 18:54:38 2018 +++ pkgsrc/databases/mongodb/Makefile Fri Sep 14 11:04:20 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2018/08/16 18:54:38 adam Exp $ +# $NetBSD: Makefile,v 1.30 2018/09/14 11:04:20 gavan Exp $ DISTNAME= mongodb-src-r3.4.4 PKGNAME= ${DISTNAME:S/src-r//:S/-rc/rc/} @@ -11,6 +11,9 @@ HOMEPAGE= http://mongodb.org/ COMMENT= NoSQL distributed document-oriented database LICENSE= gnu-agpl-v3 # Client and tools licensed under apache-2.0 +# MongoDB 3.4 onwards explicitly does not support 32-bit x86 platforms +NOT_FOR_PLATFORM+= *-*-i386 + EXTRACT_USING= bsdtar NO_CONFIGURE= yes --_----------=_1536923060172540--