From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C9E3B1395E2 for ; Sun, 6 Nov 2016 11:25:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E3DFE0AAA; Sun, 6 Nov 2016 11:25:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA4D8E0AA9 for ; Sun, 6 Nov 2016 11:25:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E96B93416C3 for ; Sun, 6 Nov 2016 11:25:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D3FD24B0 for ; Sun, 6 Nov 2016 11:25:00 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1478431428.ffed15e1cc892d2479583aff9414388a71bea040.dev-zero@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-security/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-security/flask-security-1.7.5-r1.ebuild X-VCS-Directories: dev-python/flask-security/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: ffed15e1cc892d2479583aff9414388a71bea040 X-VCS-Branch: master Date: Sun, 6 Nov 2016 11:25:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: dfdef576-e0c9-4c0a-b149-d864a1456b31 X-Archives-Hash: 5b433e85f41fd3a6b44250d82779d86d commit: ffed15e1cc892d2479583aff9414388a71bea040 Author: Tiziano Müller gentoo org> AuthorDate: Tue Sep 13 13:02:13 2016 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Sun Nov 6 11:23:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffed15e1 dev-python/flask-security: rev-bump for EAPI 6 bump and py-3.5 support Package-Manager: portage-2.3.0 .../flask-security/flask-security-1.7.5-r1.ebuild | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/dev-python/flask-security/flask-security-1.7.5-r1.ebuild b/dev-python/flask-security/flask-security-1.7.5-r1.ebuild new file mode 100644 index 00000000..09b5e6b --- /dev/null +++ b/dev-python/flask-security/flask-security-1.7.5-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +MY_PN="Flask-Security" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Simple security for Flask apps" +HOMEPAGE="http://pythonhosted.org/Flask-Security/ https://pypi.python.org/pypi/Flask-Security" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +# tests are foobar +RESTRICT="test" + +RDEPEND=">=dev-python/flask-0.9[${PYTHON_USEDEP}] + >=dev-python/itsdangerous-0.17[${PYTHON_USEDEP}] + >=dev-python/passlib-1.6.1[${PYTHON_USEDEP}] + >=dev-python/flask-login-0.1.3[${PYTHON_USEDEP}] + >=dev-python/flask-mail-0.7.3[${PYTHON_USEDEP}] + >=dev-python/flask-wtf-0.8[${PYTHON_USEDEP}] + >=dev-python/flask-principal-0.3.3[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] + dev-python/flask-mongoengine[${PYTHON_USEDEP}] + dev-python/bcrypt[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/flask-peewee[${PYTHON_USEDEP}]' 'python2*') + )" + +S="${WORKDIR}/${MY_P}" + +python_test() { + nosetests -v || die "Testing failed with ${EPYTHON}" +}