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 420121382C5 for ; Fri, 9 Feb 2018 14:15:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 403ADE0AF1; Fri, 9 Feb 2018 14:15:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1DC5AE0AF1 for ; Fri, 9 Feb 2018 14:15:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AAEDD335C54 for ; Fri, 9 Feb 2018 14:15:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00D051DF for ; Fri, 9 Feb 2018 14:15:50 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1518185545.18602efd3de03bd491dcf492bd3cea8f3fa0992d.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mongo-c-driver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild X-VCS-Directories: dev-libs/mongo-c-driver/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 18602efd3de03bd491dcf492bd3cea8f3fa0992d X-VCS-Branch: master Date: Fri, 9 Feb 2018 14:15:50 +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-Archives-Salt: c0a86bd3-602f-4173-8309-dc95b1618e5f X-Archives-Hash: be224d18c649d18bf2baccddf2e3a791 commit: 18602efd3de03bd491dcf492bd3cea8f3fa0992d Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Feb 9 14:12:25 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Feb 9 14:12:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18602efd dev-libs/mongo-c-driver: Restrict tests for x86 Tests require a local mongodb instance. However, dev-db/mongodb upstream doesn't support x86 anymore [Bug 646016] so we are restricting tests. Bug: https://bugs.gentoo.org/646016 Closes: https://bugs.gentoo.org/645994 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild index 179b8e0a175..256c3356f43 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild @@ -23,6 +23,10 @@ RDEPEND="app-arch/snappy:= DEPEND="${RDEPEND} test? ( dev-db/mongodb )" +# No tests on x86 because tests require dev-db/mongodb which don't support +# x86 anymore (bug #645994) +RESTRICT="x86? ( test )" + src_prepare() { # remove bundled libs rm -rv src/{libbson,zlib*} || die