From ecdac123787b96ce6649f0f91da12ea6458cc2b1 Mon Sep 17 00:00:00 2001 From: Palica Date: Tue, 23 Jun 2020 22:35:08 +0200 Subject: Updating liguros repo --- dev-python/python-termstyle/Manifest | 1 + .../python-termstyle/files/tests-unicode.patch | 10 ++++++ dev-python/python-termstyle/metadata.xml | 9 ++++++ .../python-termstyle-0.1.10.ebuild | 36 ++++++++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 dev-python/python-termstyle/Manifest create mode 100644 dev-python/python-termstyle/files/tests-unicode.patch create mode 100644 dev-python/python-termstyle/metadata.xml create mode 100644 dev-python/python-termstyle/python-termstyle-0.1.10.ebuild (limited to 'dev-python/python-termstyle') diff --git a/dev-python/python-termstyle/Manifest b/dev-python/python-termstyle/Manifest new file mode 100644 index 000000000000..916c511af9a5 --- /dev/null +++ b/dev-python/python-termstyle/Manifest @@ -0,0 +1 @@ +DIST python-termstyle-0.1.10.tar.gz 5025 BLAKE2B af652f560f3c6657ca01080cdaece77af7a1ecdf0758cf777035427197142b04a7d39a249da6eee90dc06cc2d15ca484c8b1d086c8e32e761acb8adc0eeccf3f SHA512 a0ed484da8da10c7fe1b8422a26861fb115dc29c49ce79c113053f913d3371edf6222de1ccf40e6aa34c3cfa9da5805eb3928fb07bfae18a13683621d7547743 diff --git a/dev-python/python-termstyle/files/tests-unicode.patch b/dev-python/python-termstyle/files/tests-unicode.patch new file mode 100644 index 000000000000..4cb410fa1984 --- /dev/null +++ b/dev-python/python-termstyle/files/tests-unicode.patch @@ -0,0 +1,10 @@ +diff --git a/test2.py b/test2.py +index 2d84c37..1331545 100755 +--- a/test2.py ++++ b/test2.py +@@ -2,4 +2,4 @@ + + from termstyle import * + +-print green(u"unicod\xe9!") ++print green(u"unicod\xe9!".encode('utf-8')) diff --git a/dev-python/python-termstyle/metadata.xml b/dev-python/python-termstyle/metadata.xml new file mode 100644 index 000000000000..4d21ba2272e7 --- /dev/null +++ b/dev-python/python-termstyle/metadata.xml @@ -0,0 +1,9 @@ + + + + + + gfxmonk/termstyle + + gentoo-staging + diff --git a/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild b/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild new file mode 100644 index 000000000000..ff2ecebc98ea --- /dev/null +++ b/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="console colouring for python" +HOMEPAGE="http://gfxmonk.net/dist/0install/python-termstyle.xml" +SRC_URI="https://github.com/gfxmonk/${PN#*-}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/termstyle-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~arm64 ppc64 x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +python_prepare_all() { + local PATCHES=( + "${FILESDIR}"/tests-unicode.patch + ) + + distutils-r1_python_prepare_all +} + +python_test() { + if [[ "${EPYTHON}" = "python2.7" ]]; then + "${PYTHON}" test2.py || die "test2.py failed under ${EPYTHON}" + else + "${PYTHON}" test3.py || die "test3.py failed under ${EPYTHON}" + fi +} -- cgit v1.3.1