diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2014-08-29 10:48:28 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2014-08-29 10:48:28 +0000 |
commit | 17b684d4f53bacaa31b691f7e627e939fb4cdff3 (patch) | |
tree | 4dba14aca7d6ee65fded66e155d769ffc32b1fa5 | |
parent | d65b135cba1e2e2da69290b1b1790f085de2317d (diff) | |
download | freebsd-ports-17b684d4f53bacaa31b691f7e627e939fb4cdff3.zip |
New port: py-pygtail:
A python "port" of logcheck's logtail2.
Pygtail reads log file lines that have not been read. It will even handle
log files that have been rotated.
WWW: https://pypi.python.org/pypi/pygtail
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/py-pygtail/Makefile | 16 | ||||
-rw-r--r-- | textproc/py-pygtail/distinfo | 2 | ||||
-rw-r--r-- | textproc/py-pygtail/pkg-descr | 6 |
4 files changed, 25 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index c5a92e4e2c72..0bf437fd2590 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1180,6 +1180,7 @@ SUBDIR += py-pyctpp2 SUBDIR += py-pyelasticsearch SUBDIR += py-pygments + SUBDIR += py-pygtail SUBDIR += py-pyscss SUBDIR += py-pysrt SUBDIR += py-pystache diff --git a/textproc/py-pygtail/Makefile b/textproc/py-pygtail/Makefile new file mode 100644 index 000000000000..5391850df26f --- /dev/null +++ b/textproc/py-pygtail/Makefile @@ -0,0 +1,16 @@ +# Created by: Dmitry Sivachenko <demon@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pygtail +PORTVERSION= 0.4.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= demon@FreeBSD.org +COMMENT= Python module which reads log file lines that have not been read + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/textproc/py-pygtail/distinfo b/textproc/py-pygtail/distinfo new file mode 100644 index 000000000000..e78cdedf5cc8 --- /dev/null +++ b/textproc/py-pygtail/distinfo @@ -0,0 +1,2 @@ +SHA256 (pygtail-0.4.0.tar.gz) = 63aaa784554c4c476703d14a83dafbeb6cbf8e71e4306b0e8cfa7433028995b5 +SIZE (pygtail-0.4.0.tar.gz) = 4547 diff --git a/textproc/py-pygtail/pkg-descr b/textproc/py-pygtail/pkg-descr new file mode 100644 index 000000000000..86a4235e02a9 --- /dev/null +++ b/textproc/py-pygtail/pkg-descr @@ -0,0 +1,6 @@ +A python "port" of logcheck's logtail2. + +Pygtail reads log file lines that have not been read. It will even handle +log files that have been rotated. + +WWW: https://pypi.python.org/pypi/pygtail |