View | Details | Raw Unified | Return to bug 256924 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/py-logzero/Makefile (+22 lines)
Added Link Here
1
PORTNAME=	logzero
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	1.7.0
4
CATEGORIES=	devel
5
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	ports@nicandneal.net
8
COMMENT=	Robust and effective logging for Python
9
10
LICENSE=	MIT
11
12
USES=	python
13
USE_PYTHON=	distutils autoplist
14
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	metachris
17
GH_PROJECT=	logzero
18
19
do-build:
20
	# Nothing to build.
21
22
.include <bsd.port.mk>
(-)b/devel/py-logzero/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1618302616
2
SHA256 (metachris-logzero-v1.7.0_GH0.tar.gz) = ff5d91754ebd6e822553dbfa8179e7ed3d4de3ba3505d03394d7db2bdab515ce
3
SIZE (metachris-logzero-v1.7.0_GH0.tar.gz) = 1394169
(-)b/devel/py-logzero/pkg-descr (+15 lines)
Added Link Here
1
Robust and effective logging for Python 2 and 3.
2
3
- Easy logging to console and/or (rotating) file.
4
- Provides a fully configured standard Python logger object.
5
- Pretty formatting, including level-specific colors in the console.
6
- Windows color output supported by colorama
7
- Robust against str/bytes encoding problems, works with all kinds of character encodings and special characters.
8
- Multiple loggers can write to the same logfile (also across multiple Python files).
9
- Global default logger with logzero.logger and custom loggers with logzero.setup_logger(..).
10
- Compatible with Python 2 and 3.
11
- All contained in a single file.
12
- Licensed under the MIT license.
13
- Heavily inspired by the Tornado web framework.
14
15
WWW: https://github.com/metachris/logzero

Return to bug 256924