From owner-svn-ports-all@freebsd.org Sun Mar 25 18:04:58 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B5C2F5F047; Sun, 25 Mar 2018 18:04:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C62271579; Sun, 25 Mar 2018 18:04:58 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 074D5217FC; Sun, 25 Mar 2018 18:04:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2PI4vM9097727; Sun, 25 Mar 2018 18:04:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2PI4vf8097723; Sun, 25 Mar 2018 18:04:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803251804.w2PI4vf8097723@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Mar 2018 18:04:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465535 - in head/devel: . py-mondrian X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-mondrian X-SVN-Commit-Revision: 465535 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Mar 2018 18:04:58 -0000 Author: sunpoet Date: Sun Mar 25 18:04:57 2018 New Revision: 465535 URL: https://svnweb.freebsd.org/changeset/ports/465535 Log: Add py-mondrian 0.6.6 Mondrian is a small library that will make you use python logging module, once and for all. Most python coders who avoids the systematic usage of logging in their projects does so because it feels complicated to setup, but it's not. Mondrian configures the python standard logging module with reasonable defaults, and enhance its default output formatters for better readability. Mondrian provides a one-call interface to its configuration, with pretty formatters that makes you feel great. WWW: https://python-mondrian.github.io/ WWW: https://github.com/python-mondrian/mondrian Added: head/devel/py-mondrian/ head/devel/py-mondrian/Makefile (contents, props changed) head/devel/py-mondrian/distinfo (contents, props changed) head/devel/py-mondrian/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 25 18:04:32 2018 (r465534) +++ head/devel/Makefile Sun Mar 25 18:04:57 2018 (r465535) @@ -4620,6 +4620,7 @@ SUBDIR += py-minimongo SUBDIR += py-minio SUBDIR += py-mock + SUBDIR += py-mondrian SUBDIR += py-mongoengine SUBDIR += py-mongokit SUBDIR += py-monotonic Added: head/devel/py-mondrian/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mondrian/Makefile Sun Mar 25 18:04:57 2018 (r465535) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= mondrian +PORTVERSION= 0.6.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Logging with pretty colored squares + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.3.7:devel/py-colorama@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/devel/py-mondrian/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mondrian/distinfo Sun Mar 25 18:04:57 2018 (r465535) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521943290 +SHA256 (mondrian-0.6.6.tar.gz) = 48c6bd9dfc908b7901ea27dfd8eee32d0818c821d678f8e7f1985cdb0c98c80c +SIZE (mondrian-0.6.6.tar.gz) = 5947 Added: head/devel/py-mondrian/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mondrian/pkg-descr Sun Mar 25 18:04:57 2018 (r465535) @@ -0,0 +1,14 @@ +Mondrian is a small library that will make you use python logging module, once +and for all. + +Most python coders who avoids the systematic usage of logging in their projects +does so because it feels complicated to setup, but it's not. + +Mondrian configures the python standard logging module with reasonable defaults, +and enhance its default output formatters for better readability. + +Mondrian provides a one-call interface to its configuration, with pretty +formatters that makes you feel great. + +WWW: https://python-mondrian.github.io/ +WWW: https://github.com/python-mondrian/mondrian