Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-swiftclient: python-swiftclient-1.9.0.ebuild ChangeLog
Date: Sun, 30 Mar 2014 05:06:34
Message-Id: 20140330050616.85CC920057@flycatcher.gentoo.org
1 prometheanfire 14/03/30 05:06:16
2
3 Modified: ChangeLog
4 Added: python-swiftclient-1.9.0.ebuild
5 Log:
6 bup
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
9
10 Revision Changes Path
11 1.12 dev-python/python-swiftclient/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-swiftclient/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-swiftclient/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-swiftclient/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-swiftclient/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 19 Mar 2014 23:11:13 -0000 1.11
24 +++ ChangeLog 30 Mar 2014 05:06:16 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/python-swiftclient
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-swiftclient/ChangeLog,v 1.11 2014/03/19 23:11:13 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-swiftclient/ChangeLog,v 1.12 2014/03/30 05:06:16 prometheanfire Exp $
30 +
31 +*python-swiftclient-1.9.0 (30 Mar 2014)
32 +
33 + 30 Mar 2014; Matthew Thode <prometheanfire@g.o>
34 + +python-swiftclient-1.9.0.ebuild:
35 + bup
36
37 19 Mar 2014; Sébastien Fabbro <bicatali@g.o>
38 python-swiftclient-2.0.2.ebuild:
39
40
41
42 1.1 dev-python/python-swiftclient/python-swiftclient-1.9.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-swiftclient/python-swiftclient-1.9.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-swiftclient/python-swiftclient-1.9.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-swiftclient-1.9.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-swiftclient/python-swiftclient-1.9.0.ebuild,v 1.1 2014/03/30 05:06:16 prometheanfire Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python2_7 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Python bindings to the OpenStack Object Storage API"
59 HOMEPAGE="https://launchpad.net/python-swiftclient"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="Apache-2.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc test"
66
67 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
68 >=dev-python/pbr-0.5[${PYTHON_USEDEP}]
69 test? ( ~dev-python/pep8-1.4.5[${PYTHON_USEDEP}]
70 >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
71 >=dev-python/mock-1.0[${PYTHON_USEDEP}]
72 >=dev-python/python-keystoneclient-0.4.2[${PYTHON_USEDEP}]
73 >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
74 <dev-python/sphinx-1.2[${PYTHON_USEDEP}]
75 >=dev-python/testrepository-0.0.17[${PYTHON_USEDEP}]
76 >=dev-python/testtools-0.9.32[${PYTHON_USEDEP}]
77 >=dev-python/hacking-0.8.0[${PYTHON_USEDEP}]
78 <dev-python/hacking-0.9[${PYTHON_USEDEP}]
79 doc? ( >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] )
80 )"
81 RDEPEND=">=dev-python/simplejson-2.0.9[${PYTHON_USEDEP}]
82 >=dev-python/d2to1-0.2.10[${PYTHON_USEDEP}]
83 <dev-python/d2to1-0.3[${PYTHON_USEDEP}]"
84
85 python_prepare() {
86 sed -i '/discover/d' "${S}/test-requirements.txt" || die "sed failed"
87 distutils-r1_python_prepare
88 }
89
90 python_compile_all() {
91 use doc && emake -C doc html
92 }
93
94 python_test() {
95 testr init
96 testr run || die "tests failed under python2_7"
97 flake8 tests && einfo "run of tests folder by flake8 passed"
98 flake8 bin/swift && einfo "run of ./bin/swift by flake8 passed"
99 }
100
101 python_install_all() {
102 use doc && local HTML_DOCS=( ../${P}-python2_7/doc/build/html/. )
103 distutils-r1_python_install_all
104 }