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/chameleon: chameleon-2.13.ebuild ChangeLog
Date: Mon, 28 Oct 2013 07:58:21
Message-Id: 20131028075815.7CA3020047@flycatcher.gentoo.org
1 patrick 13/10/28 07:58:15
2
3 Modified: ChangeLog
4 Added: chameleon-2.13.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.21 dev-python/chameleon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/chameleon/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 2 Sep 2013 06:54:21 -0000 1.20
24 +++ ChangeLog 28 Oct 2013 07:58:15 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/chameleon
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/ChangeLog,v 1.20 2013/09/02 06:54:21 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/ChangeLog,v 1.21 2013/10/28 07:58:15 patrick Exp $
30 +
31 +*chameleon-2.13 (28 Oct 2013)
32 +
33 + 28 Oct 2013; Patrick Lauer <patrick@g.o> +chameleon-2.13.ebuild:
34 + Bump
35
36 *chameleon-2.12 (02 Sep 2013)
37
38
39
40
41 1.1 dev-python/chameleon/chameleon-2.13.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/chameleon-2.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/chameleon-2.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: chameleon-2.13.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.13.ebuild,v 1.1 2013/10/28 07:58:15 patrick Exp $
51
52 EAPI=5
53
54 # py2.6 requires ordereddict that's not packaged for Gentoo
55 PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy2_0 )
56
57 inherit distutils-r1
58
59 MY_PN="Chameleon"
60 MY_P="${MY_PN}-${PV}"
61
62 DESCRIPTION="Fast HTML/XML template compiler for Python"
63 HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
64 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
65
66 LICENSE="repoze"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="doc test"
70
71 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
72 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
73 RDEPEND=""
74
75 S="${WORKDIR}/${MY_P}"
76
77 python_compile_all() {
78 use doc && emake html
79 }
80
81 python_test() {
82 esetup.py test
83 }
84
85 python_install_all() {
86 use doc && local HTML_DOCS=( _build/html/{[a-z]*,_static} )
87
88 distutils-r1_python_install_all
89 }