From owner-svn-ports-head@freebsd.org Thu Jun 29 15:38:21 2017 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 5E4F0D9FBF5; Thu, 29 Jun 2017 15:38:21 +0000 (UTC) (envelope-from feld@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 3A9A63F4C; Thu, 29 Jun 2017 15:38:21 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5TFcK04066991; Thu, 29 Jun 2017 15:38:20 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5TFcJj0066987; Thu, 29 Jun 2017 15:38:19 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201706291538.v5TFcJj0066987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 29 Jun 2017 15:38:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444649 - in head/devel: . py-logutils X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/devel: . py-logutils X-SVN-Commit-Revision: 444649 X-SVN-Commit-Repository: ports 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.23 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: Thu, 29 Jun 2017 15:38:21 -0000 Author: feld Date: Thu Jun 29 15:38:19 2017 New Revision: 444649 URL: https://svnweb.freebsd.org/changeset/ports/444649 Log: The logutils package provides a set of handlers for the Python standard library's logging package. Some of these handlers are out-of-scope for the standard library, and so they are packaged here. Others are updated versions which have appeared in recent Python releases, but are usable with older versions of Python and so are packaged here. WWW: https://bitbucket.org/vinay.sajip/logutils/ Added: head/devel/py-logutils/ head/devel/py-logutils/Makefile (contents, props changed) head/devel/py-logutils/distinfo (contents, props changed) head/devel/py-logutils/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 29 15:30:38 2017 (r444648) +++ head/devel/Makefile Thu Jun 29 15:38:19 2017 (r444649) @@ -4443,6 +4443,7 @@ SUBDIR += py-logan SUBDIR += py-logbook SUBDIR += py-logilab-common + SUBDIR += py-logutils SUBDIR += py-louie SUBDIR += py-lxml SUBDIR += py-magic Added: head/devel/py-logutils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-logutils/Makefile Thu Jun 29 15:38:19 2017 (r444649) @@ -0,0 +1,18 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= logutils +PORTVERSION= 0.3.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Handlers for the Python standard library logging package + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-logutils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-logutils/distinfo Thu Jun 29 15:38:19 2017 (r444649) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498748134 +SHA256 (logutils-0.3.5.tar.gz) = bc058a25d5c209461f134e1f03cab637d66a7a5ccc12e593db56fbb279899a82 +SIZE (logutils-0.3.5.tar.gz) = 27703 Added: head/devel/py-logutils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-logutils/pkg-descr Thu Jun 29 15:38:19 2017 (r444649) @@ -0,0 +1,9 @@ +The logutils package provides a set of handlers for the Python standard +library's logging package. + +Some of these handlers are out-of-scope for the standard library, and so +they are packaged here. Others are updated versions which have appeared +in recent Python releases, but are usable with older versions of Python +and so are packaged here. + +WWW: https://bitbucket.org/vinay.sajip/logutils/