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/mako: ChangeLog mako-0.2.4.ebuild
Date: Sun, 26 Apr 2009 09:08:36
Message-Id: E1Ly0Li-0006Lg-3u@stork.gentoo.org
1 patrick 09/04/26 09:08:34
2
3 Modified: ChangeLog
4 Added: mako-0.2.4.ebuild
5 Log:
6 Bump to 0.2.4, dep for bug #260168
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 dev-python/mako/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mako/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mako/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mako/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/mako/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 14 Jul 2008 03:27:16 -0000 1.4
23 +++ ChangeLog 26 Apr 2009 09:08:34 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/mako
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mako/ChangeLog,v 1.4 2008/07/14 03:27:16 antarus Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mako/ChangeLog,v 1.5 2009/04/26 09:08:34 patrick Exp $
30 +
31 +*mako-0.2.4 (26 Apr 2009)
32 +
33 + 26 Apr 2009; Patrick Lauer <patrick@g.o> +mako-0.2.4.ebuild:
34 + Bump to 0.2.4, dep for bug #260168
35
36 *mako-0.1.10-r1 (13 Jul 2008)
37
38
39
40
41 1.1 dev-python/mako/mako-0.2.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mako/mako-0.2.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mako/mako-0.2.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mako-0.2.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/mako/mako-0.2.4.ebuild,v 1.1 2009/04/26 09:08:34 patrick Exp $
51
52 inherit distutils
53
54 DESCRIPTION="A python templating language."
55 HOMEPAGE="http://www.makotemplates.org/"
56 MY_P="Mako-${PV}"
57 SRC_URI="http://www.makotemplates.org/downloads/${MY_P}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~x86 ~amd64"
62 IUSE="doc test"
63
64 DEPEND="dev-python/setuptools"
65 RDEPEND=""
66 S="${WORKDIR}/${MY_P}"
67
68 src_install() {
69 distutils_src_install
70 use doc && dohtml doc/*html doc/*css
71 }
72
73 src_test() {
74 PYTHONPATH="./lib" "${python}" test/alltests.py || die "tests failed"
75 }