From 402ff1f1c0707f47b3d72fdd6bc5364444d75efa Mon Sep 17 00:00:00 2001 From: Andrey Grozin Date: Sun, 11 Sep 2016 21:58:06 +0700 Subject: [PATCH] dev-python/sh: python3_5 added Package-Manager: portage-2.3.0 --- dev-python/sh/sh-1.11-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 dev-python/sh/sh-1.11-r1.ebuild diff --git a/dev-python/sh/sh-1.11-r1.ebuild b/dev-python/sh/sh-1.11-r1.ebuild new file mode 100644 index 0000000000000..d7887107d7871 --- /dev/null +++ b/dev-python/sh/sh-1.11-r1.ebuild @@ -0,0 +1,26 @@ +# 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="Python subprocess interface" +HOMEPAGE="https://github.com/amoffat/sh" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + ${PYTHON} test.py || die +}