commit: 421f4e1472e8edbe6ace0433a5f44bcc066eea05 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org> AuthorDate: Tue Oct 11 18:18:09 2016 +0000 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org> CommitDate: Tue Oct 11 18:18:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421f4e14
dev-python/turbolift: bup Package-Manager: portage-2.3.0 dev-python/turbolift/Manifest | 1 + dev-python/turbolift/turbolift-2.1.3.ebuild | 34 +++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/dev-python/turbolift/Manifest b/dev-python/turbolift/Manifest index 186a256..63ac5b6 100644 --- a/dev-python/turbolift/Manifest +++ b/dev-python/turbolift/Manifest @@ -1 +1,2 @@ DIST turbolift-2.0.5.tar.gz 47316 SHA256 7ea374122855949481427201327f08198a5b164c59057e7f07f9812b9d0c5e0d SHA512 42b89d4dc1a4699bc4d43863f0d9faeb5cd1442222a7d93a008a8d335bee25112e16c2e0a05d05442e53a5e4e4f7a7012b420bd49d8d0e5668fe1b487b825834 WHIRLPOOL 9199fbdc62d15bd18227cc5deb84870f01ef8569be1f491292aa5c5c6b54afbdc5eedbae23a8eeb02f8bf92ca2694ec649417ea61f13a0fc2762a0790d24b90b +DIST turbolift-2.1.3.tar.gz 49672 SHA256 bd7cffa0bc6bd6392370969e681685fca9d1b4db587a3dcf02e8b5be61449360 SHA512 9132f25cc965f68aba022f51d2f401dc706ffd775a504872f4706b4a59a7c99fd6ab2c41c5909533f08fd3fc81b2fcca5487fd6568ba43c196d35d1de3ccb703 WHIRLPOOL 35e7a6a4d34c305cdf149fb6a6c7f705ef48bcaa8cd3e671a6b357ba677d0e26126abe0ed4d186278cdff9ba9e0d1d9ec474e2b810fc24329719caab7f0239ff diff --git a/dev-python/turbolift/turbolift-2.1.3.ebuild b/dev-python/turbolift/turbolift-2.1.3.ebuild new file mode 100644 index 00000000..b5ce60f --- /dev/null +++ b/dev-python/turbolift/turbolift-2.1.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) + +# tests are not distributed with the release tarball +RESTRICT="test" + +inherit distutils-r1 + +DESCRIPTION="Openstack Swift sync/backup utility" +HOMEPAGE="https://github.com/cloudnull/turbolift/wiki" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools + test? ( + >=dev-python/mock-1.0[${PYTHON_USEDEP}] + dev-python/unittest2[${PYTHON_USEDEP}] + )" + +RDEPEND=">=dev-python/prettytable-0.7.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.2.0[${PYTHON_USEDEP}] + >=dev-python/cloudlib-0.5.0[${PYTHON_USEDEP}]" + +python_test() { + ${PYTHON} -m unit discover turbolift/tests || die "failed testsuite" +}