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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F1E1C15808B for ; Sat, 12 Mar 2022 03:28:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05DDAE08F4; Sat, 12 Mar 2022 03:28:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE7C5E08CD for ; Sat, 12 Mar 2022 03:28:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BD49342E11 for ; Sat, 12 Mar 2022 03:28:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9317931A for ; Sat, 12 Mar 2022 03:28:20 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1647051380.dc09cf22aaa369532965d6c2143a724a6f1e54d4.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/etcd3/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/etcd3/etcd3-0.12.0.ebuild X-VCS-Directories: dev-python/etcd3/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: dc09cf22aaa369532965d6c2143a724a6f1e54d4 X-VCS-Branch: dev Date: Sat, 12 Mar 2022 03:28:20 +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: a47a4545-0e10-4aea-9d93-ba422693a52a X-Archives-Hash: 8cd998648791516456898dfcd9cb607e commit: dc09cf22aaa369532965d6c2143a724a6f1e54d4 Author: Alessandro Barbieri gmail com> AuthorDate: Sat Mar 12 02:16:20 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sat Mar 12 02:16:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc09cf22 dev-python/etcd3: add etcd dependency Closes: https://bugs.gentoo.org/831960 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/etcd3/etcd3-0.12.0.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dev-python/etcd3/etcd3-0.12.0.ebuild b/dev-python/etcd3/etcd3-0.12.0.ebuild index c3a5aa7ac..60491b7c4 100644 --- a/dev-python/etcd3/etcd3-0.12.0.ebuild +++ b/dev-python/etcd3/etcd3-0.12.0.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_8 ) +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 DESCRIPTION="Python client for the etcd API v3" HOMEPAGE=" - https://pypi.org/project/etcd3 + https://pypi.org/project/etcd3/ https://github.com/kragniz/python-etcd3 " SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" @@ -19,12 +19,13 @@ SLOT="0" KEYWORDS="~amd64" RDEPEND=" + dev-db/etcd >=dev-python/grpcio-1.2.0[${PYTHON_USEDEP}] >=dev-python/tenacity-5.0.2[${PYTHON_USEDEP}] >=dev-python/protobuf-python-3.6.1[${PYTHON_USEDEP}] " -DEPEND="${RDEPEND}" -BDEPEND=" +DEPEND=" + ${RDEPEND} test? ( >=dev-python/pyyaml-5.1[${PYTHON_USEDEP}] >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]