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 BDBF315808B for ; Sat, 26 Feb 2022 07:49:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98D44E075F; Sat, 26 Feb 2022 07:49:21 +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 79E78E075F for ; Sat, 26 Feb 2022 07:49:21 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 571D4343073 for ; Sat, 26 Feb 2022 07:49:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1C8B2F9 for ; Sat, 26 Feb 2022 07:49:18 +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: <1645861747.2abec76706b4670aae35abcaf4be3d334241221f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parameterized/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/parameterized/parameterized-0.8.1-r1.ebuild X-VCS-Directories: dev-python/parameterized/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2abec76706b4670aae35abcaf4be3d334241221f X-VCS-Branch: master Date: Sat, 26 Feb 2022 07:49:18 +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: e54e879b-01d3-4f36-92e4-f7c202904a7d X-Archives-Hash: b767d5a8f38fd19a48488dfc099f17bc commit: 2abec76706b4670aae35abcaf4be3d334241221f Author: Michał Górny gentoo org> AuthorDate: Sat Feb 26 07:46:46 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 26 07:49:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2abec767 dev-python/parameterized: EAPI 8, PEP517 Signed-off-by: Michał Górny gentoo.org> .../parameterized/parameterized-0.8.1-r1.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-python/parameterized/parameterized-0.8.1-r1.ebuild b/dev-python/parameterized/parameterized-0.8.1-r1.ebuild new file mode 100644 index 000000000000..884e6e1ca7c0 --- /dev/null +++ b/dev-python/parameterized/parameterized-0.8.1-r1.ebuild @@ -0,0 +1,25 @@ +# 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="Parameterized testing with any Python test framework" +HOMEPAGE="https://github.com/wolever/parameterized/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests nose