Added flexget dependencies

This commit is contained in:
layman
2017-04-23 18:09:06 +02:00
parent bd8e1053e8
commit d41a9a6c0e
31 changed files with 654 additions and 84 deletions
+2
View File
@@ -0,0 +1,2 @@
DIST flask-restplus-0.8.6.tar.gz 100249 SHA256 5f10e1391e99216f74cc5053c421bfed3ccdc2ef16569bf4a31c01bfebff74c6 SHA512 b09a59c4b06d594103159972304a46decd36385a683615c269fe86241b149f821ef8f66700950d4f3de02b054c05135a46ce0cb3ab2043ff6b9b9400ac538104 WHIRLPOOL 1b56a277e0bf5aa4e4d1bd6fc8370dd64d1ad696dda4d597d5efc35525e1e382b2f7f34d65710a3048498f26795157b69171cb66e9eef00c267657f735d25d5f
EBUILD flask-restplus-0.8.6.ebuild 1212 SHA256 54ef495ed3a9b7368ff4c33ed2d91c1b60ffa957fc9714dd07bfd1ebe721ce6b SHA512 b160dc1a21504eb631793a286cbf573e04fe8cc8e07f84981d7b0d7cc1a6078161b53879f64e3e4051883e5a899f223fc1385586ed8a7d39425df316fc1a29df WHIRLPOOL 4b88a25b7ff8ca6b7193745fad3b0d59c745f9d04d9f5af58be25028ce847020eb75f061d8c0a21f1983efee024776b069d28033ae23a442ae8e5d46a1d13320
@@ -0,0 +1,46 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit distutils-r1
DESCRIPTION="Fully featured framework for fast, easy and documented API development with Flask"
HOMEPAGE="http://flask-restplus.readthedocs.org/ https://github.com/noirbizarre/flask-restplus/"
SRC_URI="https://github.com/noirbizarre/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc examples test"
RDEPEND="
>=dev-python/aniso8601-0.82[${PYTHON_USEDEP}]
>=dev-python/flask-0.8[${PYTHON_USEDEP}]
>=dev-python/six-1.3.0[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]
>=dev-python/flask-restful-0.3.3[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
dev-python/sphinx[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/rednose[${PYTHON_USEDEP}]
dev-python/blinker[${PYTHON_USEDEP}]
dev-python/tzlocal[${PYTHON_USEDEP}]
)
"
src_prepare() {
use test || rm -rf "${S}"/tests
distutils-r1_src_prepare
}
python_test() {
nosetests -v || die "Tests fail with ${EPYTHON}"
rm -rf "${BUILD_DIR}"/../tests/ || die
}