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 8C2C5158013 for ; Thu, 23 Sep 2021 17:22:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF09EE0887; Thu, 23 Sep 2021 17:22:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 99D1EE0887 for ; Thu, 23 Sep 2021 17:22:08 +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 522CE342E02 for ; Thu, 23 Sep 2021 17:22:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10C15EA for ; Thu, 23 Sep 2021 17:22:06 +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: <1632417717.da0dcf14c8cd9e3fc553c790b936cb7f1b5ec854.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-check/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-check/Manifest dev-python/pytest-check/metadata.xml dev-python/pytest-check/pytest-check-1.0.4.ebuild X-VCS-Directories: dev-python/pytest-check/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: da0dcf14c8cd9e3fc553c790b936cb7f1b5ec854 X-VCS-Branch: master Date: Thu, 23 Sep 2021 17:22:06 +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: 112b3b7d-0b31-4d8b-b667-b0e8a5b77921 X-Archives-Hash: 1cc733fb199eddb386958fec3e36006f commit: da0dcf14c8cd9e3fc553c790b936cb7f1b5ec854 Author: Arthur Zamarin gentoo org> AuthorDate: Thu Sep 23 17:18:27 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Sep 23 17:21:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da0dcf14 dev-python/pytest-check: new NIH test dep for dev-python/sphobjinv Signed-off-by: Arthur Zamarin gentoo.org> dev-python/pytest-check/Manifest | 1 + dev-python/pytest-check/metadata.xml | 13 ++++++++++ dev-python/pytest-check/pytest-check-1.0.4.ebuild | 29 +++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-python/pytest-check/Manifest b/dev-python/pytest-check/Manifest new file mode 100644 index 00000000000..7cb85a73456 --- /dev/null +++ b/dev-python/pytest-check/Manifest @@ -0,0 +1 @@ +DIST pytest-check-1.0.4.gh.tar.gz 7738 BLAKE2B 179575dfd4f9e50715fd5a664039fe882b0e14c9369afb6f7aca65e9ab276147b2a0b7fe580d2a249721152d891c12cedfa06ae7e26027c6b7d3b34da17d4a53 SHA512 ca71295fc5a831df295c8ce40c6a57cde9a1b98ca25354a3954fc44c9094096ea0c9c6a49139659d4c9aa4e3d3d81d80893edb657bfd3f4d988c75864e843447 diff --git a/dev-python/pytest-check/metadata.xml b/dev-python/pytest-check/metadata.xml new file mode 100644 index 00000000000..af6127a0bf2 --- /dev/null +++ b/dev-python/pytest-check/metadata.xml @@ -0,0 +1,13 @@ + + + + + arthurzam@gentoo.org + Arthur Zamarin + + + + okken/pytest-check + pytest_check + + diff --git a/dev-python/pytest-check/pytest-check-1.0.4.ebuild b/dev-python/pytest-check/pytest-check-1.0.4.ebuild new file mode 100644 index 00000000000..08ebac53b79 --- /dev/null +++ b/dev-python/pytest-check/pytest-check-1.0.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +inherit distutils-r1 + +DESCRIPTION="pytest plugin that allows multiple failures per test" +HOMEPAGE="https://github.com/okken/pytest-check https://pypi.org/project/pytest_check/" +SRC_URI=" + https://github.com/okken/pytest-check/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/pytest-6[${PYTHON_USEDEP}]" +BDEPEND="dev-python/flit_core[${PYTHON_USEDEP}]" + +distutils_enable_tests --install pytest + +src_prepare() { + default + mv src/pytest_check pytest_check +}