Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/odfpy: ChangeLog odfpy-0.9.1.ebuild
Date: Mon, 31 Aug 2009 17:55:45
Message-Id: E1MiFvO-0000t1-TK@stork.gentoo.org
1 arfrever 09/08/31 23:04:34
2
3 Modified: ChangeLog
4 Added: odfpy-0.9.1.ebuild
5 Log:
6 Version bump. Set SUPPORT_PYTHON_ABIS.
7 (Portage version: 14174-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-python/odfpy/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/odfpy/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/odfpy/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/odfpy/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/odfpy/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 18 Apr 2009 20:17:53 -0000 1.2
23 +++ ChangeLog 31 Aug 2009 23:04:34 -0000 1.3
24 @@ -1,13 +1,15 @@
25 # ChangeLog for dev-python/odfpy
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/odfpy/ChangeLog,v 1.2 2009/04/18 20:17:53 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/odfpy/ChangeLog,v 1.3 2009/08/31 23:04:34 arfrever Exp $
29
30 - 18 Apr 2009; Patrick Lauer <patrick@g.o> ChangeLog:
31 - Ebuild originally by Richard Ash. Sorry for the misatribution.
32 +*odfpy-0.9.1 (31 Aug 2009)
33 +
34 + 31 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + +odfpy-0.9.1.ebuild:
36 + Version bump. Set SUPPORT_PYTHON_ABIS.
37
38 *odfpy-0.7 (18 Apr 2009)
39
40 18 Apr 2009; Patrick Lauer <patrick@g.o> +metadata.xml,
41 +odfpy-0.7.ebuild:
42 - Initial import of odfpy. Ebuild by Guillaume Romanczyk, closes #266519
43 -
44 + Initial import of odfpy. Ebuild by Richard Ash, closes #266168
45
46
47
48 1.1 dev-python/odfpy/odfpy-0.9.1.ebuild
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/odfpy/odfpy-0.9.1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/odfpy/odfpy-0.9.1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: odfpy-0.9.1.ebuild
54 ===================================================================
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-python/odfpy/odfpy-0.9.1.ebuild,v 1.1 2009/08/31 23:04:34 arfrever Exp $
58
59 EAPI="2"
60
61 NEED_PYTHON="2.4"
62 SUPPORT_PYTHON_ABIS="1"
63
64 inherit distutils
65
66 DESCRIPTION="Python interface to Open Document Format"
67 HOMEPAGE="http://opendocumentfellowship.com/development/projects/odfpy"
68 SRC_URI="http://pypi.python.org/packages/source/o/odfpy/${P}.tar.gz"
69
70 LICENSE="GPL-2"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE=""
74
75 DEPEND=""
76 RDEPEND=""
77
78 RESTRICT_PYTHON_ABIS="3*"
79
80 PYTHON_MODNAME="odf"
81
82 src_test() {
83 testing() {
84 pushd tests > /dev/null || die
85 local test
86 for test in test*.py; do
87 echo -e "\e[1;31mRunning ${test}...\e[0m"
88 PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" "${test}" || die "${test} failed with Python ${PYTHON_ABI}"
89 done
90 popd > /dev/null || die
91 }
92 python_execute_function testing
93 }