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 9DD221382C5 for ; Fri, 11 Jun 2021 13:40:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AAF46E088A; Fri, 11 Jun 2021 13:40:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84605E088A for ; Fri, 11 Jun 2021 13:40:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0288D33BF41 for ; Fri, 11 Jun 2021 13:40:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 093307A4 for ; Fri, 11 Jun 2021 13:40:12 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1623418795.8e6877194b630f22ef3cce97c43e8725b59e35c8.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-plus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-plus/Manifest dev-python/pytest-plus/metadata.xml dev-python/pytest-plus/pytest-plus-0.2.ebuild X-VCS-Directories: dev-python/pytest-plus/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 8e6877194b630f22ef3cce97c43e8725b59e35c8 X-VCS-Branch: master Date: Fri, 11 Jun 2021 13:40:12 +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: b8fcff23-aaca-49f0-937f-c4d3c59bc5c4 X-Archives-Hash: fb8b9ed038b085dca7625d6c9d59c99f commit: 8e6877194b630f22ef3cce97c43e8725b59e35c8 Author: Marek Szuba gentoo org> AuthorDate: Fri Jun 11 13:07:51 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Jun 11 13:39:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e687719 dev-python/pytest-plus: initial import Signed-off-by: Marek Szuba gentoo.org> dev-python/pytest-plus/Manifest | 1 + dev-python/pytest-plus/metadata.xml | 13 +++++++++++++ dev-python/pytest-plus/pytest-plus-0.2.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/pytest-plus/Manifest b/dev-python/pytest-plus/Manifest new file mode 100644 index 00000000000..1b1dc87fd5c --- /dev/null +++ b/dev-python/pytest-plus/Manifest @@ -0,0 +1 @@ +DIST pytest-plus-0.2.tar.gz 8210 BLAKE2B b8a28e72cfb4e10daa021528de9b5df2e9eb0bc4e911557c7c14a0825284787e94992132c0b74881867a41b55a67785c60b9b87a1594ad33fb57ebac8de391a6 SHA512 e16a03433cb6eb30b6881bec99482bc65cb7d1fa3d0db855befe666c0645d4b5ec02debde9dec4322ed0a0b77d3ac3f1cabda0cf98f375ffd68dc29fb55f5139 diff --git a/dev-python/pytest-plus/metadata.xml b/dev-python/pytest-plus/metadata.xml new file mode 100644 index 00000000000..11989dba834 --- /dev/null +++ b/dev-python/pytest-plus/metadata.xml @@ -0,0 +1,13 @@ + + + + + marecki@gentoo.org + Marek Szuba + + + + pytest-dev/pytest-plus + pytest-plus + + diff --git a/dev-python/pytest-plus/pytest-plus-0.2.ebuild b/dev-python/pytest-plus/pytest-plus-0.2.ebuild new file mode 100644 index 00000000000..3bd50d2af4a --- /dev/null +++ b/dev-python/pytest-plus/pytest-plus-0.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="PyTest Plus Plugin - extends pytest functionality" +HOMEPAGE="https://github.com/pytest-dev/pytest-plus" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/more-itertools[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}]" +BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest