diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..09cef93 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +PORTNAME= concurrent-log-handler +PORTVERSION= 0.9.19 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= risner@stdio.com +COMMENT= RotatingFileHandler replacement with concurrency, gzip + +LICENSE= APACHE20 + +USES= python:3.6+ +USE_PYTHON= distutils autoplist + +.include diff --git a/distinfo b/distinfo new file mode 100644 index 0000000..5b05a5d --- /dev/null +++ b/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1622378074 +SHA256 (concurrent-log-handler-0.9.19.tar.gz) = b12f79abed3f94121c25ce9c24cdb57d889282ec6ff61f5535ab2068dc37d409 +SIZE (concurrent-log-handler-0.9.19.tar.gz) = 20780 diff --git a/pkg-descr b/pkg-descr new file mode 100644 index 0000000..6343eaa --- /dev/null +++ b/pkg-descr @@ -0,0 +1,11 @@ +This package provides an additional log handler for Python's standard logging +package (PEP 282). This handler will write log events to a log file which is +rotated when the log file reaches a certain size. Multiple processes can +safely write to the same log file concurrently. Rotated logs can be gzipped +if desired. Both Windows and POSIX systems are supported. An optional threaded +queue logging handler is provided to perform logging in the background. + +This is a fork of Lowell Alleman's ConcurrentLogHandler 0.9.1 which fixes +a hanging/deadlocking problem. + +WWW: https://pypi.org/project/concurrent-log-handler/