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.0.ebuild ChangeLog
Date: Sat, 03 May 2014 08:12:04
Message-Id: 20140503081200.89B762004C@flycatcher.gentoo.org
1 patrick 14/05/03 08:12:00
2
3 Modified: ChangeLog
4 Added: testify-0.3.0.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.10 dev-python/testify/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 5 Apr 2013 05:44:01 -0000 1.9
24 +++ ChangeLog 3 May 2014 08:12:00 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/testify
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.9 2013/04/05 05:44:01 idella4 Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.10 2014/05/03 08:12:00 patrick Exp $
31 +
32 +*testify-0.3.0 (03 May 2014)
33 +
34 + 03 May 2014; Patrick Lauer <patrick@g.o> +testify-0.3.0.ebuild:
35 + Bump
36
37 05 Apr 2013; Ian Delaney <idella4@g.o> testify-0.2.10.ebuild:
38 tests set to RESTRICT due to dep on versions of tornado long dropped from
39
40
41
42 1.1 dev-python/testify/testify-0.3.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/testify-0.3.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/testify-0.3.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: testify-0.3.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/testify/testify-0.3.0.ebuild,v 1.1 2014/05/03 08:12:00 patrick Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_6,2_7} )
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 RESTRICT="test"
68
69 RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]
70 dev-python/sqlalchemy
71 www-servers/tornado[${PYTHON_USEDEP}]
72 || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson )"
73 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
74 test? ( ${RDEPEND} )"
75
76 DOCS="README.md"
77
78 src_prepare_all() {
79 # Rm rogue test, Bug #438032
80 rm -f test/plugins//http_reporter_test.py
81 }
82
83 python_test() {
84 "${PYTHON}" bin/${PN} test || die
85 }