diff options
author | 2014-09-30 07:16:56 +0000 | |
---|---|---|
committer | 2014-09-30 07:16:56 +0000 | |
commit | e97b9997959c262046edfa48db1fafbb02e8fb9f (patch) | |
tree | b952abdf2e102ee2022e3c86d2b9255a669599c6 /dev-python/flask-mail/flask-mail-0.9.1.ebuild | |
parent | Version bump, thanks to eroen in bug #486158. As this is a major version bump... (diff) | |
download | gentoo-2-e97b9997959c262046edfa48db1fafbb02e8fb9f.tar.gz gentoo-2-e97b9997959c262046edfa48db1fafbb02e8fb9f.tar.bz2 gentoo-2-e97b9997959c262046edfa48db1fafbb02e8fb9f.zip |
bump; add new dep for tests, tidy
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/flask-mail/flask-mail-0.9.1.ebuild')
-rw-r--r-- | dev-python/flask-mail/flask-mail-0.9.1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/flask-mail/flask-mail-0.9.1.ebuild b/dev-python/flask-mail/flask-mail-0.9.1.ebuild new file mode 100644 index 000000000000..7a74ce436262 --- /dev/null +++ b/dev-python/flask-mail/flask-mail-0.9.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-mail/flask-mail-0.9.1.ebuild,v 1.1 2014/09/30 07:16:56 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +MY_PN="Flask-Mail" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Flask extension for sending email" +HOMEPAGE="http://pythonhosted.org/Flask-Mail/ https://pypi.python.org/pypi/Flask-Mail" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND="dev-python/flask[${PYTHON_USEDEP}] + dev-python/blinker[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + dev-python/speaklater[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy) )" + +S="${WORKDIR}/${MY_P}" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + nosetests || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use doc && HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} |