From owner-svn-ports-head@freebsd.org Sun May 15 17:49:57 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E80BB3C4DF; Sun, 15 May 2016 17:49:57 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54C431EA8; Sun, 15 May 2016 17:49:57 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4FHnu2d025577; Sun, 15 May 2016 17:49:56 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4FHnuVx025573; Sun, 15 May 2016 17:49:56 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201605151749.u4FHnuVx025573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 15 May 2016 17:49:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415271 - in head/devel: . py-structlog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2016 17:49:57 -0000 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 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 +# $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 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/