From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79386138350 for ; Wed, 8 Apr 2020 10:53:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86FD8E08F5; Wed, 8 Apr 2020 10:53:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69BD6E08F5 for ; Wed, 8 Apr 2020 10:53:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCC6634F0AB for ; Wed, 8 Apr 2020 10:53:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42A9D166 for ; Wed, 8 Apr 2020 10:53:24 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1586343159.09fd59cb65d432d973ab9319b8aa6fb6c38a8abf.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wcwidth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wcwidth/Manifest dev-python/wcwidth/wcwidth-0.1.9.ebuild X-VCS-Directories: dev-python/wcwidth/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 09fd59cb65d432d973ab9319b8aa6fb6c38a8abf X-VCS-Branch: master Date: Wed, 8 Apr 2020 10:53:24 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1e708fbc-93a4-4e0f-b027-9ccb5afd3a0b X-Archives-Hash: 79f69b31ddf63e3b490e2500d491a6c2 commit: 09fd59cb65d432d973ab9319b8aa6fb6c38a8abf Author: Sebastian Pipping gentoo org> AuthorDate: Wed Apr 8 10:52:39 2020 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Apr 8 10:52:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09fd59cb dev-python/wcwidth: 0.1.9 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.92, Repoman-2.3.22 dev-python/wcwidth/Manifest | 1 + dev-python/wcwidth/wcwidth-0.1.9.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/wcwidth/Manifest b/dev-python/wcwidth/Manifest index 16f14e2c9e2..5bec98c2b58 100644 --- a/dev-python/wcwidth/Manifest +++ b/dev-python/wcwidth/Manifest @@ -1 +1,2 @@ DIST wcwidth-0.1.8.tar.gz 19957 BLAKE2B dd4ba31bec5161a9509b0ef7e73901c3ff31b2ceedb3d05eeaf85f90c1157e21d00ee8cd0f715098bf65e5d699a40287ce08e235f2f1d22a73f6606f490a921d SHA512 b828450feb56b5c0e686f6922e777ab48d1336816a41ef4ef95f71c25a37ef492861634c16c788e1e4570d21bd4d45c990a18787860ba6043157c2781c78b65e +DIST wcwidth-0.1.9.tar.gz 24764 BLAKE2B c7a5a50a8628649810dddd37b1af4c7ea52b2d0d2e516bd24e04675849e6f402e6ef4b7cea0fb507c5446b455d8725f497771bb30cd4d7eafa90cbb6fc2d01b4 SHA512 3aee69efb8714f4426bfd424b80f4f4e5758174d84f725dd0e1448de1b4b4dd385ffd4f72440d5f763b7a82325857e9164742dbb7fa9e15d5db54744c262d0ba diff --git a/dev-python/wcwidth/wcwidth-0.1.9.ebuild b/dev-python/wcwidth/wcwidth-0.1.9.ebuild new file mode 100644 index 00000000000..b4fe043cedd --- /dev/null +++ b/dev-python/wcwidth/wcwidth-0.1.9.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Measures number of Terminal column cells of wide-character codes" +HOMEPAGE="https://pypi.org/project/wcwidth/ https://github.com/jquast/wcwidth" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests pytest