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/functest: functest-0.8.8-r1.ebuild ChangeLog functest-0.8.8.ebuild
Date: Tue, 30 Dec 2014 07:57:55
Message-Id: 20141230075750.84D3BE7AA@oystercatcher.gentoo.org
1 idella4 14/12/30 07:57:50
2
3 Modified: ChangeLog
4 Added: functest-0.8.8-r1.ebuild
5 Removed: functest-0.8.8.ebuild
6 Log:
7 revbump; conversion -> distutils-r1, rm old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.4 dev-python/functest/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/functest/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/functest/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/functest/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/functest/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 22 Jul 2010 16:17:58 -0000 1.3
25 +++ ChangeLog 30 Dec 2014 07:57:50 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/functest
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/functest/ChangeLog,v 1.3 2010/07/22 16:17:58 arfrever Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/functest/ChangeLog,v 1.4 2014/12/30 07:57:50 idella4 Exp $
32 +
33 +*functest-0.8.8-r1 (30 Dec 2014)
34 +
35 + 30 Dec 2014; Ian Delaney <idella4@g.o> +functest-0.8.8-r1.ebuild,
36 + -functest-0.8.8.ebuild:
37 + revbump; conversion -> distutils-r1, rm old
38
39 22 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
40 functest-0.8.8.ebuild:
41 @@ -14,4 +20,3 @@
42 25 Jul 2009; Jesus Rivero <neurogeek@g.o> +functest-0.8.8.ebuild,
43 +metadata.xml:
44 Initial commit. Thanks to Almad (bugs@×××××.net). Closes bug #238899.
45 -
46
47
48
49 1.1 dev-python/functest/functest-0.8.8-r1.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/functest/functest-0.8.8-r1.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/functest/functest-0.8.8-r1.ebuild?rev=1.1&content-type=text/plain
53
54 Index: functest-0.8.8-r1.ebuild
55 ===================================================================
56 # Copyright 1999-2014 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/dev-python/functest/functest-0.8.8-r1.ebuild,v 1.1 2014/12/30 07:57:50 idella4 Exp $
59
60 EAPI=5
61 PYTHON_COMPAT=( python2_7 )
62
63 inherit distutils-r1
64
65 DESCRIPTION="Functest is a test tool/framework for testing in Python"
66 HOMEPAGE="http://code.google.com/p/functest/ http://pypi.python.org/pypi/functest"
67 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
68
69 LICENSE="Apache-2.0"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73
74 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
75 RDEPEND=""
76
77 python_prepare_all() {
78 # purge test folder to avoid file collisions
79 sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i setup.py || die
80 distutils-r1_python_prepare_all
81 }
82
83 python_test() {
84 PATH="scripts:${PATH}" nosetests || die "Tests fail with ${EPYTHON}"
85 }