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 543CE1382C5 for ; Tue, 2 Mar 2021 08:48:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CCE3E0BF3; Tue, 2 Mar 2021 08:48:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 31967E0BF3 for ; Tue, 2 Mar 2021 08:48:04 +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 D14B6340EE5 for ; Tue, 2 Mar 2021 08:48:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70464531 for ; Tue, 2 Mar 2021 08:48:01 +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: <1614674741.45a28618b3a0702368ee5d0d6f682c52eef878e2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/colorlog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/colorlog/Manifest dev-python/colorlog/colorlog-3.1.4.ebuild X-VCS-Directories: dev-python/colorlog/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 45a28618b3a0702368ee5d0d6f682c52eef878e2 X-VCS-Branch: master Date: Tue, 2 Mar 2021 08:48:01 +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: b5a92e35-ecdf-4765-a438-9fb4e70a7947 X-Archives-Hash: 11ed1e28b3e784112638ec0f7d52cbbe commit: 45a28618b3a0702368ee5d0d6f682c52eef878e2 Author: Michał Górny gentoo org> AuthorDate: Tue Mar 2 08:45:41 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Mar 2 08:45:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45a28618 dev-python/colorlog: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/colorlog/Manifest | 1 - dev-python/colorlog/colorlog-3.1.4.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-python/colorlog/Manifest b/dev-python/colorlog/Manifest index 159a7c3813c..b07536dde92 100644 --- a/dev-python/colorlog/Manifest +++ b/dev-python/colorlog/Manifest @@ -1,2 +1 @@ -DIST colorlog-3.1.4.tar.gz 14424 BLAKE2B 0434c92044c623dc4b9be4ae3ddc491ccda3db7725894d07125ed19e8f8ae184d8cae27a7adb424e799cf092e66c17089eb193686ef710b5a4789f2f7c75dde6 SHA512 9333e8e5a3237cf3f43d0a86cf93c6252ed52031e685342a1afc411568407a77840946620da429dc384c8f77f7e540339632f15a417ce00a13b40b2d51f1c730 DIST colorlog-4.7.2.tar.gz 28764 BLAKE2B 35cfba0aa03879786a41eb09601f0b4227c5fbaca91f560810e4a4626d9b3a15b8072df06315f81739d27b410c587a062132d5315bd1e0db059baecf757709d7 SHA512 103640e0a4bff6bd81d26c1019fe954f52870947c0b68b3b2a85f178c8f50040e3eeafe08b2a25aa130433c1c8f144b722e4f3795fcbcc0ed4c2386cee626884 diff --git a/dev-python/colorlog/colorlog-3.1.4.ebuild b/dev-python/colorlog/colorlog-3.1.4.ebuild deleted file mode 100644 index bc7ccd3e2e3..00000000000 --- a/dev-python/colorlog/colorlog-3.1.4.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="Log formatting with colors" -HOMEPAGE="https://pypi.org/project/colorlog/ https://github.com/borntyping/python-colorlog" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -distutils_enable_tests pytest - -python_test() { - pytest -vv -p no:logging || die -}