commit: a56d94f44c47db3ac46a45ba65acc9853720dc39
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 12:40:19 2016 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 12:40:19 2016 +0000
URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=a56d94f4
dev-python/pylink-flask: initial commit
dev-python/pylint-flask/Manifest | 1 +
dev-python/pylint-flask/pylint-flask-0.3.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-python/pylint-flask/Manifest b/dev-python/pylint-flask/Manifest
new file mode 100644
index 0000000..8a8142a
--- /dev/null
+++ b/dev-python/pylint-flask/Manifest
@@ -0,0 +1 @@
+DIST pylint-flask-0.3.tar.gz 3181 SHA256
7b0db2e98d34c3760664ab26464cd293d3736ee50999ad5f8313883c80c14d2f SHA512
165f07873fc4b7adcab8686607757fd828a10cad3c84bfd0fe0fc0edd2da7094130c1235f16b8bc80d9226f30fe6ca5f6dfb8e86efa4e6b9c160d5ff8bdf4d6c
WHIRLPOOL
5a0d2385fcd545bb7c58041987e5ffab52ed18325fe7e7e54e5aed89c23045ab30981351e13ef673c50f6c402164deb75ecb740cbe0cdd9add214a327e90beb1
diff --git a/dev-python/pylint-flask/pylint-flask-0.3.ebuild
b/dev-python/pylint-flask/pylint-flask-0.3.ebuild
new file mode 100644
index 0000000..417ffd6
--- /dev/null
+++ b/dev-python/pylint-flask/pylint-flask-0.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pylint plugin for improving code analysis when editing code using
Flask."
+HOMEPAGE="https://pypi.python.org/pypi/pylint-flask"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPLv2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/pylint[${PYTHON_USEDEP}]
+ dev-python/astroid[${PYTHON_USEDEP}]
+ dev-python/logilab-common[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ test? (
+ dev-python/flask[${PYTHON_USEDEP}]
+ dev-python/flask-wtf[${PYTHON_USEDEP}]
+ dev-python/flask-bcrypt[${PYTHON_USEDEP}]
+ dev-python/flask-admin[${PYTHON_USEDEP}]
+ dev-python/flask-wtf[${PYTHON_USEDEP}]
+ )"
+
+python_test() {
+ ${PYTHON} "${S}/test/test_func.py" || die "Testing failed with
${EPYTHON}"
+}