dev-python/coloredlogs: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-10-22 00:47:10 +02:00
parent 092a655c04
commit f987fbc70b
3 changed files with 0 additions and 140 deletions

View File

@@ -1,2 +1 @@
DIST coloredlogs-10.0.tar.gz 273273 BLAKE2B 775b12718d780da396d74c7f960cdbbd4858c793bf3eefb53d29e9f6b415f682110ae2c7ac631be230578946a2fab8d75e0c3aa487ccd952bb05443f0a85700c SHA512 f4a51fd8fa92ea4e2ef0b58305dcc4bbe12851e722fc85cfd4f48a9388002efced52bcf027f6dc4c525b095f3f953970e73928fdce3245ab4f9d13ae36b9d498
DIST coloredlogs-14.0.tar.gz 275863 BLAKE2B 0a8c026220955397378ad2b43a69c89c5710a09e2d9ed81a3f25408c60e171f4b8f78239696a0bc1b51fc3dd9bfca80df63e1f1d7afb6bee0046209a089e0d6d SHA512 3434a95f3216d19af5d7a48324e5afd5e975f92d9f6b99f40df2c0a635f1738e0bc6d7277a549a42a0fec5a8601f82908c4b0205ceeb3666f49210f66fe58671

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
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}]"
DEPEND="test? (
dev-python/capturer[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/verboselogs[${PYTHON_USEDEP}] )"
PATCHES="${FILESDIR}/${P}-skip-sandbox-violation-tests.patch"
distutils_enable_sphinx docs
distutils_enable_tests pytest
python_test() {
pytest -vv ${PN}/tests.py || die "Tests fail with ${EPYTHON}"
}

View File

@@ -1,101 +0,0 @@
diff --git a/coloredlogs/tests.py b/coloredlogs/tests.py
index 38f2d97..c4353f1 100644
--- a/coloredlogs/tests.py
+++ b/coloredlogs/tests.py
@@ -184,48 +184,6 @@ class ColoredLogsTestCase(TestCase):
# Make sure colored logging is disabled.
assert not isinstance(handler.formatter, ColoredFormatter)
- def test_system_logging(self):
- """Make sure the :class:`coloredlogs.syslog.SystemLogging` context manager works."""
- system_log_file = self.find_system_log()
- expected_message = random_string(50)
- with SystemLogging(programname='coloredlogs-test-suite') as syslog:
- if not syslog:
- return self.skipTest("couldn't connect to syslog daemon")
- # When I tried out the system logging support on macOS 10.13.1 on
- # 2018-01-05 I found that while WARNING and ERROR messages show up
- # in the system log DEBUG and INFO messages don't. This explains
- # the importance of the level of the log message below.
- logging.error("%s", expected_message)
- # Retry the following assertion (for up to 60 seconds) to give the
- # logging daemon time to write our log message to disk. This
- # appears to be needed on MacOS workers on Travis CI, see:
- # https://travis-ci.org/xolox/python-coloredlogs/jobs/325245853
- retry(lambda: check_contents(system_log_file, expected_message, True))
-
- def test_syslog_shortcut_simple(self):
- """Make sure that ``coloredlogs.install(syslog=True)`` works."""
- system_log_file = self.find_system_log()
- expected_message = random_string(50)
- with cleanup_handlers():
- # See test_system_logging() for the importance of this log level.
- coloredlogs.install(syslog=True)
- logging.error("%s", expected_message)
- # See the comments in test_system_logging() on why this is retried.
- retry(lambda: check_contents(system_log_file, expected_message, True))
-
- def test_syslog_shortcut_enhanced(self):
- """Make sure that ``coloredlogs.install(syslog='warning')`` works."""
- system_log_file = self.find_system_log()
- the_expected_message = random_string(50)
- not_an_expected_message = random_string(50)
- with cleanup_handlers():
- # See test_system_logging() for the importance of these log levels.
- coloredlogs.install(syslog='error')
- logging.warning("%s", not_an_expected_message)
- logging.error("%s", the_expected_message)
- # See the comments in test_system_logging() on why this is retried.
- retry(lambda: check_contents(system_log_file, the_expected_message, True))
- retry(lambda: check_contents(system_log_file, not_an_expected_message, False))
def test_name_normalization(self):
"""Make sure :class:`~coloredlogs.NameNormalizer` works as intended."""
@@ -369,34 +327,6 @@ class ColoredLogsTestCase(TestCase):
logging.info("This should be timestamped according to #45.")
assert re.match(r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}\+\d{4}\s', stream.getvalue())
- def test_plain_text_output_format(self):
- """Inspect the plain text output of coloredlogs."""
- logger = VerboseLogger(random_string(25))
- stream = StringIO()
- install(level=logging.NOTSET, logger=logger, stream=stream)
- # Test that filtering on severity works.
- logger.setLevel(logging.INFO)
- logger.debug("No one should see this message.")
- assert len(stream.getvalue().strip()) == 0
- # Test that the default output format looks okay in plain text.
- logger.setLevel(logging.NOTSET)
- for method, severity in ((logger.debug, 'DEBUG'),
- (logger.info, 'INFO'),
- (logger.verbose, 'VERBOSE'),
- (logger.warning, 'WARNING'),
- (logger.error, 'ERROR'),
- (logger.critical, 'CRITICAL')):
- # Prepare the text.
- text = "This is a message with severity %r." % severity.lower()
- # Log the message with the given severity.
- method(text)
- # Get the line of output generated by the handler.
- output = stream.getvalue()
- lines = output.splitlines()
- last_line = lines[-1]
- assert text in last_line
- assert severity in last_line
- assert PLAIN_TEXT_PATTERN.match(last_line)
def test_html_conversion(self):
"""Check the conversion from ANSI escape sequences to HTML."""
@@ -503,12 +433,6 @@ class ColoredLogsTestCase(TestCase):
for name in 'debug', 'info', 'warning', 'error', 'critical':
assert name.upper() in output
- def test_cli_conversion(self):
- """Test the command line HTML conversion."""
- output = main('coloredlogs', '--convert', 'coloredlogs', '--demo', capture=True)
- # Make sure the output is encoded as HTML.
- assert '<span' in output
-
def test_empty_conversion(self):
"""
Test that conversion of empty output produces no HTML.