commit: 48aadde8f56a374cac2c5eee0c6ec20504243c48
Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 9 12:04:22 2016 +0000
Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Tue Aug 9 12:04:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48aadde8
dev-python/curtsies: python3_5 added to 0.1.23 (for bpython)
Package-Manager: portage-2.3.0
dev-python/curtsies/curtsies-0.1.23-r1.ebuild | 35 +++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/dev-python/curtsies/curtsies-0.1.23-r1.ebuild
b/dev-python/curtsies/curtsies-0.1.23-r1.ebuild
new file mode 100644
index 0000000..cbf858a
--- /dev/null
+++ b/dev-python/curtsies/curtsies-0.1.23-r1.ebuild
@@ -0,0 +1,35 @@
+# 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="Curses-like terminal wrapper, with colored strings"
+HOMEPAGE="https://github.com/thomasballinger/curtsies"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+ >=dev-python/blessings-1.5[${PYTHON_USEDEP}]
+ >=dev-python/wcwidth-0.1.4[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/pyte[${PYTHON_USEDEP}]
+ )
+"
+
+python_test() {
+ nosetests --verbose tests || die
+}