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/webpy: webpy-0.37.ebuild ChangeLog
Date: Thu, 28 Jun 2012 07:52:36
Message-Id: 20120628075226.297902004B@flycatcher.gentoo.org
1 patrick 12/06/28 07:52:26
2
3 Modified: ChangeLog
4 Added: webpy-0.37.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 dev-python/webpy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/webpy/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 24 Feb 2012 15:21:11 -0000 1.24
24 +++ ChangeLog 28 Jun 2012 07:52:26 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/webpy
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/ChangeLog,v 1.24 2012/02/24 15:21:11 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/ChangeLog,v 1.25 2012/06/28 07:52:26 patrick Exp $
30 +
31 +*webpy-0.37 (28 Jun 2012)
32 +
33 + 28 Jun 2012; Patrick Lauer <patrick@g.o> +webpy-0.37.ebuild:
34 + Bump
35
36 24 Feb 2012; Pawel Hajdan jr <phajdan.jr@g.o> webpy-0.36.ebuild:
37 x86 stable wrt bug #400341
38 @@ -91,4 +96,3 @@
39
40 19 Jan 2007; <wrobel@g.o> +metadata.xml, +webpy-0.2.ebuild:
41 Added web.py-0.2 to the tree.
42 -
43
44
45
46 1.1 dev-python/webpy/webpy-0.37.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/webpy-0.37.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webpy/webpy-0.37.ebuild?rev=1.1&content-type=text/plain
50
51 Index: webpy-0.37.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/webpy-0.37.ebuild,v 1.1 2012/06/28 07:52:26 patrick Exp $
56
57 EAPI="3"
58 PYTHON_DEPEND="2"
59 SUPPORT_PYTHON_ABIS="1"
60 RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
61
62 inherit distutils
63
64 MY_PN="web.py"
65
66 DESCRIPTION="A small and simple web framework for Python"
67 HOMEPAGE="http://www.webpy.org http://pypi.python.org/pypi/web.py"
68 SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
69
70 LICENSE="public-domain"
71 SLOT="0"
72 KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
73 IUSE=""
74
75 DEPEND=""
76 RDEPEND=""
77
78 S="${WORKDIR}/web.py-${PV}"
79
80 PYTHON_MODNAME="web"
81
82 src_test() {
83 testing() {
84 local return_status="0" test tests="db http net template utils"
85 for test in ${tests}; do
86 echo "Running doctests in ${test}.py..."
87 "$(PYTHON)" web/${test}.py || return_status="$?"
88 done
89
90 return "${return_status}"
91 }
92 python_execute_function testing
93 }