Received: by mail.netbsd.org (Postfix, from userid 605) id 45F4384DCD; Mon, 29 Apr 2019 10:37:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BDCBF84DBC for ; Mon, 29 Apr 2019 10:37:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id aYkyLa40iIZs for ; Mon, 29 Apr 2019 10:37:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3A2E284D24 for ; Mon, 29 Apr 2019 10:37:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 34C45FB16; Mon, 29 Apr 2019 10:37:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155653423492250" MIME-Version: 1.0 Date: Mon, 29 Apr 2019 10:37:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-defusedxml To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190429103714.34C45FB16@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. --_----------=_155653423492250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 29 10:37:14 UTC 2019 Modified Files: pkgsrc/textproc/py-defusedxml: Makefile distinfo Log Message: py-defusedxml: updated to 0.6.0 defusedxml 0.6.0 - Increase test coverage. - Add badges to README. defusedxml 0.6.0rc1 - Test on Python 3.7 stable and 3.8-dev - Drop support for Python 3.4 - No longer pass *html* argument to XMLParse. It has been deprecated and ignored for a long time. The DefusedXMLParser still takes a html argument. A deprecation warning is issued when the argument is False and a TypeError when it's True. - defusedxml now fails early when pyexpat stdlib module is not available or broken. - defusedxml.ElementTree.__all__ now lists ParseError as public attribute. - The defusedxml.ElementTree and defusedxml.cElementTree modules had a typo and used XMLParse instead of XMLParser as an alias for DefusedXMLParser. Both the old and fixed name are now available. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/py-defusedxml/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/py-defusedxml/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155653423492250 Content-Disposition: inline Content-Length: 1740 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-defusedxml/Makefile diff -u pkgsrc/textproc/py-defusedxml/Makefile:1.5 pkgsrc/textproc/py-defusedxml/Makefile:1.6 --- pkgsrc/textproc/py-defusedxml/Makefile:1.5 Sat Sep 16 19:27:19 2017 +++ pkgsrc/textproc/py-defusedxml/Makefile Mon Apr 29 10:37:14 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2017/09/16 19:27:19 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2019/04/29 10:37:14 adam Exp $ -DISTNAME= defusedxml-0.5.0 +DISTNAME= defusedxml-0.6.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= python textproc MASTER_SITES= ${MASTER_SITE_PYPI:=d/defusedxml/} Index: pkgsrc/textproc/py-defusedxml/distinfo diff -u pkgsrc/textproc/py-defusedxml/distinfo:1.3 pkgsrc/textproc/py-defusedxml/distinfo:1.4 --- pkgsrc/textproc/py-defusedxml/distinfo:1.3 Fri Apr 14 21:15:51 2017 +++ pkgsrc/textproc/py-defusedxml/distinfo Mon Apr 29 10:37:14 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2017/04/14 21:15:51 adam Exp $ +$NetBSD: distinfo,v 1.4 2019/04/29 10:37:14 adam Exp $ -SHA1 (defusedxml-0.5.0.tar.gz) = 70ff80a849bbc2e9241daa1debda9f43e7fbdff0 -RMD160 (defusedxml-0.5.0.tar.gz) = a2b4c114a3b191a73b795e6d5f475fc722ddf649 -SHA512 (defusedxml-0.5.0.tar.gz) = 71e1a604df9be41ded454bcdfa63610e897eb405295d7365fcddfc5f50f7572c36f0bd91a4a1fdf47d1b097637bd9fdcf08f1cdb73e2fe64eea0320a7532e452 -Size (defusedxml-0.5.0.tar.gz) = 60405 bytes +SHA1 (defusedxml-0.6.0.tar.gz) = 0bba33cc1e6d59f8fc71ceb8d12ad951072ad122 +RMD160 (defusedxml-0.6.0.tar.gz) = f7833b302774bf32c68a4f3376cad9fcaef1a2ff +SHA512 (defusedxml-0.6.0.tar.gz) = dd1313802cf8565fd319ef10af04075019d00cba557e6414b2a2762bd4302437a32c05cd8c9e4cec5310c68c6a95d2951acf1360244e7974d40bb3fe963b7226 +Size (defusedxml-0.6.0.tar.gz) = 62670 bytes --_----------=_155653423492250--