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 9AA6F15808B for ; Sat, 26 Feb 2022 12:17:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E64A6E088F; Sat, 26 Feb 2022 12:17:47 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBC76E088F for ; Sat, 26 Feb 2022 12:17:47 +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 A964C343091 for ; Sat, 26 Feb 2022 12:17:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB32D2DC for ; Sat, 26 Feb 2022 12:17:44 +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: <1645877860.2e0e1f45b87cab8db534ad2f12d71000ae691497.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslotest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/oslotest/oslotest-4.5.0-r1.ebuild X-VCS-Directories: dev-python/oslotest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2e0e1f45b87cab8db534ad2f12d71000ae691497 X-VCS-Branch: master Date: Sat, 26 Feb 2022 12:17:44 +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: a681be1a-5718-4717-b4b8-76cd4cc3c938 X-Archives-Hash: b3c27dce46d2faae0e788dda009a4814 commit: 2e0e1f45b87cab8db534ad2f12d71000ae691497 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 26 12:12:25 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 26 12:17:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0e1f45 dev-python/oslotest: Migrate to PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/oslotest/oslotest-4.5.0-r1.ebuild | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/oslotest/oslotest-4.5.0-r1.ebuild b/dev-python/oslotest/oslotest-4.5.0-r1.ebuild new file mode 100644 index 000000000000..0759ca463b55 --- /dev/null +++ b/dev-python/oslotest/oslotest-4.5.0-r1.ebuild @@ -0,0 +1,29 @@ +# 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="Oslo test framework" +HOMEPAGE="https://launchpad.net/oslo" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +BDEPEND=" + >=dev-python/pbr-1.8[${PYTHON_USEDEP}] +" +RDEPEND=" + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] + >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}] + >=dev-python/six-1.10.0[${PYTHON_USEDEP}] + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest