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 77539158092 for ; Wed, 15 Sep 2021 05:12:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33BB0E087A; Wed, 15 Sep 2021 05:12:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 19D78E087A for ; Wed, 15 Sep 2021 05:12:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39BBC343077 for ; Wed, 15 Sep 2021 05:12:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9847FC8 for ; Wed, 15 Sep 2021 05:12:41 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1631682730.2ea155fd979e0b6a2209abba23c7289a132e9043.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-toolbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-toolbox/Manifest dev-python/pytest-toolbox/metadata.xml dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild X-VCS-Directories: dev-python/pytest-toolbox/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 2ea155fd979e0b6a2209abba23c7289a132e9043 X-VCS-Branch: master Date: Wed, 15 Sep 2021 05:12:41 +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: fcb8db56-3e7e-4f80-ad8f-e55df772970a X-Archives-Hash: 6becfe07936f29c66d9a00aeabdf2401 commit: 2ea155fd979e0b6a2209abba23c7289a132e9043 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Aug 14 07:23:24 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Wed Sep 15 05:12:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ea155fd dev-python/pytest-toolbox: initial import Signed-off-by: Arthur Zamarin gentoo.org> dev-python/pytest-toolbox/Manifest | 1 + dev-python/pytest-toolbox/metadata.xml | 12 +++++++++ .../pytest-toolbox/pytest-toolbox-0.4.ebuild | 31 ++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/pytest-toolbox/Manifest b/dev-python/pytest-toolbox/Manifest new file mode 100644 index 00000000000..d3d4b309cf7 --- /dev/null +++ b/dev-python/pytest-toolbox/Manifest @@ -0,0 +1 @@ +DIST pytest-toolbox-0.4.gh.tar.gz 8594 BLAKE2B fb1f19513e9e4b191c3eb995cc5e9445bc9f19affef87350d925c5465210c4de945b91120f86664c1dcf02a638595a7725cf88e3244e377ae77558c70d65643a SHA512 ed27700ff77cd607be808142cc310cd2b7461e55b3f8352d304ef8ca6c5e6c060c67a63238a1025407868ab8e229c4a16eaaa56aa75000159762001accb67752 diff --git a/dev-python/pytest-toolbox/metadata.xml b/dev-python/pytest-toolbox/metadata.xml new file mode 100644 index 00000000000..0b43cf3a3e2 --- /dev/null +++ b/dev-python/pytest-toolbox/metadata.xml @@ -0,0 +1,12 @@ + + + + + arthurzam@gentoo.org + Arthur Zamarin + + + pytest-toolbox + samuelcolvin/pytest-toolbox + + diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild new file mode 100644 index 00000000000..ffff5bfb4ec --- /dev/null +++ b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild @@ -0,0 +1,31 @@ +# 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="Numerous useful plugins for pytest" +HOMEPAGE="https://pypi.org/project/pytest-toolbox/ https://github.com/samuelcolvin/pytest-toolbox/" +SRC_URI=" + https://github.com/samuelcolvin/pytest-toolbox/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + test? ( + dev-python/pydantic[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -e '/addopts/d' -i setup.cfg || die + distutils-r1_src_prepare +}