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/webob: webob-1.2.3.ebuild ChangeLog webob-1.2_rc1.ebuild
Date: Wed, 31 Oct 2012 06:58:54
Message-Id: 20121031065832.EEA3421600@flycatcher.gentoo.org
1 patrick 12/10/31 06:58:32
2
3 Modified: ChangeLog
4 Added: webob-1.2.3.ebuild
5 Removed: webob-1.2_rc1.ebuild
6 Log:
7 Bump
8
9 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.59 dev-python/webob/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?rev=1.59&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?rev=1.59&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?r1=1.58&r2=1.59
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v
21 retrieving revision 1.58
22 retrieving revision 1.59
23 diff -u -r1.58 -r1.59
24 --- ChangeLog 13 Oct 2012 18:52:07 -0000 1.58
25 +++ ChangeLog 31 Oct 2012 06:58:32 -0000 1.59
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/webob
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v 1.58 2012/10/13 18:52:07 armin76 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v 1.59 2012/10/31 06:58:32 patrick Exp $
31 +
32 +*webob-1.2.3 (31 Oct 2012)
33 +
34 + 31 Oct 2012; Patrick Lauer <patrick@g.o> +webob-1.2.3.ebuild,
35 + -webob-1.2_rc1.ebuild:
36 + Bump
37
38 13 Oct 2012; Raúl Porcel <armin76@g.o> webob-1.0.7.ebuild,
39 webob-1.1.ebuild, webob-1.2_rc1.ebuild, webob-1.2.2.ebuild:
40
41
42
43 1.1 dev-python/webob/webob-1.2.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.2.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.2.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: webob-1.2.3.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/webob/webob-1.2.3.ebuild,v 1.1 2012/10/31 06:58:32 patrick Exp $
53
54 EAPI=4
55
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="2.5 3.1"
58 DISTUTILS_SRC_TEST=nosetests
59
60 inherit distutils
61
62 MY_PN=WebOb
63 MY_P=${MY_PN}-${PV}
64
65 DESCRIPTION="WSGI request and response object"
66 HOMEPAGE="http://webob.org/ http://pypi.python.org/pypi/WebOb"
67 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
72 IUSE="doc"
73
74 DEPEND="app-arch/unzip
75 dev-python/setuptools
76 doc? ( dev-python/sphinx )"
77 RDEPEND=""
78
79 S=${WORKDIR}/${MY_P}
80
81 src_compile() {
82 distutils_src_compile
83
84 if use doc; then
85 "$(PYTHON -f)" setup.py build_sphinx || die
86 fi
87 }
88
89 src_install() {
90 distutils_src_install
91
92 if use doc; then
93 dohtml -r build/sphinx/html/
94 fi
95 }