Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/webob: webob-1.2.2.ebuild ChangeLog
Date: Mon, 27 Aug 2012 16:06:32
Message-Id: 20120827160622.2C92620921@flycatcher.gentoo.org
1 floppym 12/08/27 16:06:22
2
3 Modified: webob-1.2.2.ebuild ChangeLog
4 Log:
5 Rebase on 1.2_rc1. Thanks Arfrever.
6
7 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-python/webob/webob-1.2.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.2.2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.2.2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.2.2.ebuild?r1=1.1&r2=1.2
15
16 Index: webob-1.2.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/webob/webob-1.2.2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- webob-1.2.2.ebuild 24 Aug 2012 07:04:49 -0000 1.1
23 +++ webob-1.2.2.ebuild 27 Aug 2012 16:06:22 -0000 1.2
24 @@ -1,17 +1,17 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/webob-1.2.2.ebuild,v 1.1 2012/08/24 07:04:49 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/webob-1.2.2.ebuild,v 1.2 2012/08/27 16:06:22 floppym Exp $
29 +
30 +EAPI=4
31
32 -EAPI="3"
33 -PYTHON_DEPEND="2"
34 SUPPORT_PYTHON_ABIS="1"
35 -RESTRICT_PYTHON_ABIS="2.4 3.*"
36 -DISTUTILS_SRC_TEST="nosetests"
37 +RESTRICT_PYTHON_ABIS="2.5 3.1"
38 +DISTUTILS_SRC_TEST=nosetests
39
40 -inherit distutils eutils
41 +inherit distutils
42
43 -MY_PN="WebOb"
44 -MY_P="${MY_PN}-${PV}"
45 +MY_PN=WebOb
46 +MY_P=${MY_PN}-${PV}
47
48 DESCRIPTION="WSGI request and response object"
49 HOMEPAGE="http://pythonpaste.org/webob/ http://pypi.python.org/pypi/WebOb"
50 @@ -20,22 +20,20 @@
51 LICENSE="MIT"
52 SLOT="0"
53 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
54 -IUSE="doc test"
55 +IUSE="doc"
56
57 DEPEND="app-arch/unzip
58 dev-python/setuptools
59 - doc? ( dev-python/sphinx )
60 - test? ( dev-python/webtest )"
61 + doc? ( dev-python/sphinx )"
62 RDEPEND=""
63
64 -S="${WORKDIR}/${MY_P}"
65 +S=${WORKDIR}/${MY_P}
66
67 src_compile() {
68 distutils_src_compile
69
70 if use doc; then
71 - einfo "Generation of documentation"
72 - "$(PYTHON -f)" setup.py build_sphinx || die "Generation of documentation failed"
73 + "$(PYTHON -f)" setup.py build_sphinx || die
74 fi
75 }
76
77 @@ -43,9 +41,6 @@
78 distutils_src_install
79
80 if use doc; then
81 - pushd build/sphinx/html > /dev/null
82 - insinto /usr/share/doc/${PF}/html
83 - doins -r [a-z]* _static || die "Installation of documentation failed"
84 - popd > /dev/null
85 + dohtml -r build/sphinx/html/
86 fi
87 }
88
89
90
91 1.56 dev-python/webob/ChangeLog
92
93 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?rev=1.56&view=markup
94 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?rev=1.56&content-type=text/plain
95 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?r1=1.55&r2=1.56
96
97 Index: ChangeLog
98 ===================================================================
99 RCS file: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v
100 retrieving revision 1.55
101 retrieving revision 1.56
102 diff -u -r1.55 -r1.56
103 --- ChangeLog 24 Aug 2012 07:04:49 -0000 1.55
104 +++ ChangeLog 27 Aug 2012 16:06:22 -0000 1.56
105 @@ -1,6 +1,9 @@
106 # ChangeLog for dev-python/webob
107 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
108 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v 1.55 2012/08/24 07:04:49 patrick Exp $
109 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v 1.56 2012/08/27 16:06:22 floppym Exp $
110 +
111 + 27 Aug 2012; Mike Gilbert <floppym@g.o> webob-1.2.2.ebuild:
112 + Rebase on 1.2_rc1. Thanks Arfrever.
113
114 *webob-1.2.2 (24 Aug 2012)