dev-python/coloredlogs: Remove redundant versions
authorMichał Górny <mgorny@gentoo.org>
Thu, 26 Mar 2020 14:38:21 +0000 (15:38 +0100)
committerMichał Górny <mgorny@gentoo.org>
Thu, 26 Mar 2020 14:50:36 +0000 (15:50 +0100)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-python/coloredlogs/Manifest
dev-python/coloredlogs/coloredlogs-6.1.ebuild [deleted file]

index 004a6b8528b9424b85854a15d07554e1fd38a63c..ed2a550127e3b770ef3829e5993e683fe1be67ed 100644 (file)
@@ -1,2 +1 @@
 DIST coloredlogs-10.0.tar.gz 273273 BLAKE2B 775b12718d780da396d74c7f960cdbbd4858c793bf3eefb53d29e9f6b415f682110ae2c7ac631be230578946a2fab8d75e0c3aa487ccd952bb05443f0a85700c SHA512 f4a51fd8fa92ea4e2ef0b58305dcc4bbe12851e722fc85cfd4f48a9388002efced52bcf027f6dc4c525b095f3f953970e73928fdce3245ab4f9d13ae36b9d498
-DIST coloredlogs-6.1.tar.gz 28057 BLAKE2B bbb5946db3e6cbfae0b9947d2aa29769858833e35213a44a5be4ceb434021ee8c583ff00c980b9ab4fc533f6fec80e151895097b6a87c44257ef0fd5c7ab0bab SHA512 834cf993e7ffd3328644d334912fcf5a5156a441c6184643b38e5f356d46d7b5c48e02ee1e1b432265052c7a5ab1071ba456e575217a4a762f8387131059c405
diff --git a/dev-python/coloredlogs/coloredlogs-6.1.ebuild b/dev-python/coloredlogs/coloredlogs-6.1.ebuild
deleted file mode 100644 (file)
index 74ef59c..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python3_6 )
-
-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 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-python/humanfriendly-2.1[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               >=dev-python/capturer-2.2[${PYTHON_USEDEP}]
-               >=dev-python/coverage-4.2[${PYTHON_USEDEP}]
-               >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-               >=dev-python/pytest-3.0.3[${PYTHON_USEDEP}]
-               >=dev-python/pytest-cov-2.3.1[${PYTHON_USEDEP}]
-               >=dev-python/verboselogs-1.5[${PYTHON_USEDEP}]
-       )"
-
-DOCS=( README.rst )
-
-PATCHES=( "${FILESDIR}"/${PN}-2.0-skip-cli-test.patch )
-
-python_test() {
-       # Sandbox violations
-       sed \
-               -e 's:test_system_logging:_&:g' \
-               -e 's:test_syslog_shortcut_simple:_&:g' \
-               -e 's:test_syslog_shortcut_enhanced:_&:g' \
-               -i ${PN}/tests.py || die
-       esetup.py test
-}