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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 05455158091 for ; Thu, 16 Jun 2022 05:51:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED5C0E0844; Thu, 16 Jun 2022 05:51:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CDDEEE0844 for ; Thu, 16 Jun 2022 05:51:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 626CB34142A for ; Thu, 16 Jun 2022 05:51:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5704475 for ; Thu, 16 Jun 2022 05:51:31 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1655358688.fd25367691c84328a676d380cc2e3e7e1271f9fd.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/texttable/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/texttable/texttable-1.6.4.ebuild X-VCS-Directories: dev-python/texttable/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: fd25367691c84328a676d380cc2e3e7e1271f9fd X-VCS-Branch: master Date: Thu, 16 Jun 2022 05:51:31 +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: c94d95dd-2d87-49ab-a78a-edcd0f7a61cd X-Archives-Hash: 037a8d7be3623ce662e927a113f62ac3 commit: fd25367691c84328a676d380cc2e3e7e1271f9fd Author: Joonas Niilola gentoo org> AuthorDate: Thu Jun 16 05:35:06 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jun 16 05:51:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd253676 dev-python/texttable: drop 1.6.4 Signed-off-by: Joonas Niilola gentoo.org> dev-python/texttable/texttable-1.6.4.ebuild | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/dev-python/texttable/texttable-1.6.4.ebuild b/dev-python/texttable/texttable-1.6.4.ebuild deleted file mode 100644 index ec0eced974cc..000000000000 --- a/dev-python/texttable/texttable-1.6.4.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) - -inherit distutils-r1 optfeature - -DESCRIPTION="Module for creating simple ASCII tables" -HOMEPAGE="https://github.com/foutaise/texttable https://pypi.org/project/texttable/" -SRC_URI="https://github.com/foutaise/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm64 x86" - -RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_test() { - pytest -vv tests.py || die -} - -pkg_postinst() { - optfeature "better wrapping of CJK text" dev-python/cjkwrap -}