From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 125FF1382CD for ; Sun, 26 Jun 2016 00:09:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFB1C1420D; Sun, 26 Jun 2016 00:09:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35B391420D for ; Sun, 26 Jun 2016 00:09:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B2DB340BE0 for ; Sun, 26 Jun 2016 00:09:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35E242434 for ; Sun, 26 Jun 2016 00:09:32 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1466898249.19239aaef7013ca1a51fd6d0b55c55c7382104c0.blueness@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-0.98.2.ebuild dev-libs/mongo-c-driver/mongo-c-driver-1.1.10.ebuild dev-libs/mongo-c-driver/mongo-c-driver-1.1.2-r1.ebuild X-VCS-Directories: dev-libs/mongo-c-driver/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 19239aaef7013ca1a51fd6d0b55c55c7382104c0 X-VCS-Branch: master Date: Sun, 26 Jun 2016 00:09:32 +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: 5b2f000f-0401-42ca-b15c-d644fd89440a X-Archives-Hash: 1606034ad1eb007ce39cda49630d8fb7 commit: 19239aaef7013ca1a51fd6d0b55c55c7382104c0 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Jun 25 23:44:09 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Jun 25 23:44:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19239aae dev-libs/mongo-c-driver: add libressl support Package-Manager: portage-2.2.28 dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild | 9 ++++++--- dev-libs/mongo-c-driver/mongo-c-driver-1.1.10.ebuild | 9 ++++++--- dev-libs/mongo-c-driver/mongo-c-driver-1.1.2-r1.ebuild | 9 ++++++--- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild index 0bb5f3e..2b0d4ac 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,11 +13,14 @@ SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~hppa ~x86" -IUSE="debug examples sasl ssl static-libs test" +IUSE="debug examples libressl sasl ssl static-libs test" RDEPEND=">=dev-libs/libbson-0.98.0 sasl? ( dev-libs/cyrus-sasl ) - ssl? ( dev-libs/openssl:= )" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" DEPEND="${RDEPEND} test? ( dev-db/mongodb )" diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.1.10.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-1.1.10.ebuild index a745d2d..ab6aedf 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-1.1.10.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.1.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,11 +13,14 @@ SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~hppa ~x86" -IUSE="debug examples sasl ssl static-libs test" +IUSE="debug examples libressl sasl ssl static-libs test" RDEPEND=">=dev-libs/libbson-1.1.10 sasl? ( dev-libs/cyrus-sasl ) - ssl? ( dev-libs/openssl:= )" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" DEPEND="${RDEPEND} test? ( dev-db/mongodb )" diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.1.2-r1.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-1.1.2-r1.ebuild index 65f19c5..b5b39fd 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-1.1.2-r1.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.1.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,11 +13,14 @@ SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~hppa ~x86" -IUSE="debug examples sasl ssl static-libs test" +IUSE="debug examples libressl sasl ssl static-libs test" RDEPEND=">=dev-libs/libbson-1.0 sasl? ( dev-libs/cyrus-sasl ) - ssl? ( dev-libs/openssl:= )" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" DEPEND="${RDEPEND} test? ( dev-db/mongodb )"