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/paste: ChangeLog paste-1.7.2.ebuild
Date: Sun, 26 Apr 2009 09:15:47
Message-Id: E1Ly0Sd-0006Y8-W3@stork.gentoo.org
1 patrick 09/04/26 09:15:43
2
3 Modified: ChangeLog
4 Added: paste-1.7.2.ebuild
5 Log:
6 Bump to 1.7.2, dep for bug #260168
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 dev-python/paste/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 6 Aug 2008 20:03:16 -0000 1.4
23 +++ ChangeLog 26 Apr 2009 09:15:43 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/paste
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v 1.4 2008/08/06 20:03:16 neurogeek Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v 1.5 2009/04/26 09:15:43 patrick Exp $
30 +
31 +*paste-1.7.2 (26 Apr 2009)
32 +
33 + 26 Apr 2009; Patrick Lauer <patrick@g.o> +paste-1.7.2.ebuild:
34 + Bump to 1.7.2, dep for bug #260168
35
36 06 Aug 2008; Jesus Rivero <neurogeek@g.o> metadata.xml:
37 add GLEP 56 USE flag desc from use.local.desc
38
39
40
41 1.1 dev-python/paste/paste-1.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: paste-1.7.2.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/paste/paste-1.7.2.ebuild,v 1.1 2009/04/26 09:15:43 patrick Exp $
51
52 NEED_PYTHON=2.4
53
54 inherit distutils
55
56 KEYWORDS="~amd64 ~x86"
57
58 MY_PN=Paste
59 MY_P=${MY_PN}-${PV}
60
61 DESCRIPTION="Tools for using a Web Server Gateway Interface stack"
62 HOMEPAGE="http://pythonpaste.org"
63 SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
64 LICENSE="MIT"
65 SLOT="0"
66 IUSE="doc flup openid"
67
68 RDEPEND="flup? ( dev-python/flup )
69 openid? ( dev-python/python-openid )"
70 DEPEND="${RDEPEND}
71 dev-python/setuptools
72 doc? ( dev-python/pudge dev-python/buildutils )"
73
74 S=${WORKDIR}/${MY_P}
75
76 src_unpack() {
77 distutils_src_unpack
78
79 sed -i \
80 -e '/highlighter/d' \
81 setup.cfg || die "sed failed"
82 }
83
84 src_compile() {
85 distutils_src_compile
86 if use doc ; then
87 einfo "Generating docs as requested..."
88 PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
89 fi
90 }
91
92 src_install() {
93 distutils_src_install
94 use doc && dohtml -r docs/html/*
95 }
96
97 # src_test() needs py.test but there's no release yet