Gentoo Archives: gentoo-commits

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