Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/paste: paste-1.7.2.ebuild ChangeLog
Date: Thu, 01 Oct 2009 01:55:23
Message-Id: E1MtAt7-0008Ot-Mi@stork.gentoo.org
1 arfrever 09/10/01 01:55:21
2
3 Modified: paste-1.7.2.ebuild ChangeLog
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: 14469-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/paste/paste-1.7.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild?r1=1.1&r2=1.2
14
15 Index: paste-1.7.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- paste-1.7.2.ebuild 26 Apr 2009 09:15:43 -0000 1.1
22 +++ paste-1.7.2.ebuild 1 Oct 2009 01:55:21 -0000 1.2
23 @@ -1,21 +1,22 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild,v 1.1 2009/04/26 09:15:43 patrick Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/paste-1.7.2.ebuild,v 1.2 2009/10/01 01:55:21 arfrever Exp $
28
29 -NEED_PYTHON=2.4
30 +EAPI="2"
31 +SUPPORT_PYTHON_ABIS="1"
32
33 inherit distutils
34
35 -KEYWORDS="~amd64 ~x86"
36 -
37 -MY_PN=Paste
38 -MY_P=${MY_PN}-${PV}
39 +MY_PN="Paste"
40 +MY_P="${MY_PN}-${PV}"
41
42 DESCRIPTION="Tools for using a Web Server Gateway Interface stack"
43 HOMEPAGE="http://pythonpaste.org"
44 SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
45 +
46 LICENSE="MIT"
47 SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 IUSE="doc flup openid"
50
51 RDEPEND="flup? ( dev-python/flup )
52 @@ -23,11 +24,12 @@
53 DEPEND="${RDEPEND}
54 dev-python/setuptools
55 doc? ( dev-python/pudge dev-python/buildutils )"
56 +RESTRICT_PYTHON_ABIS="3.*"
57
58 -S=${WORKDIR}/${MY_P}
59 +S="${WORKDIR}/${MY_P}"
60
61 -src_unpack() {
62 - distutils_src_unpack
63 +src_prepare() {
64 + distutils_src_prepare
65
66 sed -i \
67 -e '/highlighter/d' \
68 @@ -36,15 +38,15 @@
69
70 src_compile() {
71 distutils_src_compile
72 - if use doc ; then
73 - einfo "Generating docs as requested..."
74 - PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
75 + if use doc; then
76 + einfo "Generation of documentation"
77 + PYTHONPATH=. "${python}" setup.py pudge || die "Generation of documentation failed"
78 fi
79 }
80
81 +# src_test() needs py.test but there's no release yet.
82 +
83 src_install() {
84 distutils_src_install
85 use doc && dohtml -r docs/html/*
86 }
87 -
88 -# src_test() needs py.test but there's no release yet
89
90
91
92 1.6 dev-python/paste/ChangeLog
93
94 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/ChangeLog?rev=1.6&view=markup
95 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/ChangeLog?rev=1.6&content-type=text/plain
96 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paste/ChangeLog?r1=1.5&r2=1.6
97
98 Index: ChangeLog
99 ===================================================================
100 RCS file: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v
101 retrieving revision 1.5
102 retrieving revision 1.6
103 diff -u -r1.5 -r1.6
104 --- ChangeLog 26 Apr 2009 09:15:43 -0000 1.5
105 +++ ChangeLog 1 Oct 2009 01:55:21 -0000 1.6
106 @@ -1,6 +1,10 @@
107 # ChangeLog for dev-python/paste
108 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
109 -# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v 1.5 2009/04/26 09:15:43 patrick Exp $
110 +# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v 1.6 2009/10/01 01:55:21 arfrever Exp $
111 +
112 + 01 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
113 + paste-1.7.2.ebuild:
114 + Set SUPPORT_PYTHON_ABIS.
115
116 *paste-1.7.2 (26 Apr 2009)