Received: by mail.netbsd.org (Postfix, from userid 605) id 97A8984D2E; Sun, 15 Mar 2020 23:14:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1F12F84D04 for ; Sun, 15 Mar 2020 23:14:41 +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 VmtKU9nb5fCi for ; Sun, 15 Mar 2020 23:14:40 +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 7F2E484D02 for ; Sun, 15 Mar 2020 23:14:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 71A40FB27; Sun, 15 Mar 2020 23:14:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584314080142140" MIME-Version: 1.0 Date: Sun, 15 Mar 2020 23:14:40 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-importlib-resources To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200315231440.71A40FB27@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. --_----------=_1584314080142140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Mar 15 23:14:40 UTC 2020 Modified Files: pkgsrc/devel/py-importlib-resources: Makefile PLIST distinfo Log Message: py-importlib-resources: updated to 1.3.1 v1.3.1 For improved compatibility, importlib_resources.trees is now imported implicitly. v1.3.0 Add extensibility support for non-standard loaders to supply Traversable resources. Introduces a new abstract base class abc.TraversableResources that supersedes (but implements for compatibility) abc.ResourceReader. Any loader that implements (implicitly or explicitly) the TraversableResources.files method will be capable of supplying resources with subdirectory support. Preferred way to access as_file is now from top-level module. importlib_resources.trees.as_file is deprecated and discouraged. Moved Traversable abc to abc module. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-importlib-resources/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-importlib-resources/PLIST \ pkgsrc/devel/py-importlib-resources/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584314080142140 Content-Disposition: inline Content-Length: 3431 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-importlib-resources/Makefile diff -u pkgsrc/devel/py-importlib-resources/Makefile:1.4 pkgsrc/devel/py-importlib-resources/Makefile:1.5 --- pkgsrc/devel/py-importlib-resources/Makefile:1.4 Thu Mar 12 07:35:23 2020 +++ pkgsrc/devel/py-importlib-resources/Makefile Sun Mar 15 23:14:40 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2020/03/12 07:35:23 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2020/03/15 23:14:40 adam Exp $ -DISTNAME= importlib_resources-1.2.0 +DISTNAME= importlib_resources-1.3.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/importlib_resources/} @@ -10,8 +10,7 @@ HOMEPAGE= https://importlib-resources.re COMMENT= Read resources from Python packages LICENSE= apache-2.0 -BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools -BUILD_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4.1:../../devel/py-setuptools_scm .include "../../lang/python/pyversion.mk" .if ${_PYTHON_VERSION} == 27 DEPENDS+= ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2 Index: pkgsrc/devel/py-importlib-resources/PLIST diff -u pkgsrc/devel/py-importlib-resources/PLIST:1.3 pkgsrc/devel/py-importlib-resources/PLIST:1.4 --- pkgsrc/devel/py-importlib-resources/PLIST:1.3 Tue Mar 3 06:01:00 2020 +++ pkgsrc/devel/py-importlib-resources/PLIST Sun Mar 15 23:14:40 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/03/03 06:01:00 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2020/03/15 23:14:40 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -7,6 +7,9 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx ${PYSITELIB}/importlib_resources/__init__.py ${PYSITELIB}/importlib_resources/__init__.pyc ${PYSITELIB}/importlib_resources/__init__.pyo +${PYSITELIB}/importlib_resources/_common.py +${PYSITELIB}/importlib_resources/_common.pyc +${PYSITELIB}/importlib_resources/_common.pyo ${PYSITELIB}/importlib_resources/_compat.py ${PYSITELIB}/importlib_resources/_compat.pyc ${PYSITELIB}/importlib_resources/_compat.pyo Index: pkgsrc/devel/py-importlib-resources/distinfo diff -u pkgsrc/devel/py-importlib-resources/distinfo:1.3 pkgsrc/devel/py-importlib-resources/distinfo:1.4 --- pkgsrc/devel/py-importlib-resources/distinfo:1.3 Tue Mar 3 06:01:00 2020 +++ pkgsrc/devel/py-importlib-resources/distinfo Sun Mar 15 23:14:40 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/03/03 06:01:00 adam Exp $ +$NetBSD: distinfo,v 1.4 2020/03/15 23:14:40 adam Exp $ -SHA1 (importlib_resources-1.2.0.tar.gz) = d6912270015a1266cf8537afaaff9946245bf3ff -RMD160 (importlib_resources-1.2.0.tar.gz) = 189c3be54509fa0a8c04bc0577abe2c7fa9e38d6 -SHA512 (importlib_resources-1.2.0.tar.gz) = e9b406ed849fe00721becf50cee5b30df40c618b3fa62aa2499fba98f91c13ae250a0c45ca7093765b644aff888e448ca3842192867dc2c5e2801736dab3f3a0 -Size (importlib_resources-1.2.0.tar.gz) = 23250 bytes +SHA1 (importlib_resources-1.3.1.tar.gz) = 85960918fd61426af38abf4e08284ba581efa39f +RMD160 (importlib_resources-1.3.1.tar.gz) = e0c5373589d5684676652c825a41dbe63a87bd90 +SHA512 (importlib_resources-1.3.1.tar.gz) = 28661fff19475d27caaa420244a4e2a1fe12ce525eaea4f9892fad5f50a1b991be8c9764c34c1ca0bcc840d49535a963f9784caab221848f0ce0e43b9991dd3d +Size (importlib_resources-1.3.1.tar.gz) = 23683 bytes --_----------=_1584314080142140--