Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webob/
Date: Tue, 03 Nov 2015 11:38:11
Message-Id: 1446550680.20319f2c5ec3f6f8b4f8b2148b1f1680decd3993.jlec@gentoo
1 commit: 20319f2c5ec3f6f8b4f8b2148b1f1680decd3993
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 3 11:22:45 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 3 11:38:00 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20319f2c
7
8 dev-python/webob: Version Bump
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/webob/Manifest | 1 +
14 dev-python/webob/webob-1.5.1.ebuild | 44 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/dev-python/webob/Manifest b/dev-python/webob/Manifest
18 index ca1958f..53cdb8d 100644
19 --- a/dev-python/webob/Manifest
20 +++ b/dev-python/webob/Manifest
21 @@ -1,3 +1,4 @@
22 DIST WebOb-1.4.1.tar.gz 671495 SHA256 12f8b98390befc47336d2c0e5bad9cc48609d808eabb3f8675dc1027a3a9e9db SHA512 71be0389018289884158c5f3b99d1e1185bd29ab975ea59008fd71bf1188d25130e1852422dcedf7ffe3303d87caf02d62a143229b9ae196dd62f64deb7f7328 WHIRLPOOL d2803552592813c4b5ea4291e9a3aac6aa26397b903a8372f8e1fd601d46fb5f7105dcfd42e14de974a352e75945bf61945e0f36928d6a3fd8afa8bdd195d35b
23 DIST WebOb-1.4.tar.gz 633302 SHA256 0819838204e2a6823e42bf2227898fdf3f306f7619bf328e25855a0d1ca20399 SHA512 0cf1a21b7d863c355e445f0e9f898ffb1c4c39099532a86d830c1be5d84efc0c6f3e8151a283cfd1cb5bebcb1fe78a2b6b269cbc130863679a017565a2539a37 WHIRLPOOL abfc696b7f50a74edd3d84099365f802f5be0eddf56a1c128f6e026c30bdeddc1b58c6bb45d4281ee4fb3d7937888d8065b01f93a363c82cd9cd1834eb2378da
24 DIST WebOb-1.5.0.tar.gz 186394 SHA256 8e90cca008c0189fe64d06281d50d9510c1dde4147bdf4bc81b666020ce31350 SHA512 4d5a4f58eb3f96d4b563c0a8d8387f30ad323d11c3a913ba69504685e7baa870f232d55e6d8b403e3f6b2153c3c7f37a694618bf0e85d04115c240c5fa2b93b6 WHIRLPOOL f3f6975f84bc64fe941fd3d3c5cd065cfea8e59b2f0481e31c7bf5145934d038420ccb93df918e5e729607ee75bb77d3a8142c4ff4ac60b2be14212061a1fa3a
25 +DIST WebOb-1.5.1.tar.gz 202821 SHA256 d8a9a153577f74b275dfd441ee2de4910eb2c1228d94186285684327e3877009 SHA512 aba45ff622a572a3bda7cf33ce5988745b3831aea2ed7f0502688055f96c16cf5de828039439218611034ad49dea4e4a9c2ec43b8dbc97be61b7abc33a15589c WHIRLPOOL 814e11b257f82a48f9ed8ff1e1ecb37ab0648c7f67446aa57094da671f0265fadd7b04e9e69ed1ecbfbbc1925804ef7f563f8079b82bea04d8a06853482960b7
26
27 diff --git a/dev-python/webob/webob-1.5.1.ebuild b/dev-python/webob/webob-1.5.1.ebuild
28 new file mode 100644
29 index 0000000..6951a17
30 --- /dev/null
31 +++ b/dev-python/webob/webob-1.5.1.ebuild
32 @@ -0,0 +1,44 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
40 +
41 +inherit distutils-r1
42 +
43 +MY_PN=WebOb
44 +MY_P=${MY_PN}-${PV}
45 +
46 +DESCRIPTION="WSGI request and response object"
47 +HOMEPAGE="http://webob.org/ https://pypi.python.org/pypi/WebOb"
48 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
53 +IUSE="doc test"
54 +
55 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
56 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
57 + test? ( dev-python/nose[${PYTHON_USEDEP}]
58 + dev-python/coverage[${PYTHON_USEDEP}] )"
59 +RDEPEND=""
60 +
61 +S=${WORKDIR}/${MY_P}
62 +
63 +python_compile_all() {
64 + if use doc; then
65 + "${PYTHON}" setup.py build_sphinx || die
66 + fi
67 +}
68 +
69 +python_test() {
70 + nosetests --verbose -w tests || die "Tests fail with ${EPYTHON}"
71 +}
72 +
73 +python_install_all() {
74 + use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
75 + distutils-r1_python_install_all
76 +}