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 57FC51382DE for ; Wed, 29 Jun 2016 18:49:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40F0FE099D; Wed, 29 Jun 2016 18:49:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6F68E099D for ; Wed, 29 Jun 2016 18:49:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82184340DC4 for ; Wed, 29 Jun 2016 18:49:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 345E9336 for ; Wed, 29 Jun 2016 18:49:43 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1467226153.06fc005cccb4ae258d5b6b0d2183b8446c66cdb6.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-timeout/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-timeout/Manifest dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild X-VCS-Directories: dev-python/pytest-timeout/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 06fc005cccb4ae258d5b6b0d2183b8446c66cdb6 X-VCS-Branch: master Date: Wed, 29 Jun 2016 18:49:43 +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: 5c919bcb-4a67-4351-8643-c8b2a8bfd923 X-Archives-Hash: 627c00711a1b68fce35edc675bc0b1c0 commit: 06fc005cccb4ae258d5b6b0d2183b8446c66cdb6 Author: Patrick Lauer gentoo org> AuthorDate: Wed Jun 29 18:24:34 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Wed Jun 29 18:49:13 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06fc005c dev-python/pytest-timeout: Bump Package-Manager: portage-2.3.0 dev-python/pytest-timeout/Manifest | 1 + .../pytest-timeout/pytest-timeout-1.0.0.ebuild | 25 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/pytest-timeout/Manifest b/dev-python/pytest-timeout/Manifest index 7717c07..115d29c 100644 --- a/dev-python/pytest-timeout/Manifest +++ b/dev-python/pytest-timeout/Manifest @@ -1 +1,2 @@ DIST pytest-timeout-0.4.tar.gz 10204 SHA256 d5900aaa94af5cb2d06ed806b1e636255e65a8a26eccecccd2b9a9d6123d50d5 SHA512 07031d64012e683064cd0bf2cef1d7209f02085e07dd8c7dfc704270d1e6ecf9679c639d529586c7d52d9425244a05ac362a7cd0092ca1f162a54539f58286e4 WHIRLPOOL b4befc271e378246d3e9fdd23a931fa400a981f79e90b0d44bbd533bea2be976fb4fcf73f6aa552d129e6945d82880bdf7bbf08c653c787913a8b782be54ab51 +DIST pytest-timeout-1.0.0.tar.gz 11125 SHA256 1465096be73e16df1e15d1b1453692428a7e15b997d756bc565aee0d12798ce1 SHA512 67a42562dfa7175c213ae50a7e152f04406f01a4821d69c9e95637a06a2574de8ce2f147030ff1417cc99eb7d518d7c59ac72ff2671dc3e7e813962da91e7591 WHIRLPOOL cc5f915b9a875d2c5886d6eee1329deb5c86e853cf65f3964364278ad6f6271cf05fbbe37960d14019d99dced0bfd5c84726f692c43930e51331b2e750604cba diff --git a/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild b/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild new file mode 100644 index 0000000..10fb531 --- /dev/null +++ b/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="py.test plugin to abort hanging tests" +HOMEPAGE="https://pypi.python.org/pypi/pytest-timeout" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="dev-python/pytest" +DEPEND="${RDEPEND}" + +python_test() { + ${EPYTHON} test_pytest_timeout.py || die +}