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.2.7.ebuild ChangeLog
Date: Mon, 30 Jul 2012 07:06:41
Message-Id: 20120730070627.0C1372004B@flycatcher.gentoo.org
1 patrick 12/07/30 07:06:26
2
3 Modified: ChangeLog
4 Added: testify-0.2.7.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-python/testify/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 20 May 2012 13:16:37 -0000 1.2
24 +++ ChangeLog 30 Jul 2012 07:06:26 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/testify
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.2 2012/05/20 13:16:37 klausman Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/testify/ChangeLog,v 1.3 2012/07/30 07:06:26 patrick Exp $
30 +
31 +*testify-0.2.7 (30 Jul 2012)
32 +
33 + 30 Jul 2012; Patrick Lauer <patrick@g.o> +testify-0.2.7.ebuild:
34 + Bump
35
36 20 May 2012; Tobias Klausmann <klausman@g.o> testify-0.2.6.ebuild:
37 Fix package summary
38 @@ -10,4 +15,3 @@
39 18 May 2012; Kacper Kowalik <xarthisius@g.o>
40 +files/testify-0.2.6-tests.patch, +metadata.xml, +testify-0.2.6.ebuild:
41 Initial import, ebuild written by me
42 -
43
44
45
46 1.1 dev-python/testify/testify-0.2.7.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/testify-0.2.7.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testify/testify-0.2.7.ebuild?rev=1.1&content-type=text/plain
50
51 Index: testify-0.2.7.ebuild
52 ===================================================================
53 # Copyright 1999-2012 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.2.7.ebuild,v 1.1 2012/07/30 07:06:26 patrick Exp $
56
57 EAPI=4
58
59 SUPPORT_PYTHON_ABIS=1
60 # TODO: verify 2.5
61 RESTRICT_PYTHON_ABIS="2.5 3.* 2.7-pypy-*"
62
63 inherit eutils distutils vcs-snapshot
64
65 DESCRIPTION="A more pythonic replacement for the unittest module and nose"
66 HOMEPAGE="https://github.com/Yelp/testify http://pypi.python.org/pypi/testify/"
67 SRC_URI="https://github.com/Yelp/${PN}/tarball/${PV} -> ${P}.tar.gz"
68
69 LICENSE="Apache-2.0"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="test"
73
74 RDEPEND="dev-python/pyyaml
75 dev-python/sqlalchemy
76 www-servers/tornado
77 || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson )"
78 DEPEND="dev-python/setuptools
79 test? ( ${RDEPEND} )"
80
81 #DOCS="README.txt"
82
83 src_prepare() {
84 distutils_src_prepare
85 epatch "${FILESDIR}"/${PN}-0.2.6-tests.patch
86 }
87
88 src_test() {
89 testing() {
90 PYTHONPATH="build-${PYTHON_ABI}/lib/" "$(PYTHON)" bin/${PN} test
91 }
92 python_execute_function testing
93 }