commit: fca48528ceee64d7cb54dcbed30e73716737500e
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 2 11:21:19 2016 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 11:21:19 2016 +0000
URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=fca48528
dev-python/flask-webpack: initial commit
dev-python/flask-webpack/Manifest | 1 +
.../flask-webpack/flask-webpack-0.1.0.ebuild | 28 ++++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/dev-python/flask-webpack/Manifest
b/dev-python/flask-webpack/Manifest
new file mode 100644
index 0000000..f375cb4
--- /dev/null
+++ b/dev-python/flask-webpack/Manifest
@@ -0,0 +1 @@
+DIST flask-webpack-0.1.0.tar.gz 91035 SHA256
49a3483cc8c7f1875954e78682ce5f83b817016bacc2fff79b5b07cd7e777d51 SHA512
3213dc082cc28d8cc902336ef2ee34dc1d9d2b05ffde07b6b1588f45d80f78dce30676dc7e9950e46a04eb6ea6e71f010258a0e32661733b0454d9f60414ac3c
WHIRLPOOL
d2082522137d9798c7c78e5fa8fbc52bc0c54e923fa7e92548cf8026fbe3e493c2fce7f680369de6779f07a012ab74a9abdd999736229c49ede9ef799c57aff3
diff --git a/dev-python/flask-webpack/flask-webpack-0.1.0.ebuild
b/dev-python/flask-webpack/flask-webpack-0.1.0.ebuild
new file mode 100644
index 0000000..89723fa
--- /dev/null
+++ b/dev-python/flask-webpack/flask-webpack-0.1.0.ebuild
@@ -0,0 +1,28 @@
+# 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="Flask extension for managing assets with Webpack."
+HOMEPAGE="https://pypi.python.org/pypi/Flask-Webpack
https://github.com/nickjj/flask-webpack"
+SRC_URI="https://github.com/nickjj/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+# pypi tarball is missing tests
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+ py.test -v flask_webpack/tests/test_app/tests || die "Tests fail with
${EPYTHON}"
+}