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 D5276158094 for ; Sun, 10 Jul 2022 19:09:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E8EDE0E97; Sun, 10 Jul 2022 19:09:29 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F35AEE0E95 for ; Sun, 10 Jul 2022 19:09:28 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 10C27341033 for ; Sun, 10 Jul 2022 19:09:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79DD9105 for ; Sun, 10 Jul 2022 19:09:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1657480159.b2c3462d068e8af5a32e7dd27d9095f3ad4bec36.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/progress/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/progress/progress-1.6.ebuild X-VCS-Directories: dev-python/progress/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b2c3462d068e8af5a32e7dd27d9095f3ad4bec36 X-VCS-Branch: master Date: Sun, 10 Jul 2022 19:09:26 +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: 9fddd274-2809-414b-bd55-3e5e03b54309 X-Archives-Hash: 6b46be6b6f0923b880d89fd3e6881e5d commit: b2c3462d068e8af5a32e7dd27d9095f3ad4bec36 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 10 19:06:34 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 10 19:09:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2c3462d dev-python/progress: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/progress/progress-1.6.ebuild | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/dev-python/progress/progress-1.6.ebuild b/dev-python/progress/progress-1.6.ebuild deleted file mode 100644 index 7b238ed05d31..000000000000 --- a/dev-python/progress/progress-1.6.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="Easy to use progress bars" -HOMEPAGE="https://pypi.org/project/progress/ https://github.com/verigak/progress/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="ISC" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" - -python_test() { - "${EPYTHON}" test_progress.py || die "Tests fail with ${EPYTHON}" -}