commit: ac5567520a526285ffd222848927dce8e0a26f1f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 07:34:11 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 07:41:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac556752
dev-python/coloredlogs: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/coloredlogs/Manifest | 1 -
dev-python/coloredlogs/coloredlogs-14.0.ebuild | 46 --------------------------
2 files changed, 47 deletions(-)
diff --git a/dev-python/coloredlogs/Manifest b/dev-python/coloredlogs/Manifest
index b338c23d8ef..db81430ab4e 100644
--- a/dev-python/coloredlogs/Manifest
+++ b/dev-python/coloredlogs/Manifest
@@ -1,2 +1 @@
-DIST coloredlogs-14.0.tar.gz 275863 BLAKE2B
0a8c026220955397378ad2b43a69c89c5710a09e2d9ed81a3f25408c60e171f4b8f78239696a0bc1b51fc3dd9bfca80df63e1f1d7afb6bee0046209a089e0d6d
SHA512
3434a95f3216d19af5d7a48324e5afd5e975f92d9f6b99f40df2c0a635f1738e0bc6d7277a549a42a0fec5a8601f82908c4b0205ceeb3666f49210f66fe58671
DIST coloredlogs-15.0.1.tar.gz 278520 BLAKE2B
446aea9adfc8a1ea7f2e5b4a0279d124a3e174feec4a6d9346059fa00fbcb2717d6480392051cc44f0c1f66e022cfc03238acae59b9496e9f70695d99143dfd6
SHA512
577af26af8d27bca3f10e6aaa257245aba608cc3832985ba57bcb2b590b10bf054796a2210749c15ee1b1a17623e007e4ac3ba17bed6af95544f85f5dfafaf21
diff --git a/dev-python/coloredlogs/coloredlogs-14.0.ebuild
b/dev-python/coloredlogs/coloredlogs-14.0.ebuild
deleted file mode 100644
index 10619bd8729..00000000000
--- a/dev-python/coloredlogs/coloredlogs-14.0.ebuild
+++ /dev/null
@@ -1,46 +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} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-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[${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}/${P}-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
- pytest -vv ${PN}/tests.py \
- --deselect
${PN}/tests.py::ColoredLogsTestCase::test_auto_install \
- || die "Tests fail with ${EPYTHON}"
-}