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 02C7F138346 for ; Tue, 7 Jan 2020 17:47:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13855E0940; Tue, 7 Jan 2020 17:47:38 +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 E9F2DE0940 for ; Tue, 7 Jan 2020 17:47: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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0681A34DDBF for ; Tue, 7 Jan 2020 17:47:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90A3996 for ; Tue, 7 Jan 2020 17:47:33 +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: <1578419227.1c60b5721ac273f695bd1320f2afeb9f57eefe5c.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-0.9.1.ebuild X-VCS-Directories: dev-python/texttable/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 1c60b5721ac273f695bd1320f2afeb9f57eefe5c X-VCS-Branch: master Date: Tue, 7 Jan 2020 17:47:33 +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: bab0c93b-55de-4358-bbd6-12e52b9b68fc X-Archives-Hash: 74b12566a0617606767afaaa232f9cf6 commit: 1c60b5721ac273f695bd1320f2afeb9f57eefe5c Author: Joonas Niilola gentoo org> AuthorDate: Tue Jan 7 17:45:52 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Jan 7 17:47:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c60b572 dev-python/texttable: remove old Signed-off-by: Joonas Niilola gentoo.org> dev-python/texttable/Manifest | 1 - dev-python/texttable/texttable-0.9.1.ebuild | 20 -------------------- 2 files changed, 21 deletions(-) diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest index 46d279ad87a..41708b83179 100644 --- a/dev-python/texttable/Manifest +++ b/dev-python/texttable/Manifest @@ -1,2 +1 @@ -DIST texttable-0.9.1.tar.gz 11074 BLAKE2B 465738a7b980f2a216d63b268044c1a1b8c0deb986fd398f0ba0ae30ab84020ac6f179b5314a2071592c38443f9cb86387b9ed573342533af9e825000472ebe5 SHA512 7ec37336ef4b253879d0232dcdb4500cad33ecce1067dd7ea26c221dc2c003ee56360bdbd1dd1e00133301c51c67fb2fe9b1703628804a65f2a6ab8a1e830e50 DIST texttable-1.6.2.tar.gz 11450 BLAKE2B 8090914b20a93283ea3d533a8120d4d2c5f058a0e79550b29d4b9fa740db5e309d84a7983fb6665149e3624ba7039b67ff6a553b180b915a348e5b53e793d5cd SHA512 e59275c64813bd00fa5172c43491820122b6045e1a416c917576cbf595c1ec24d146e571708379f4b32775bda904f16ced0e9e15ab7b2dde78a214f26a1c4de6 diff --git a/dev-python/texttable/texttable-0.9.1.ebuild b/dev-python/texttable/texttable-0.9.1.ebuild deleted file mode 100644 index 1f344b96d71..00000000000 --- a/dev-python/texttable/texttable-0.9.1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_6} ) - -inherit distutils-r1 - -DESCRIPTION="module for creating simple ASCII tables" -HOMEPAGE="https://github.com/foutaise/texttable" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64" -IUSE="" - -python_test() { - py.test tests.py || die -}