diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-08-01 22:06:24 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-08-01 22:06:53 +0200 |
commit | 442e60ad267a13a357c5f2daa5db5095db47ac68 (patch) | |
tree | 844c2dd5a0abba6e53ecf6e80bef46842b316066 /dev-python/CommonMark/CommonMark-0.7.3.ebuild | |
parent | dev-python/pyopenssl: Tested on pypy & pypy3 (diff) | |
download | gentoo-442e60ad267a13a357c5f2daa5db5095db47ac68.tar.gz gentoo-442e60ad267a13a357c5f2daa5db5095db47ac68.tar.bz2 gentoo-442e60ad267a13a357c5f2daa5db5095db47ac68.zip |
dev-python/CommonMark: Bump to 0.7.3
Diffstat (limited to 'dev-python/CommonMark/CommonMark-0.7.3.ebuild')
-rw-r--r-- | dev-python/CommonMark/CommonMark-0.7.3.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/CommonMark/CommonMark-0.7.3.ebuild b/dev-python/CommonMark/CommonMark-0.7.3.ebuild new file mode 100644 index 000000000000..95f715545b5d --- /dev/null +++ b/dev-python/CommonMark/CommonMark-0.7.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Python parser for the CommonMark Markdown spec" +HOMEPAGE="https://github.com/rtfd/CommonMark-py" +LICENSE="BSD" + +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +IUSE="" +RDEPEND=" + dev-python/future[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/flake8[${PYTHON_USEDEP}] + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" + +python_test() { + PYTHONIOENCODING='utf8' \ + esetup.py test +} |