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 D603515808B for ; Thu, 24 Feb 2022 18:09:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04845E087E; Thu, 24 Feb 2022 18:09:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E19EFE087E for ; Thu, 24 Feb 2022 18:09:01 +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 14C70342DC9 for ; Thu, 24 Feb 2022 18:09:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89E5C2FC for ; Thu, 24 Feb 2022 18:08:58 +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: <1645726131.8d210c1f4c19cbd361e719d31fad45b378c4cd23.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/os-service-types/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/os-service-types/os-service-types-1.7.0-r2.ebuild X-VCS-Directories: dev-python/os-service-types/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8d210c1f4c19cbd361e719d31fad45b378c4cd23 X-VCS-Branch: master Date: Thu, 24 Feb 2022 18:08:58 +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: ad5b825d-5bd6-49d7-8f77-4ea7e043e7dd X-Archives-Hash: 407925d7c0536476b809c3446eb5cff9 commit: 8d210c1f4c19cbd361e719d31fad45b378c4cd23 Author: Michał Górny gentoo org> AuthorDate: Thu Feb 24 17:28:59 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Feb 24 18:08:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d210c1f dev-python/os-service-types: PEP517, py3.10 Signed-off-by: Michał Górny gentoo.org> .../os-service-types-1.7.0-r2.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/os-service-types/os-service-types-1.7.0-r2.ebuild b/dev-python/os-service-types/os-service-types-1.7.0-r2.ebuild new file mode 100644 index 000000000000..d8de2d912307 --- /dev/null +++ b/dev-python/os-service-types/os-service-types-1.7.0-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-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="A library to handle official service types for OpenStack and it's aliases" +HOMEPAGE="https://github.com/openstack/os-service-types" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] +" +BDEPEND=" + ${RDEPEND} + test? ( + >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] + >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}] + >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest