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 5BE07158020 for ; Mon, 14 Nov 2022 04:36:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 320DCE090E; Mon, 14 Nov 2022 04:36:26 +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 186EEE090E for ; Mon, 14 Nov 2022 04:36:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 26535335DC2 for ; Mon, 14 Nov 2022 04:36:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84C1774D for ; Mon, 14 Nov 2022 04:36:22 +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: <1668400487.cf7b03e221d8ef2b2edc48ae12870a4492bf3b24.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/coloredlogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/coloredlogs/coloredlogs-15.0.1.ebuild X-VCS-Directories: dev-python/coloredlogs/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cf7b03e221d8ef2b2edc48ae12870a4492bf3b24 X-VCS-Branch: master Date: Mon, 14 Nov 2022 04:36:22 +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: b37fa4a3-998a-4099-abbb-96300943c1ab X-Archives-Hash: d61755c37ad1c261b5d3acfac9fdd75d commit: cf7b03e221d8ef2b2edc48ae12870a4492bf3b24 Author: Michał Górny gentoo org> AuthorDate: Mon Nov 14 04:34:47 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 14 04:34:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf7b03e2 dev-python/coloredlogs: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/coloredlogs/coloredlogs-15.0.1.ebuild | 43 ------------------------ 1 file changed, 43 deletions(-) diff --git a/dev-python/coloredlogs/coloredlogs-15.0.1.ebuild b/dev-python/coloredlogs/coloredlogs-15.0.1.ebuild deleted file mode 100644 index 3374e42daed6..000000000000 --- a/dev-python/coloredlogs/coloredlogs-15.0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Colored stream handler for the logging module" -HOMEPAGE=" - https://pypi.org/project/coloredlogs/ - https://github.com/xolox/python-coloredlogs - https://coloredlogs.readthedocs.io/en/latest/ -" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - >=dev-python/humanfriendly-9.1[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/capturer[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/verboselogs[${PYTHON_USEDEP}] - ) -" - -PATCHES=( "${FILESDIR}/coloredlogs-14.0-fix-install-prefix.patch" ) - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -python_test() { - # test_cli_conversion requires the package to be installed - distutils_install_for_testing - # test_auto_install fails because the pth file isn't being loaded - epytest coloredlogs/tests.py \ - --deselect coloredlogs/tests.py::ColoredLogsTestCase::test_auto_install -}