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 D962E139368 for ; Sat, 14 Aug 2021 08:06:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0814BE0AFF; Sat, 14 Aug 2021 08:06:50 +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 C8489E0AFD for ; Sat, 14 Aug 2021 08:06:49 +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 E0384335DAB for ; Sat, 14 Aug 2021 08:06:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79C4D7B2 for ; Sat, 14 Aug 2021 08:06:47 +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: <1628928386.71d807f8824e5591c8fd18b371542daf1fff24b4.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/texttable/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/texttable/Manifest dev-python/texttable/texttable-1.6.3.ebuild X-VCS-Directories: dev-python/texttable/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 71d807f8824e5591c8fd18b371542daf1fff24b4 X-VCS-Branch: master Date: Sat, 14 Aug 2021 08:06:47 +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: 9d242d5b-72f8-4588-a519-bb75eaae279b X-Archives-Hash: 590bafb555465198d3dc70f74f2c1d9e commit: 71d807f8824e5591c8fd18b371542daf1fff24b4 Author: Joonas Niilola gentoo org> AuthorDate: Sat Aug 14 08:04:20 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Aug 14 08:06:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d807f8 dev-python/texttable: drop 1.6.3 Signed-off-by: Joonas Niilola gentoo.org> dev-python/texttable/Manifest | 1 - dev-python/texttable/texttable-1.6.3.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest index f0c8b27431b..c1d05a13eca 100644 --- a/dev-python/texttable/Manifest +++ b/dev-python/texttable/Manifest @@ -1,2 +1 @@ -DIST texttable-1.6.3.tar.gz 11574 BLAKE2B aebb306acb89f62963e9473ab6e22291a1ec93993a0106ddd2943f656737cb0960a10e680a69b6577ebb8ac0af3c6ecdfd8c58647a6ce37d9a6531e41f61f480 SHA512 89a26ef7d9947ec4edfc5791c91f2ac327c79bbc5aa0e0f89c0a63dbd80bc420027af073da935254faa143b9e8bef85a7bb352791b45b0cd60c7bcf569869f2d DIST texttable-1.6.4.tar.gz 11611 BLAKE2B a97a9beefc9547fe7487af5b6411effd7391e303a13161d7e1c9304a1b580cf47bb10c8649dfea5c6f8ba05bc6c3fd7595662e8b74b282696d9ee3a110746212 SHA512 300b02f5b682f1c09a3eb5abfd4ee9c724354505a3f9e8f68207fd7d244402f234437807d68b6b526c3d4ade9e527e66c921bcd47a5e86d680698d559da3fe1a diff --git a/dev-python/texttable/texttable-1.6.3.ebuild b/dev-python/texttable/texttable-1.6.3.ebuild deleted file mode 100644 index ec0eced974c..00000000000 --- a/dev-python/texttable/texttable-1.6.3.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 -}