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 C4717158087 for ; Fri, 15 Oct 2021 15:53:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8C6BE0857; Fri, 15 Oct 2021 15:53:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEDDDE0857 for ; Fri, 15 Oct 2021 15:53:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F23D4343072 for ; Fri, 15 Oct 2021 15:53:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3863D166 for ; Fri, 15 Oct 2021 15:53:38 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1634312632.17686fcf42f5d7bcfc9fc256431b5eb6b4367efc.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-bdd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-bdd/Manifest dev-python/pytest-bdd/metadata.xml dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild X-VCS-Directories: dev-python/pytest-bdd/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 17686fcf42f5d7bcfc9fc256431b5eb6b4367efc X-VCS-Branch: master Date: Fri, 15 Oct 2021 15:53:38 +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: 32e924a4-0e0c-46fb-a291-f0a304f3f24f X-Archives-Hash: 71d9238fbdc1433cc7d0453813ff8516 commit: 17686fcf42f5d7bcfc9fc256431b5eb6b4367efc Author: Ionen Wolkens gentoo org> AuthorDate: Sat Oct 9 01:18:30 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Oct 15 15:43:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17686fcf dev-python/pytest-bdd: initial 4.1.0 import Signed-off-by: Ionen Wolkens gentoo.org> dev-python/pytest-bdd/Manifest | 1 + dev-python/pytest-bdd/metadata.xml | 13 +++++++++++ dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild | 32 +++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/dev-python/pytest-bdd/Manifest b/dev-python/pytest-bdd/Manifest new file mode 100644 index 00000000000..6a2dda08483 --- /dev/null +++ b/dev-python/pytest-bdd/Manifest @@ -0,0 +1 @@ +DIST pytest-bdd-4.1.0.tar.gz 61079 BLAKE2B 3bf7863b7244e0fa02de48f3c8d113427c9a9d546d1a5d95dbc025bcdf0bd60931fac55d7328c96a3b29b8b15da833c85c089cee19ee4f8a2bc639dd1b3c4e59 SHA512 54ce5ae2f7b3deff7d436d42f80fc47892707eb1e6e76469dda9753ff0b2d727bb47b5be300eadccadd87838aee43130fec5dff6441353eb07c0787c84d55afa diff --git a/dev-python/pytest-bdd/metadata.xml b/dev-python/pytest-bdd/metadata.xml new file mode 100644 index 00000000000..e5bcfe84640 --- /dev/null +++ b/dev-python/pytest-bdd/metadata.xml @@ -0,0 +1,13 @@ + + + + + ionen@gentoo.org + Ionen Wolkens + + + + pytest-dev/pytest-bdd + pytest-bdd + + diff --git a/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild b/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild new file mode 100644 index 00000000000..c61e3a82d36 --- /dev/null +++ b/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="BDD library for the pytest runner" +HOMEPAGE="https://pypi.org/project/pytest-bdd/" +SRC_URI="https://github.com/pytest-dev/pytest-bdd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/glob2[${PYTHON_USEDEP}] + dev-python/mako[${PYTHON_USEDEP}] + dev-python/parse[${PYTHON_USEDEP}] + dev-python/parse_type[${PYTHON_USEDEP}] + dev-python/py[${PYTHON_USEDEP}]" +BDEPEND="dev-python/packaging[${PYTHON_USEDEP}]" + +distutils_enable_tests --install pytest + +DOCS=( AUTHORS.rst CHANGES.rst README.rst ) + +EPYTEST_DESELECT=( + # result varies depending on current output terminal width + tests/feature/test_gherkin_terminal_reporter.py::test_verbose_mode_should_preserve_displaying_regular_tests_as_usual +)