Date: Sun, 15 May 2016 17:49:56 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415271 - in head/devel: . py-structlog Message-ID: <201605151749.u4FHnuVx025573@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Sun May 15 17:49:55 2016 New Revision: 415271 URL: https://svnweb.freebsd.org/changeset/ports/415271 Log: Structured Logging for Python Makes structured logging with key-value logging, incremental context building, and arbitrary formatting easy. WWW: http://www.structlog.org/ PR: 208888 Submitted by: Dave Cottlehuber <dch@skunkwerks.at> Added: head/devel/py-structlog/ head/devel/py-structlog/Makefile (contents, props changed) head/devel/py-structlog/distinfo (contents, props changed) head/devel/py-structlog/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun May 15 17:49:14 2016 (r415270) +++ head/devel/Makefile Sun May 15 17:49:55 2016 (r415271) @@ -4433,6 +4433,7 @@ SUBDIR += py-statsd SUBDIR += py-stdnum SUBDIR += py-stevedore + SUBDIR += py-structlog SUBDIR += py-stsci.distutils SUBDIR += py-subversion SUBDIR += py-subvertpy Added: head/devel/py-structlog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-structlog/Makefile Sun May 15 17:49:55 2016 (r415271) @@ -0,0 +1,21 @@ +# Created by: Dave Cottlehuber <dch@skunkwerks.at> +# $FreeBSD$ + +PORTNAME= structlog +PORTVERSION= 16.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dch@skunkwerks.at +COMMENT= Structured Logging for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.3.3:devel/py-colorama \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-structlog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-structlog/distinfo Sun May 15 17:49:55 2016 (r415271) @@ -0,0 +1,2 @@ +SHA256 (structlog-16.0.0.tar.gz) = ba305858ee5dcd4518d79ee99907565bcd2ccd3f1cfba9679105078d13e566d0 +SIZE (structlog-16.0.0.tar.gz) = 154029 Added: head/devel/py-structlog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-structlog/pkg-descr Sun May 15 17:49:55 2016 (r415271) @@ -0,0 +1,6 @@ +Structured Logging for Python + +Makes structured logging with key-value logging, incremental context building, +and arbitrary formatting easy. + +WWW: http://www.structlog.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605151749.u4FHnuVx025573>