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/webpy: webpy-0.34.ebuild ChangeLog
Date: Thu, 24 Jun 2010 18:10:47
Message-Id: 20100624181043.6F55B2CF4C@corvid.gentoo.org
1 arfrever 10/06/24 18:10:43
2
3 Modified: webpy-0.34.ebuild ChangeLog
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/webpy/webpy-0.34.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/webpy-0.34.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/webpy-0.34.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/webpy-0.34.ebuild?r1=1.1&r2=1.2
14
15 Index: webpy-0.34.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/webpy/webpy-0.34.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- webpy-0.34.ebuild 25 May 2010 10:28:24 -0000 1.1
22 +++ webpy-0.34.ebuild 24 Jun 2010 18:10:43 -0000 1.2
23 @@ -1,13 +1,18 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/webpy-0.34.ebuild,v 1.1 2010/05/25 10:28:24 djc Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/webpy-0.34.ebuild,v 1.2 2010/06/24 18:10:43 arfrever Exp $
28 +
29 +EAPI="3"
30 +PYTHON_DEPEND="2"
31 +SUPPORT_PYTHON_ABIS="1"
32 +RESTRICT_PYTHON_ABIS="3.*"
33
34 inherit distutils
35
36 MY_PN="web.py"
37
38 -DESCRIPTION="A small and simple web framework for python"
39 -HOMEPAGE="http://www.webpy.org"
40 +DESCRIPTION="A small and simple web framework for Python"
41 +HOMEPAGE="http://www.webpy.org http://pypi.python.org/pypi/web.py"
42 SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
43
44 LICENSE="public-domain"
45 @@ -15,19 +20,22 @@
46 KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
47 IUSE=""
48
49 -DEPEND=">=dev-lang/python-2.3"
50 -RDEPEND="${DEPEND}"
51 +DEPEND=""
52 +RDEPEND=""
53
54 S="${WORKDIR}/web.py-${PV}"
55 +
56 PYTHON_MODNAME="web"
57
58 src_test() {
59 - TESTS="db template net http utils"
60 -
61 - cd "${S}"
62 -
63 - for TEST in ${TESTS}
64 - do
65 - ${python} web/${TEST}.py || die "Doctest in web/${TEST}.py failed!"
66 - done
67 + testing() {
68 + local return_status="0" test tests="db http net template utils"
69 + for test in ${tests}; do
70 + echo "Running doctests in ${test}.py..."
71 + "$(PYTHON)" web/${test}.py || return_status="$?"
72 + done
73 +
74 + return "${return_status}"
75 + }
76 + python_execute_function testing
77 }
78
79
80
81 1.16 dev-python/webpy/ChangeLog
82
83 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/ChangeLog?rev=1.16&view=markup
84 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/ChangeLog?rev=1.16&content-type=text/plain
85 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/ChangeLog?r1=1.15&r2=1.16
86
87 Index: ChangeLog
88 ===================================================================
89 RCS file: /var/cvsroot/gentoo-x86/dev-python/webpy/ChangeLog,v
90 retrieving revision 1.15
91 retrieving revision 1.16
92 diff -u -r1.15 -r1.16
93 --- ChangeLog 1 Jun 2010 08:57:40 -0000 1.15
94 +++ ChangeLog 24 Jun 2010 18:10:43 -0000 1.16
95 @@ -1,6 +1,10 @@
96 # ChangeLog for dev-python/webpy
97 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
98 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/ChangeLog,v 1.15 2010/06/01 08:57:40 phajdan.jr Exp $
99 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/ChangeLog,v 1.16 2010/06/24 18:10:43 arfrever Exp $
100 +
101 + 24 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
102 + webpy-0.34.ebuild:
103 + Set SUPPORT_PYTHON_ABIS.
104
105 01 Jun 2010; Pawel Hajdan jr <phajdan.jr@g.o> webpy-0.32.ebuild:
106 x86 stable wrt bug #321431