Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Apr 2020 07:22:19 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r530561 - in head/devel: . py-python-json-logger
Message-ID:  <202004040722.0347MJsC039884@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Apr  4 07:22:19 2020
New Revision: 530561
URL: https://svnweb.freebsd.org/changeset/ports/530561

Log:
  Add py-python-json-logger 0.1.11
  
  This library is provided to allow standard python logging to output log data as
  json objects. With JSON we can make our logs more readable by machines and we
  can stop writing custom parsers for syslog type records.
  
  WWW: https://github.com/madzak/python-json-logger

Added:
  head/devel/py-python-json-logger/
  head/devel/py-python-json-logger/Makefile   (contents, props changed)
  head/devel/py-python-json-logger/distinfo   (contents, props changed)
  head/devel/py-python-json-logger/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Apr  4 07:22:12 2020	(r530560)
+++ head/devel/Makefile	Sat Apr  4 07:22:19 2020	(r530561)
@@ -4892,6 +4892,7 @@
     SUBDIR += py-python-gist
     SUBDIR += py-python-gitlab
     SUBDIR += py-python-jenkins
+    SUBDIR += py-python-json-logger
     SUBDIR += py-python-jsonrpc-server
     SUBDIR += py-python-magic
     SUBDIR += py-python-mimeparse

Added: head/devel/py-python-json-logger/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-json-logger/Makefile	Sat Apr  4 07:22:19 2020	(r530561)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	python-json-logger
+PORTVERSION=	0.1.11
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Python library adding a json log formatter
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-python-json-logger/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-json-logger/distinfo	Sat Apr  4 07:22:19 2020	(r530561)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585907184
+SHA256 (python-json-logger-0.1.11.tar.gz) = b7a31162f2a01965a5efb94453ce69230ed208468b0bbc7fdfc56e6d8df2e281
+SIZE (python-json-logger-0.1.11.tar.gz) = 6019

Added: head/devel/py-python-json-logger/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-json-logger/pkg-descr	Sat Apr  4 07:22:19 2020	(r530561)
@@ -0,0 +1,5 @@
+This library is provided to allow standard python logging to output log data as
+json objects. With JSON we can make our logs more readable by machines and we
+can stop writing custom parsers for syslog type records.
+
+WWW: https://github.com/madzak/python-json-logger



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004040722.0347MJsC039884>