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/webtest: webtest-1.2.ebuild ChangeLog webtest-1.0.ebuild
Date: Fri, 04 Sep 2009 09:58:36
Message-Id: E1MjaNT-0001yq-Lx@stork.gentoo.org
1 patrick 09/09/04 15:07:03
2
3 Modified: ChangeLog
4 Added: webtest-1.2.ebuild
5 Removed: webtest-1.0.ebuild
6 Log:
7 Bump to 1.2. Remove 1.0.
8 (Portage version: 2.2_rc40/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-python/webtest/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/webtest/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/webtest/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/webtest/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/webtest/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 15 Feb 2009 14:08:25 -0000 1.2
24 +++ ChangeLog 4 Sep 2009 15:07:03 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/webtest
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webtest/ChangeLog,v 1.2 2009/02/15 14:08:25 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webtest/ChangeLog,v 1.3 2009/09/04 15:07:03 patrick Exp $
30 +
31 +*webtest-1.2 (04 Sep 2009)
32 +
33 + 04 Sep 2009; Patrick Lauer <patrick@g.o> -webtest-1.0.ebuild,
34 + +webtest-1.2.ebuild:
35 + Bump to 1.2. Remove 1.0.
36
37 *webtest-1.1 (15 Feb 2009)
38
39
40
41
42 1.1 dev-python/webtest/webtest-1.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/webtest/webtest-1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/webtest/webtest-1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: webtest-1.2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/webtest/webtest-1.2.ebuild,v 1.1 2009/09/04 15:07:03 patrick Exp $
52
53 inherit distutils
54
55 MY_PN="WebTest"
56 MY_P="${MY_PN}-${PV}"
57
58 DESCRIPTION="Helper to test WSGI applications"
59 HOMEPAGE="http://pythonpaste.org/webtest/"
60 SRC_URI="http://pypi.python.org/packages/source/W/${MY_PN}/${MY_P}.tar.gz"
61 LICENSE="MIT"
62 KEYWORDS="~x86 ~amd64"
63 SLOT="0"
64 IUSE="doc examples"
65 S="${WORKDIR}/${MY_P}"
66 DEPEND="dev-python/setuptools"
67 RDEPEND="|| ( >=dev-python/wsgiref-0.1.2 >=dev-lang/python-2.5.2-r4 )
68 >=dev-python/webob-0.9.2"
69
70 src_install() {
71 distutils_src_install
72
73 use doc && dodoc docs/index.txt
74 if use examples; then
75 insinto /usr/share/doc/${PF}
76 doins -r docs/chipy-presentation
77 fi
78 }