X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 840C7DC109C for ; Thu, 14 Apr 2016 07:46:00 +0000 (UTC) Received: from smtp4-g21.free.fr (smtp4-g21.free.fr [212.27.42.4]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 4595EDC0174 for ; Thu, 14 Apr 2016 07:45:59 +0000 (UTC) Received: from cq58.my.domain (unknown [82.236.42.167]) (Authenticated sender: mvertes) by smtp4-g21.free.fr (Postfix) with ESMTPSA id 8B3C319F5B5; Thu, 14 Apr 2016 07:51:38 +0200 (CEST) From: Marc Vertes To: alpine-aports@lists.alpinelinux.org Cc: Marc Vertes Subject: [alpine-aports] [PATCH] testing/mongodb: use wiredtiger from system instead of internal Date: Thu, 14 Apr 2016 09:45:47 +0200 Message-Id: <1460619947-22555-1-git-send-email-marc.vertes@ugrid.net> X-Mailer: git-send-email 2.8.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: This requires wiretiger-2.8.0. Previous 2.7.0 was causing problems when dropping collections which are now fixed in 2.8.0. --- testing/mongodb/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testing/mongodb/APKBUILD b/testing/mongodb/APKBUILD index 39e03b9..236b975 100644 --- a/testing/mongodb/APKBUILD +++ b/testing/mongodb/APKBUILD @@ -2,14 +2,14 @@ # Contributor: Marc Vertes pkgname=mongodb pkgver=3.2.4 -pkgrel=1 +pkgrel=2 pkgdesc='A high-performance, open source, schema-free document-oriented database' url='http://www.mongodb.org' arch='x86_64' license='AGPL3' pkgusers="mongodb" depends= -depends_dev="scons openssl-dev pcre-dev snappy-dev boost-dev asio-dev libpcap-dev" +depends_dev="scons openssl-dev pcre-dev snappy-dev boost-dev asio-dev libpcap-dev wiredtiger-dev" makedepends="$depends_dev" install="$pkgname.pre-install" source="http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz @@ -48,6 +48,7 @@ _buildopts=" --disable-warnings-as-errors \ --use-system-boost \ --use-system-pcre \ + --use-system-wiredtiger \ --use-system-snappy \ --use-system-zlib \ " -- 2.8.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---