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/decorator: decorator-3.4.0.ebuild ChangeLog
Date: Mon, 29 Oct 2012 08:54:34
Message-Id: 20121029085424.4A7E421600@flycatcher.gentoo.org
1 patrick 12/10/29 08:54:24
2
3 Modified: ChangeLog
4 Added: decorator-3.4.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.57 dev-python/decorator/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 30 Sep 2012 17:03:47 -0000 1.56
24 +++ ChangeLog 29 Oct 2012 08:54:24 -0000 1.57
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/decorator
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.56 2012/09/30 17:03:47 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.57 2012/10/29 08:54:24 patrick Exp $
30 +
31 +*decorator-3.4.0 (29 Oct 2012)
32 +
33 + 29 Oct 2012; Patrick Lauer <patrick@g.o> +decorator-3.4.0.ebuild:
34 + Bump
35
36 30 Sep 2012; Raúl Porcel <armin76@g.o> decorator-3.3.1.ebuild,
37 decorator-3.3.2.ebuild, decorator-3.3.3.ebuild:
38 @@ -209,4 +214,3 @@
39 02 May 2008; Rob Cakebread <pythonhead@g.o> +metadata.xml,
40 +decorator-2.2.0.ebuild:
41 Initial commit. Thanks Qiangning Hong <hongqn@×××××.com> bug #176640
42 -
43
44
45
46 1.1 dev-python/decorator/decorator-3.4.0.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0.ebuild?rev=1.1&content-type=text/plain
50
51 Index: decorator-3.4.0.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/decorator/decorator-3.4.0.ebuild,v 1.1 2012/10/29 08:54:24 patrick Exp $
56
57 EAPI="3"
58 SUPPORT_PYTHON_ABIS="1"
59 PYTHON_TESTS_RESTRICTED_ABIS="2.4 2.5"
60
61 inherit distutils
62
63 DESCRIPTION="Simplifies the usage of decorators for the average programmer"
64 HOMEPAGE="http://pypi.python.org/pypi/decorator http://code.google.com/p/micheles/"
65 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
70 IUSE=""
71
72 DEPEND="dev-python/setuptools"
73 RDEPEND=""
74
75 DOCS="README.txt"
76 PYTHON_MODNAME="decorator.py"
77
78 src_test() {
79 testing() {
80 if [[ "${PYTHON_ABI}" == 3.* ]]; then
81 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation3.py
82 else
83 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation.py
84 fi
85 }
86 python_execute_function testing
87 }