Gentoo Archives: gentoo-commits

From: "Rob Cakebread (pythonhead)" <pythonhead@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/routes: ChangeLog routes-1.8.ebuild
Date: Fri, 02 May 2008 03:20:53
Message-Id: E1JrlpK-0007kF-EC@stork.gentoo.org
1 pythonhead 08/05/02 03:20:50
2
3 Modified: ChangeLog
4 Added: routes-1.8.ebuild
5 Log:
6 Version bump. Closes bug #203949. Removed tests till new deps are in portage.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.4 dev-python/routes/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/routes/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 4 Jul 2007 20:21:18 -0000 1.3
23 +++ ChangeLog 2 May 2008 03:20:49 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/routes
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/routes/ChangeLog,v 1.3 2007/07/04 20:21:18 lucass Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/routes/ChangeLog,v 1.4 2008/05/02 03:20:49 pythonhead Exp $
30 +
31 +*routes-1.8 (02 May 2008)
32 +
33 + 02 May 2008; Rob Cakebread <pythonhead@g.o> +routes-1.8.ebuild:
34 + Version bump. Closes bug #203949. Removed tests till new deps are in
35 + portage.
36
37 04 Jul 2007; Lukasz Strzygowski <lucass@g.o> routes-1.6.3.ebuild:
38 Removed use_setuptools sed.
39
40
41
42 1.1 dev-python/routes/routes-1.8.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/routes-1.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/routes/routes-1.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: routes-1.8.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/routes/routes-1.8.ebuild,v 1.1 2008/05/02 03:20:49 pythonhead Exp $
52
53 NEED_PYTHON=2.4
54
55 inherit distutils
56
57 KEYWORDS="~amd64 ~x86"
58
59 MY_PN=Routes
60 MY_P=${MY_PN}-${PV}
61
62 DESCRIPTION="A Python re-implementation of the Rails routes system for mapping URL's to Controllers/Actions."
63 HOMEPAGE="http://routes.groovie.org"
64 SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
65 LICENSE="BSD"
66 SLOT="0"
67 IUSE="doc"
68
69 DEPEND="doc? ( dev-python/buildutils dev-python/pudge )
70 dev-python/setuptools"
71 RDEPEND=""
72
73 S="${WORKDIR}/${MY_P}"
74
75 src_compile() {
76 distutils_src_compile
77 if use doc ; then
78 PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
79 fi
80 }
81
82 src_install() {
83 distutils_src_install
84 use doc && dohtml -r docs/html/*
85 }
86
87
88
89
90 --
91 gentoo-commits@l.g.o mailing list