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 785501382C5 for ; Thu, 8 Feb 2018 05:11:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D2EBE09EB; Thu, 8 Feb 2018 05:11:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6D600E09EB for ; Thu, 8 Feb 2018 05:11:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5AAEE335C31 for ; Thu, 8 Feb 2018 05:11:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CBE21DA for ; Thu, 8 Feb 2018 05:11:10 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1518066538.c7ddf66e2865bb5d3da6d49398801c8e589b63e8.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-relaxed/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-relaxed/Manifest dev-python/pytest-relaxed/metadata.xml dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild X-VCS-Directories: dev-python/pytest-relaxed/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: c7ddf66e2865bb5d3da6d49398801c8e589b63e8 X-VCS-Branch: master Date: Thu, 8 Feb 2018 05:11:10 +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-Archives-Salt: 063df026-fce8-410c-9667-8a21b36b0679 X-Archives-Hash: f727761aac0e561eefe769423eb77fcf commit: c7ddf66e2865bb5d3da6d49398801c8e589b63e8 Author: Tim Harder gentoo org> AuthorDate: Thu Feb 8 05:04:38 2018 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Feb 8 05:08:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7ddf66e dev-python/pytest-relaxed: initial import, new test dep for paramiko dev-python/pytest-relaxed/Manifest | 1 + dev-python/pytest-relaxed/metadata.xml | 12 +++++++++ .../pytest-relaxed/pytest-relaxed-1.1.0.ebuild | 31 ++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/pytest-relaxed/Manifest b/dev-python/pytest-relaxed/Manifest new file mode 100644 index 00000000000..0faad2d9e9a --- /dev/null +++ b/dev-python/pytest-relaxed/Manifest @@ -0,0 +1 @@ +DIST pytest-relaxed-1.1.0.tar.gz 25942 BLAKE2B 6dd34044ec3ae0b5c85f0a76102aaeafe3dad8748c0cf34666dd3550162a2968191efb8415467259a4f072905af062aeabaaaeb475ab68d47aa8d79e3cadd3d0 SHA512 010e37c4d0c63bd00af8851bb50e52af7f8f17769be042e4941e8d8ba451920c24dfa6cdf74cd1b3ca4b3e1c71cd5e1ac34ffae855fc261cf431c212f98cbfff diff --git a/dev-python/pytest-relaxed/metadata.xml b/dev-python/pytest-relaxed/metadata.xml new file mode 100644 index 00000000000..2d23528854f --- /dev/null +++ b/dev-python/pytest-relaxed/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + pytest-relaxed + bitprophet/pytest-relaxed + + diff --git a/dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild b/dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild new file mode 100644 index 00000000000..5264bf4fb7f --- /dev/null +++ b/dev-python/pytest-relaxed/pytest-relaxed-1.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="py.test plugin for relaxed test discovery and organization" +HOMEPAGE="https://pypi.python.org/pypi/pytest-relaxed https://github.com/bitprophet/pytest-relaxed" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD-2" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/pytest-3[${PYTHON_USEDEP}] + >=dev-python/six-1[${PYTHON_USEDEP}] + >=dev-python/decorator-4[${PYTHON_USEDEP}] +" +DEPEND="test? ( ${RDEPEND} )" + +# various misc failures +RESTRICT="test" + +python_test() { + py.test || die "tests failed with ${EPYTHON}" +}