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/routes: ChangeLog routes-1.10.3.ebuild
Date: Sun, 26 Apr 2009 09:49:29
Message-Id: E1Ly0zH-0007Sy-Qt@stork.gentoo.org
1 patrick 09/04/26 09:49:27
2
3 Modified: ChangeLog
4 Added: routes-1.10.3.ebuild
5 Log:
6 Bump to 1.10.3, dep for bug #260168
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 dev-python/routes/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/routes/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 2 May 2008 03:20:49 -0000 1.4
23 +++ ChangeLog 26 Apr 2009 09:49:27 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/routes
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/routes/ChangeLog,v 1.4 2008/05/02 03:20:49 pythonhead Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/routes/ChangeLog,v 1.5 2009/04/26 09:49:27 patrick Exp $
30 +
31 +*routes-1.10.3 (26 Apr 2009)
32 +
33 + 26 Apr 2009; Patrick Lauer <patrick@g.o> +routes-1.10.3.ebuild:
34 + Bump to 1.10.3, dep for bug #260168
35
36 *routes-1.8 (02 May 2008)
37
38
39
40
41 1.1 dev-python/routes/routes-1.10.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/routes-1.10.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/routes-1.10.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: routes-1.10.3.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/routes/routes-1.10.3.ebuild,v 1.1 2009/04/26 09:49:27 patrick Exp $
51
52 NEED_PYTHON=2.4
53
54 inherit distutils
55
56 KEYWORDS="~amd64 ~x86"
57
58 MY_PN=Routes
59 MY_P=${MY_PN}-${PV}
60
61 DESCRIPTION="A Python re-implementation of the Rails routes system for mapping URL's to Controllers/Actions."
62 HOMEPAGE="http://routes.groovie.org"
63 SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
64 LICENSE="BSD"
65 SLOT="0"
66 IUSE="doc"
67
68 DEPEND="doc? ( dev-python/buildutils dev-python/pudge )
69 dev-python/setuptools"
70 RDEPEND=""
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_compile() {
75 distutils_src_compile
76 if use doc ; then
77 PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
78 fi
79 }
80
81 src_install() {
82 distutils_src_install
83 use doc && dohtml -r docs/html/*
84 }