Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/testify: testify-0.3.2.ebuild ChangeLog
Date: Mon, 26 May 2014 08:10:43
Message-Id: 20140526081039.A6A672004E@flycatcher.gentoo.org
1 patrick 14/05/26 08:10:39
2
3 Modified: ChangeLog
4 Added: testify-0.3.2.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.12 dev-python/testify/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 20 May 2014 15:16:08 -0000 1.11
24 +++ ChangeLog 26 May 2014 08:10:39 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/testify
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.11 2014/05/20 15:16:08 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.12 2014/05/26 08:10:39 patrick Exp $
30 +
31 +*testify-0.3.2 (26 May 2014)
32 +
33 + 26 May 2014; Patrick Lauer <patrick@g.o> +testify-0.3.2.ebuild:
34 + Bump
35
36 *testify-0.3.1 (20 May 2014)
37
38
39
40
41 1.1 dev-python/testify/testify-0.3.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/testify-0.3.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/testify-0.3.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: testify-0.3.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.3.2.ebuild,v 1.1 2014/05/26 08:10:39 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 pypy )
55 RESTRICT="test"
56
57 inherit distutils-r1 vcs-snapshot
58
59 DESCRIPTION="A more pythonic replacement for the unittest module and nose"
60 HOMEPAGE="https://github.com/Yelp/testify http://pypi.python.org/pypi/testify/"
61 SRC_URI="https://github.com/Yelp/${PN}/tarball/${PV} -> ${P}.tar.gz"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="test"
67
68 RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]
69 dev-python/sqlalchemy[${PYTHON_USEDEP}]
70 www-servers/tornado[${PYTHON_USEDEP}]"
71 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
72 test? ( ${RDEPEND} )"
73
74 DOCS="README.md"
75
76 src_prepare_all() {
77 # Rm rogue test, Bug #438032
78 rm -f test/plugins//http_reporter_test.py
79 }
80
81 python_test() {
82 "${PYTHON}" bin/${PN} test || die
83 }