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 0E5591382C5 for ; Sat, 20 Mar 2021 18:53:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55F3EE0878; Sat, 20 Mar 2021 18:53:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3B921E0878 for ; Sat, 20 Mar 2021 18:53:55 +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 130B6335D29 for ; Sat, 20 Mar 2021 18:53:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E93D46C for ; Sat, 20 Mar 2021 18:53:52 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1616266419.c31f1bd4375dd5e0eb028d295042ee91c2d9c087.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/google-api-core/google-api-core-1.26.1-r1.ebuild X-VCS-Directories: dev-python/google-api-core/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: c31f1bd4375dd5e0eb028d295042ee91c2d9c087 X-VCS-Branch: master Date: Sat, 20 Mar 2021 18:53:52 +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: 34b94e62-ade8-4629-a2c9-67be2dff2186 X-Archives-Hash: 86f447161ce4263971a0521c2728b393 commit: c31f1bd4375dd5e0eb028d295042ee91c2d9c087 Author: Patrick McLean gentoo org> AuthorDate: Sat Mar 20 18:53:39 2021 +0000 Commit: Patrick McLean gentoo org> CommitDate: Sat Mar 20 18:53:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31f1bd4 dev-python/google-api-core-1.26.1-r1: Revbump add missing dep Reported in an email, this has a missing RDEPEND on dev-python/packaging. Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Patrick McLean gentoo.org> .../google-api-core-1.26.1-r1.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-python/google-api-core/google-api-core-1.26.1-r1.ebuild b/dev-python/google-api-core/google-api-core-1.26.1-r1.ebuild new file mode 100644 index 00000000000..af52a0d1189 --- /dev/null +++ b/dev-python/google-api-core/google-api-core-1.26.1-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="Core Library for Google Client Libraries" +HOMEPAGE="https://github.com/googleapis/python-api-core + https://googleapis.dev/python/google-api-core/latest" +SRC_URI="https://github.com/googleapis/${PN//google/python}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P//google/python}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/namespace-google[${PYTHON_USEDEP}] + dev-python/protobuf-python[${PYTHON_USEDEP}] + dev-python/googleapis-common-protos[${PYTHON_USEDEP}] + >=dev-python/google-auth-1.21.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.18.0[${PYTHON_USEDEP}] +