diff options
author | Patrick Lauer <patrick@gentoo.org> | 2016-07-17 17:34:06 +0200 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2016-07-17 17:44:30 +0200 |
commit | 1f7c92f6b95f2dcbe7531a929739ab617eb9e4d2 (patch) | |
tree | b36a64a017d5a40e66dc450607b5596ec5176b78 /dev-python/bleach/bleach-1.4.3.ebuild | |
parent | dev-python/bcrypt: Bump (diff) | |
download | gentoo-1f7c92f6b95f2dcbe7531a929739ab617eb9e4d2.tar.gz gentoo-1f7c92f6b95f2dcbe7531a929739ab617eb9e4d2.tar.bz2 gentoo-1f7c92f6b95f2dcbe7531a929739ab617eb9e4d2.zip |
dev-python/bleach: Bump
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-python/bleach/bleach-1.4.3.ebuild')
-rw-r--r-- | dev-python/bleach/bleach-1.4.3.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/bleach/bleach-1.4.3.ebuild b/dev-python/bleach/bleach-1.4.3.ebuild new file mode 100644 index 000000000000..9d4f2dc120f1 --- /dev/null +++ b/dev-python/bleach/bleach-1.4.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy ) + +inherit distutils-r1 + +DESCRIPTION="an easy whitelist-based HTML-sanitizing tool" +HOMEPAGE="https://github.com/jsocol/bleach https://pypi.python.org/pypi/bleach" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/html5lib-0.999[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( >=dev-python/nose-1.3[${PYTHON_USEDEP}] ) +" + +python_test() { + esetup.py test +} |