From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C2C8D59CAF for ; Fri, 1 Apr 2016 16:37:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2C2B21C026; Fri, 1 Apr 2016 16:37:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39C8721C026 for ; Fri, 1 Apr 2016 16:37:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F0FF340DE6 for ; Fri, 1 Apr 2016 16:37:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 205EB7A for ; Fri, 1 Apr 2016 16:37:32 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1459527613.464fb45e98cb788c007ffea53b046d12b04b1ec4.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wcwidth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild X-VCS-Directories: dev-python/wcwidth/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 464fb45e98cb788c007ffea53b046d12b04b1ec4 X-VCS-Branch: master Date: Fri, 1 Apr 2016 16:37:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a1e9560e-2312-45ce-8b00-18798c0ef617 X-Archives-Hash: 3bd46908b10fe5efad3c18ad27938672 commit: 464fb45e98cb788c007ffea53b046d12b04b1ec4 Author: Andrey Grozin gentoo org> AuthorDate: Fri Apr 1 16:20:13 2016 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Fri Apr 1 16:20:13 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464fb45e dev-python/wcwidth: added python3_5 Package-Manager: portage-2.2.28 dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild b/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild new file mode 100644 index 0000000..bbc123d --- /dev/null +++ b/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild @@ -0,0 +1,28 @@ +# 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="Measures number of Terminal column cells of wide-character codes" +HOMEPAGE="https://pypi.python.org/pypi/wcwidth/ https://github.com/jquast/wcwidth" +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="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" + +python_test() { + py.test -v -rs --strict wcwidth/tests || die +}