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 DEB201382C5 for ; Sun, 23 May 2021 10:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43AD5E0882; Sun, 23 May 2021 10:48:15 +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 2C3EDE0882 for ; Sun, 23 May 2021 10:48:15 +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 D4218340DBE for ; Sun, 23 May 2021 10:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D626797 for ; Sun, 23 May 2021 10:48:11 +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: <1621766887.acafc56974395ed442f8a4394c836f434763b667.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/kafka-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/kafka-python/kafka-python-1.4.7.ebuild X-VCS-Directories: dev-python/kafka-python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: acafc56974395ed442f8a4394c836f434763b667 X-VCS-Branch: master Date: Sun, 23 May 2021 10:48:11 +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: d2cb9f59-f878-4bb6-83f9-15c96b45adef X-Archives-Hash: 6a539bba2a9e435cfae9eaa32439d961 commit: acafc56974395ed442f8a4394c836f434763b667 Author: Michał Górny gentoo org> AuthorDate: Sun May 23 10:45:39 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 23 10:48:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acafc569 dev-python/kafka-python: Enable py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/kafka-python/kafka-python-1.4.7.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/kafka-python/kafka-python-1.4.7.ebuild b/dev-python/kafka-python/kafka-python-1.4.7.ebuild index d821f6d6524..36adc8405d2 100644 --- a/dev-python/kafka-python/kafka-python-1.4.7.ebuild +++ b/dev-python/kafka-python/kafka-python-1.4.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 @@ -17,9 +17,9 @@ IUSE="snappy test" RESTRICT="!test? ( test )" RDEPEND="snappy? ( dev-python/snappy[${PYTHON_USEDEP}] )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( + ${RDEPEND} dev-python/mock[${PYTHON_USEDEP}] dev-python/unittest2[${PYTHON_USEDEP}] )"