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 3FEE6139694 for ; Thu, 25 May 2017 15:23:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 677FF21C1EE; Thu, 25 May 2017 15:23:54 +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 4215621C1EE for ; Thu, 25 May 2017 15:23:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 592713416AB for ; Thu, 25 May 2017 15:23:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2222745D for ; Thu, 25 May 2017 15:23:51 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1495725807.3cea5038fffa867a5371cf073788a9fec04fce55.floppym@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.7.1-r1.ebuild dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild X-VCS-Directories: dev-libs/mongo-c-driver/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 3cea5038fffa867a5371cf073788a9fec04fce55 X-VCS-Branch: master Date: Thu, 25 May 2017 15:23:51 +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: 7e3b90ff-a18e-4bbc-b67c-01f2c913442b X-Archives-Hash: 9d267fb06fd74a644a8488508f011aa5 commit: 3cea5038fffa867a5371cf073788a9fec04fce55 Author: Mike Gilbert gentoo org> AuthorDate: Thu May 25 15:23:27 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu May 25 15:23:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cea5038 dev-libs/mongo-c-driver: fix python_check_deps logic Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69 dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild | 4 +++- dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild index 25e9c58a643..a9d4a790780 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild @@ -24,7 +24,9 @@ DEPEND="${PYTHON_DEPS} " python_check_deps() { - use doc && has_version "dev-python/sphinx[${PYTHON_USEDEP}]" + if use doc; then + has_version "dev-python/sphinx[${PYTHON_USEDEP}]" + fi } src_unpack() { diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild index cadb8fb4812..764dce23aa5 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild @@ -25,7 +25,9 @@ DEPEND="${PYTHON_DEPS} PATCHES=( "${FILESDIR}/${PV}-api-version.diff" ) python_check_deps() { - use doc && has_version "dev-python/sphinx[${PYTHON_USEDEP}]" + if use doc; then + has_version "dev-python/sphinx[${PYTHON_USEDEP}]" + fi } src_unpack() {