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 EC1F6138334 for ; Sat, 14 Dec 2019 17:49:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B586E0894; Sat, 14 Dec 2019 17:49:17 +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 07F05E0894 for ; Sat, 14 Dec 2019 17:49:16 +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 ADC4E34D865 for ; Sat, 14 Dec 2019 17:49:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D505893 for ; Sat, 14 Dec 2019 17:49:13 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1576345744.1ed4b3ef37906735b05d4e74f423ac634c620060.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pkgcore/pkgcore-0.10.8.ebuild X-VCS-Directories: sys-apps/pkgcore/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1ed4b3ef37906735b05d4e74f423ac634c620060 X-VCS-Branch: master Date: Sat, 14 Dec 2019 17:49:13 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 430339d1-2e29-4ce6-93bc-1ee5a7f07373 X-Archives-Hash: 3244c71d28d6b3bea8638e081a45da9d commit: 1ed4b3ef37906735b05d4e74f423ac634c620060 Author: Michał Górny gentoo org> AuthorDate: Sat Dec 14 17:33:33 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 14 17:49:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed4b3ef sys-apps/pkgcore: Add missing any-of dep on snakeoil Closes: https://bugs.gentoo.org/702916 Signed-off-by: Michał Górny gentoo.org> sys-apps/pkgcore/pkgcore-0.10.8.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-apps/pkgcore/pkgcore-0.10.8.ebuild b/sys-apps/pkgcore/pkgcore-0.10.8.ebuild index 48263e63a06..7351db9305d 100644 --- a/sys-apps/pkgcore/pkgcore-0.10.8.ebuild +++ b/sys-apps/pkgcore/pkgcore-0.10.8.ebuild @@ -32,6 +32,7 @@ DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] doc? ( $(python_gen_any_dep ' dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/snakeoil[${PYTHON_USEDEP}] dev-python/docutils[${PYTHON_USEDEP}] dev-python/sphinx[${PYTHON_USEDEP}] ') ) @@ -43,6 +44,7 @@ DEPEND="${RDEPEND} python_check_deps() { has_version "dev-python/setuptools[${PYTHON_USEDEP}]" || return 1 + has_version "dev-python/snakeoil[${PYTHON_USEDEP}]" || return 1 if use doc; then has_version "dev-python/docutils[${PYTHON_USEDEP}]" && has_version "dev-python/sphinx[${PYTHON_USEDEP}]"