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 B186D158090 for ; Tue, 12 Apr 2022 11:06:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C44C7E0963; Tue, 12 Apr 2022 11:06:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01090E0966 for ; Tue, 12 Apr 2022 11:06:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0D0F34153D for ; Tue, 12 Apr 2022 11:06:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24F90398 for ; Tue, 12 Apr 2022 11:06: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: <1649761566.cb9157bf432a3b54d2e01ed2be7a87d86775be99.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/googleapis-common-protos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/googleapis-common-protos/googleapis-common-protos-1.56.0-r1.ebuild X-VCS-Directories: dev-python/googleapis-common-protos/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cb9157bf432a3b54d2e01ed2be7a87d86775be99 X-VCS-Branch: master Date: Tue, 12 Apr 2022 11:06: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: 0ff313e1-f94a-4e30-90b7-7c83b17b03c4 X-Archives-Hash: 5b6af58f1497be0b30ceb95e731d55ff commit: cb9157bf432a3b54d2e01ed2be7a87d86775be99 Author: Michał Górny gentoo org> AuthorDate: Tue Apr 12 10:26:59 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 12 11:06:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9157bf dev-python/googleapis-common-protos: Remove namespace dep Signed-off-by: Michał Górny gentoo.org> .../googleapis-common-protos-1.56.0-r1.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-python/googleapis-common-protos/googleapis-common-protos-1.56.0-r1.ebuild b/dev-python/googleapis-common-protos/googleapis-common-protos-1.56.0-r1.ebuild new file mode 100644 index 000000000000..66b5f36534ac --- /dev/null +++ b/dev-python/googleapis-common-protos/googleapis-common-protos-1.56.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="python classes generated from the common protos in the googleapis repository" +HOMEPAGE="https://pypi.org/project/googleapis-common-protos/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + >=dev-python/protobuf-python-3.12.0[${PYTHON_USEDEP}] +" + +python_compile() { + distutils-r1_python_compile + find "${BUILD_DIR}" -name '*.pth' -delete || die +} + +# no tests as this is all generated code