Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/turbolift/
Date: Tue, 11 Oct 2016 18:18:40
Message-Id: 1476209889.421f4e1472e8edbe6ace0433a5f44bcc066eea05.prometheanfire@gentoo
1 commit: 421f4e1472e8edbe6ace0433a5f44bcc066eea05
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 11 18:18:09 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 11 18:18:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421f4e14
7
8 dev-python/turbolift: bup
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/turbolift/Manifest | 1 +
13 dev-python/turbolift/turbolift-2.1.3.ebuild | 34 +++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/turbolift/Manifest b/dev-python/turbolift/Manifest
17 index 186a256..63ac5b6 100644
18 --- a/dev-python/turbolift/Manifest
19 +++ b/dev-python/turbolift/Manifest
20 @@ -1 +1,2 @@
21 DIST turbolift-2.0.5.tar.gz 47316 SHA256 7ea374122855949481427201327f08198a5b164c59057e7f07f9812b9d0c5e0d SHA512 42b89d4dc1a4699bc4d43863f0d9faeb5cd1442222a7d93a008a8d335bee25112e16c2e0a05d05442e53a5e4e4f7a7012b420bd49d8d0e5668fe1b487b825834 WHIRLPOOL 9199fbdc62d15bd18227cc5deb84870f01ef8569be1f491292aa5c5c6b54afbdc5eedbae23a8eeb02f8bf92ca2694ec649417ea61f13a0fc2762a0790d24b90b
22 +DIST turbolift-2.1.3.tar.gz 49672 SHA256 bd7cffa0bc6bd6392370969e681685fca9d1b4db587a3dcf02e8b5be61449360 SHA512 9132f25cc965f68aba022f51d2f401dc706ffd775a504872f4706b4a59a7c99fd6ab2c41c5909533f08fd3fc81b2fcca5487fd6568ba43c196d35d1de3ccb703 WHIRLPOOL 35e7a6a4d34c305cdf149fb6a6c7f705ef48bcaa8cd3e671a6b357ba677d0e26126abe0ed4d186278cdff9ba9e0d1d9ec474e2b810fc24329719caab7f0239ff
23
24 diff --git a/dev-python/turbolift/turbolift-2.1.3.ebuild b/dev-python/turbolift/turbolift-2.1.3.ebuild
25 new file mode 100644
26 index 00000000..b5ce60f
27 --- /dev/null
28 +++ b/dev-python/turbolift/turbolift-2.1.3.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python2_7 )
36 +
37 +# tests are not distributed with the release tarball
38 +RESTRICT="test"
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Openstack Swift sync/backup utility"
43 +HOMEPAGE="https://github.com/cloudnull/turbolift/wiki"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="GPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="test"
50 +
51 +DEPEND="dev-python/setuptools
52 + test? (
53 + >=dev-python/mock-1.0[${PYTHON_USEDEP}]
54 + dev-python/unittest2[${PYTHON_USEDEP}]
55 + )"
56 +
57 +RDEPEND=">=dev-python/prettytable-0.7.0[${PYTHON_USEDEP}]
58 + >=dev-python/requests-2.2.0[${PYTHON_USEDEP}]
59 + >=dev-python/cloudlib-0.5.0[${PYTHON_USEDEP}]"
60 +
61 +python_test() {
62 + ${PYTHON} -m unit discover turbolift/tests || die "failed testsuite"
63 +}