Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-timeout/
Date: Wed, 29 Jun 2016 18:49:50
Message-Id: 1467226153.06fc005cccb4ae258d5b6b0d2183b8446c66cdb6.patrick@gentoo
1 commit: 06fc005cccb4ae258d5b6b0d2183b8446c66cdb6
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 18:24:34 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 18:49:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06fc005c
7
8 dev-python/pytest-timeout: Bump
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/pytest-timeout/Manifest | 1 +
13 .../pytest-timeout/pytest-timeout-1.0.0.ebuild | 25 ++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/pytest-timeout/Manifest b/dev-python/pytest-timeout/Manifest
17 index 7717c07..115d29c 100644
18 --- a/dev-python/pytest-timeout/Manifest
19 +++ b/dev-python/pytest-timeout/Manifest
20 @@ -1 +1,2 @@
21 DIST pytest-timeout-0.4.tar.gz 10204 SHA256 d5900aaa94af5cb2d06ed806b1e636255e65a8a26eccecccd2b9a9d6123d50d5 SHA512 07031d64012e683064cd0bf2cef1d7209f02085e07dd8c7dfc704270d1e6ecf9679c639d529586c7d52d9425244a05ac362a7cd0092ca1f162a54539f58286e4 WHIRLPOOL b4befc271e378246d3e9fdd23a931fa400a981f79e90b0d44bbd533bea2be976fb4fcf73f6aa552d129e6945d82880bdf7bbf08c653c787913a8b782be54ab51
22 +DIST pytest-timeout-1.0.0.tar.gz 11125 SHA256 1465096be73e16df1e15d1b1453692428a7e15b997d756bc565aee0d12798ce1 SHA512 67a42562dfa7175c213ae50a7e152f04406f01a4821d69c9e95637a06a2574de8ce2f147030ff1417cc99eb7d518d7c59ac72ff2671dc3e7e813962da91e7591 WHIRLPOOL cc5f915b9a875d2c5886d6eee1329deb5c86e853cf65f3964364278ad6f6271cf05fbbe37960d14019d99dced0bfd5c84726f692c43930e51331b2e750604cba
23
24 diff --git a/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild b/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild
25 new file mode 100644
26 index 0000000..10fb531
27 --- /dev/null
28 +++ b/dev-python/pytest-timeout/pytest-timeout-1.0.0.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="py.test plugin to abort hanging tests"
41 +HOMEPAGE="https://pypi.python.org/pypi/pytest-timeout"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +SLOT="0"
45 +LICENSE="MIT"
46 +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
47 +IUSE=""
48 +
49 +RDEPEND="dev-python/pytest"
50 +DEPEND="${RDEPEND}"
51 +
52 +python_test() {
53 + ${EPYTHON} test_pytest_timeout.py || die
54 +}