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

Collapse All | Expand All

(-)b/Makefile (+18 lines)
Added Link Here
1
PORTNAME=	concurrent-log-handler
2
PORTVERSION=	0.9.19
3
CATEGORIES=	sysutils python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	risner@stdio.com
8
COMMENT=	RotatingFileHandler replacement with concurrency, gzip
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}portalocker>=1.0:devel/py-portalocker@${PY_FLAVOR}
14
15
USES=		python:3.6+
16
USE_PYTHON=	autoplist distutils
17
18
.include <bsd.port.mk>
(-)b/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1622378074
2
SHA256 (concurrent-log-handler-0.9.19.tar.gz) = b12f79abed3f94121c25ce9c24cdb57d889282ec6ff61f5535ab2068dc37d409
3
SIZE (concurrent-log-handler-0.9.19.tar.gz) = 20780
(-)b/pkg-descr (+11 lines)
Added Link Here
1
This package provides an additional log handler for Python's standard logging
2
package (PEP 282). This handler will write log events to a log file which is
3
rotated when the log file reaches a certain size.  Multiple processes can
4
safely write to the same log file concurrently. Rotated logs can be gzipped
5
if desired. Both Windows and POSIX systems are supported.  An optional threaded
6
queue logging handler is provided to perform logging in the background.
7
8
This is a fork of Lowell Alleman's ConcurrentLogHandler 0.9.1 which fixes
9
a hanging/deadlocking problem.
10
11
WWW: https://pypi.org/project/concurrent-log-handler/

Return to bug 256268