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/decorator: decorator-3.3.0.ebuild ChangeLog
Date: Sat, 01 Jan 2011 18:48:56
Message-Id: 20110101184842.7404620054@flycatcher.gentoo.org
1 arfrever 11/01/01 18:48:42
2
3 Modified: ChangeLog
4 Added: decorator-3.3.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha11_p6/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 dev-python/decorator/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 11 Dec 2010 17:40:25 -0000 1.24
24 +++ ChangeLog 1 Jan 2011 18:48:42 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/decorator
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.24 2010/12/11 17:40:25 arfrever Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.25 2011/01/01 18:48:42 arfrever Exp $
31 +
32 +*decorator-3.3.0 (01 Jan 2011)
33 +
34 + 01 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + +decorator-3.3.0.ebuild:
36 + Version bump.
37
38 *decorator-3.2.1 (11 Dec 2010)
39
40
41
42
43 1.1 dev-python/decorator/decorator-3.3.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.3.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.3.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: decorator-3.3.0.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.3.0.ebuild,v 1.1 2011/01/01 18:48:42 arfrever Exp $
53
54 EAPI="3"
55 SUPPORT_PYTHON_ABIS="1"
56 PYTHON_TESTS_RESTRICTED_ABIS="2.4 2.5"
57
58 inherit distutils
59
60 DESCRIPTION="Simplifies the usage of decorators for the average programmer"
61 HOMEPAGE="http://pypi.python.org/pypi/decorator"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
67 IUSE=""
68
69 DEPEND="dev-python/setuptools"
70 RDEPEND=""
71
72 DOCS="README.txt"
73 PYTHON_MODNAME="decorator.py"
74
75 src_test() {
76 testing() {
77 if [[ "${PYTHON_ABI}" == 3.* ]]; then
78 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation3.py
79 else
80 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation.py
81 fi
82 }
83 python_execute_function testing
84 }