commit: bc1cef9f99c07c68ed0203336bd15eae94536d77 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org> AuthorDate: Fri Apr 1 16:25:20 2016 +0000 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org> CommitDate: Fri Apr 1 16:25:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc1cef9f
dev-python/docopt: added python3_5 Package-Manager: portage-2.2.28 dev-python/docopt/docopt-0.6.2-r1.ebuild | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/docopt/docopt-0.6.2-r1.ebuild b/dev-python/docopt/docopt-0.6.2-r1.ebuild new file mode 100644 index 0000000..8161713 --- /dev/null +++ b/dev-python/docopt/docopt-0.6.2-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Pythonic argument parser, that will make you smile" +HOMEPAGE="https://pypi.python.org/pypi/docopt https://github.com/docopt/docopt" +SRC_URI=" + mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz + https://github.com/docopt/docopt/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" + +# not implemented in this version, git already has it +RESTRICT=test + +python_test() { + esetup.py test +}