Received: by mail.netbsd.org (Postfix, from userid 605) id 1405B84DC0; Mon, 18 Feb 2019 12:49:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 870FD84DBF for ; Mon, 18 Feb 2019 12:48:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id DX_eS_ct6-Jb for ; Mon, 18 Feb 2019 12:48:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C6C2C84DB5 for ; Mon, 18 Feb 2019 12:48:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C0BB5FB16; Mon, 18 Feb 2019 12:48:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155049413875870" MIME-Version: 1.0 Date: Mon, 18 Feb 2019 12:48:58 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-zconfig To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190218124858.C0BB5FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155049413875870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Feb 18 12:48:58 UTC 2019 Modified Files: pkgsrc/devel/py-zconfig: Makefile PLIST distinfo Log Message: py-zconfig: updated to 3.4.0 3.4.0: Many changes have been made in the support for logging configurations: - The log handler section types defined by the ZConfig.components.logger package support additional, optional parameters: style Used to configure alternate format styles as found in the Python 3 standard library. Four style values are supported: classic (the default), format (equivalent to style='{' in Python 3), template (equivalent to style='$'), and safe-template (similar to template, but using the string.Template method safe_substitute method). A best-effort implementation is provided for Python 2. arbitrary-fields A Boolean defauting to False for backward compatibility, allows arbitrary replacement field names to be accepted in the format string (regardless of the style setting). This supports applications where log records are known to be generated with additional string or numeric fields, at least for some loggers. (An exception is still raised at format time if the additional fields are not provided, unless the style value safe-template is used.) - The logfile section type defined by the ZConfig.components.logger package supports the optional delay and encoding parameters. These can only be used for regular files, not the special STDOUT and STDERR streams. - More validation on the parameters to the logfile and email-notifier sections is performed early (at the construction of the factory, rather than at creation of the logging handler). This allows more checking of parameter combinations before any log files are opened. - The ZConfig.components.logger.handlers.log_format data type function now supports formats that include numeric formatting for levelno, and accept funcName as a valid log record field (added in Python 2.6 and 3.1). To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-zconfig/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-zconfig/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-zconfig/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155049413875870 Content-Disposition: inline Content-Length: 3864 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-zconfig/Makefile diff -u pkgsrc/devel/py-zconfig/Makefile:1.19 pkgsrc/devel/py-zconfig/Makefile:1.20 --- pkgsrc/devel/py-zconfig/Makefile:1.19 Tue Oct 23 09:46:43 2018 +++ pkgsrc/devel/py-zconfig/Makefile Mon Feb 18 12:48:58 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2018/10/23 09:46:43 adam Exp $ +# $NetBSD: Makefile,v 1.20 2019/02/18 12:48:58 adam Exp $ -DISTNAME= ZConfig-3.3.0 +DISTNAME= ZConfig-3.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=Z/ZConfig/} @@ -18,8 +18,8 @@ USE_LANGUAGES= # none post-install: cd ${DESTDIR}${PREFIX}/bin && \ - ${MV} zconfig zconfig-${PYVERSSUFFIX} && \ - ${MV} zconfig_schema2html zconfig_schema2html-${PYVERSSUFFIX} || ${TRUE} + ${MV} zconfig zconfig-${PYVERSSUFFIX} && \ + ${MV} zconfig_schema2html zconfig_schema2html-${PYVERSSUFFIX} || ${TRUE} .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-zconfig/PLIST diff -u pkgsrc/devel/py-zconfig/PLIST:1.7 pkgsrc/devel/py-zconfig/PLIST:1.8 --- pkgsrc/devel/py-zconfig/PLIST:1.7 Tue Oct 23 09:46:43 2018 +++ pkgsrc/devel/py-zconfig/PLIST Mon Feb 18 12:48:58 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2018/10/23 09:46:43 adam Exp $ +@comment $NetBSD: PLIST,v 1.8 2019/02/18 12:48:58 adam Exp $ bin/zconfig-${PYVERSSUFFIX} bin/zconfig_schema2html-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO @@ -53,6 +53,9 @@ ${PYSITELIB}/ZConfig/components/logger/e ${PYSITELIB}/ZConfig/components/logger/factory.py ${PYSITELIB}/ZConfig/components/logger/factory.pyc ${PYSITELIB}/ZConfig/components/logger/factory.pyo +${PYSITELIB}/ZConfig/components/logger/formatter.py +${PYSITELIB}/ZConfig/components/logger/formatter.pyc +${PYSITELIB}/ZConfig/components/logger/formatter.pyo ${PYSITELIB}/ZConfig/components/logger/handlers.py ${PYSITELIB}/ZConfig/components/logger/handlers.pyc ${PYSITELIB}/ZConfig/components/logger/handlers.pyo @@ -67,6 +70,12 @@ ${PYSITELIB}/ZConfig/components/logger/l ${PYSITELIB}/ZConfig/components/logger/tests/__init__.py ${PYSITELIB}/ZConfig/components/logger/tests/__init__.pyc ${PYSITELIB}/ZConfig/components/logger/tests/__init__.pyo +${PYSITELIB}/ZConfig/components/logger/tests/support.py +${PYSITELIB}/ZConfig/components/logger/tests/support.pyc +${PYSITELIB}/ZConfig/components/logger/tests/support.pyo +${PYSITELIB}/ZConfig/components/logger/tests/test_formatter.py +${PYSITELIB}/ZConfig/components/logger/tests/test_formatter.pyc +${PYSITELIB}/ZConfig/components/logger/tests/test_formatter.pyo ${PYSITELIB}/ZConfig/components/logger/tests/test_logger.py ${PYSITELIB}/ZConfig/components/logger/tests/test_logger.pyc ${PYSITELIB}/ZConfig/components/logger/tests/test_logger.pyo Index: pkgsrc/devel/py-zconfig/distinfo diff -u pkgsrc/devel/py-zconfig/distinfo:1.6 pkgsrc/devel/py-zconfig/distinfo:1.7 --- pkgsrc/devel/py-zconfig/distinfo:1.6 Tue Oct 23 09:46:43 2018 +++ pkgsrc/devel/py-zconfig/distinfo Mon Feb 18 12:48:58 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2018/10/23 09:46:43 adam Exp $ +$NetBSD: distinfo,v 1.7 2019/02/18 12:48:58 adam Exp $ -SHA1 (ZConfig-3.3.0.tar.gz) = 6978cff09d6af1e46b13d2e2d919232d93598f0e -RMD160 (ZConfig-3.3.0.tar.gz) = 4ae2034fba8a1e26ff05872ce491bfe060ecec66 -SHA512 (ZConfig-3.3.0.tar.gz) = 47c166f04dafbf3391e0d5b323751728b8d87e63a3eb37837ce7bab3d31ab52f1d3d7236aa9d35fd81a248b72811f73796d0c21b5b657758f0f22068a8d9ec74 -Size (ZConfig-3.3.0.tar.gz) = 113198 bytes +SHA1 (ZConfig-3.4.0.tar.gz) = a90792d3611445b6d4f2a704a7db3a986397bc64 +RMD160 (ZConfig-3.4.0.tar.gz) = c1bdecc29bbb150d271e32dc61e79eca2640a959 +SHA512 (ZConfig-3.4.0.tar.gz) = de6589b50200be10604bb898465b8ea2bcc6bf66dcbc32e22359bd04d6d4e81a25797e9b3fe195052503b06aa5fa3253b8dfc6d003d24b3b08d5e5b1779382b3 +Size (ZConfig-3.4.0.tar.gz) = 121009 bytes --_----------=_155049413875870--