Received: by mail.netbsd.org (Postfix, from userid 605) id CA4E984EF2; Sun, 25 Feb 2024 22:27:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708900031; bh=q0YrYRwSuOeZHE3V3pWeFr2JC0dQaQ3dFiRFlWFLBtc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=bpDKPuOmY5JX8UuBYd909EDeqLW+Nhks4J74hmmARWkYwP7NK/zHf5PLfvyate4fj U2ZJILUmOzsgkkBHEWHYIxmn5LnVz9yGKPfJfwvwFlL9L5zvO2/swbqvzc/68dWa+c m0iI8J3wVFp/bslfSnp5o8MDwCD7YvLjfrChH0sE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BC15384EDC for ; Sun, 25 Feb 2024 22:27:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id s0Ah5gtpiqzC for ; Sun, 25 Feb 2024 22:27:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D897984D50 for ; Sun, 25 Feb 2024 22:27:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708900029; bh=q0YrYRwSuOeZHE3V3pWeFr2JC0dQaQ3dFiRFlWFLBtc=; h=Date:From:Subject:To:Reply-To; b=2lIBuaPUCiUzEtdk8NTl7RKzr9baffrkseSC/fBbfp7g+x1vFiL2Tnt4/5DB/tMYA yr2wewqmBcMVn0/xX1sRqARSvBO1HfFzYzeCTRLVczHOaB6NdP51dX9cJyCRpS0+Vl OOhcm5EObFHF11KohBE6Lx4Grajn92ZZUuA0GQU4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id D006EFA27; Sun, 25 Feb 2024 22:27:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1708900028209910" MIME-Version: 1.0 Date: Sun, 25 Feb 2024 22:27:08 +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: <20240225222708.D006EFA27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1708900028209910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Feb 25 22:27:08 UTC 2024 Modified Files: pkgsrc/devel/py-importlib-resources: Makefile PLIST distinfo Log Message: py-importlib-resources: updated to 6.1.2 v6.1.2 Bugfixes - Fixed NotADirectoryError when calling files on a subdirectory of a namespace package. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-importlib-resources/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/py-importlib-resources/PLIST cvs rdiff -u -r1.17 -r1.18 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. --_----------=_1708900028209910 Content-Disposition: inline Content-Length: 4938 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.22 pkgsrc/devel/py-importlib-resources/Makefile:1.23 --- pkgsrc/devel/py-importlib-resources/Makefile:1.22 Fri Nov 10 18:36:05 2023 +++ pkgsrc/devel/py-importlib-resources/Makefile Sun Feb 25 22:27:08 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2023/11/10 18:36:05 adam Exp $ +# $NetBSD: Makefile,v 1.23 2024/02/25 22:27:08 adam Exp $ -DISTNAME= importlib_resources-6.1.1 +DISTNAME= importlib_resources-6.1.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/importlib_resources/} @@ -10,8 +10,10 @@ HOMEPAGE= https://importlib-resources.re COMMENT= Read resources from Python packages LICENSE= apache-2.0 -TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=56:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4.1:../../devel/py-setuptools_scm TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +TEST_DEPENDS+= ${PYPKGPREFIX}-zipp>=3.17:../../archivers/py-zipp USE_LANGUAGES= # none Index: pkgsrc/devel/py-importlib-resources/PLIST diff -u pkgsrc/devel/py-importlib-resources/PLIST:1.12 pkgsrc/devel/py-importlib-resources/PLIST:1.13 --- pkgsrc/devel/py-importlib-resources/PLIST:1.12 Sat Oct 28 19:57:01 2023 +++ pkgsrc/devel/py-importlib-resources/PLIST Sun Feb 25 22:27:08 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2023/10/28 19:57:01 wiz Exp $ +@comment $NetBSD: PLIST,v 1.13 2024/02/25 22:27:08 adam Exp $ ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE ${PYSITELIB}/${WHEEL_INFODIR}/METADATA ${PYSITELIB}/${WHEEL_INFODIR}/RECORD @@ -13,15 +13,27 @@ ${PYSITELIB}/importlib_resources/_adapte ${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 ${PYSITELIB}/importlib_resources/_itertools.py ${PYSITELIB}/importlib_resources/_itertools.pyc ${PYSITELIB}/importlib_resources/_itertools.pyo ${PYSITELIB}/importlib_resources/abc.py ${PYSITELIB}/importlib_resources/abc.pyc ${PYSITELIB}/importlib_resources/abc.pyo +${PYSITELIB}/importlib_resources/compat/__init__.py +${PYSITELIB}/importlib_resources/compat/__init__.pyc +${PYSITELIB}/importlib_resources/compat/__init__.pyo +${PYSITELIB}/importlib_resources/compat/py38.py +${PYSITELIB}/importlib_resources/compat/py38.pyc +${PYSITELIB}/importlib_resources/compat/py38.pyo +${PYSITELIB}/importlib_resources/compat/py39.py +${PYSITELIB}/importlib_resources/compat/py39.pyc +${PYSITELIB}/importlib_resources/compat/py39.pyo +${PYSITELIB}/importlib_resources/future/__init__.py +${PYSITELIB}/importlib_resources/future/__init__.pyc +${PYSITELIB}/importlib_resources/future/__init__.pyo +${PYSITELIB}/importlib_resources/future/adapters.py +${PYSITELIB}/importlib_resources/future/adapters.pyc +${PYSITELIB}/importlib_resources/future/adapters.pyo ${PYSITELIB}/importlib_resources/py.typed ${PYSITELIB}/importlib_resources/readers.py ${PYSITELIB}/importlib_resources/readers.pyc @@ -61,6 +73,7 @@ ${PYSITELIB}/importlib_resources/tests/d ${PYSITELIB}/importlib_resources/tests/data02/two/__init__.pyo ${PYSITELIB}/importlib_resources/tests/data02/two/resource2.txt ${PYSITELIB}/importlib_resources/tests/namespacedata01/binary.file +${PYSITELIB}/importlib_resources/tests/namespacedata01/subdirectory/binary.file ${PYSITELIB}/importlib_resources/tests/namespacedata01/utf-16.file ${PYSITELIB}/importlib_resources/tests/namespacedata01/utf-8.file ${PYSITELIB}/importlib_resources/tests/test_compatibilty_files.py Index: pkgsrc/devel/py-importlib-resources/distinfo diff -u pkgsrc/devel/py-importlib-resources/distinfo:1.17 pkgsrc/devel/py-importlib-resources/distinfo:1.18 --- pkgsrc/devel/py-importlib-resources/distinfo:1.17 Fri Nov 10 18:36:05 2023 +++ pkgsrc/devel/py-importlib-resources/distinfo Sun Feb 25 22:27:08 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.17 2023/11/10 18:36:05 adam Exp $ +$NetBSD: distinfo,v 1.18 2024/02/25 22:27:08 adam Exp $ -BLAKE2s (importlib_resources-6.1.1.tar.gz) = f5d28500ee08ed8225ccd4e546a653815dba169fc26f0ed14950799db003fb24 -SHA512 (importlib_resources-6.1.1.tar.gz) = 4d16891b81ef0257da3df8db930f3c823af5ed9f01907ee278bf7b8e78c887ab1d88dcfda4b70c648bbb4a92449727140e7b255d5d92458233ce55570d624d81 -Size (importlib_resources-6.1.1.tar.gz) = 38620 bytes +BLAKE2s (importlib_resources-6.1.2.tar.gz) = b435cb12887a3f98706392303b599ffa310df0859e3d97a17c55852c536a3e05 +SHA512 (importlib_resources-6.1.2.tar.gz) = 35d20c535a0c15ba883794ac76cda2648b62b9a0234f084e8e5527f1b00d9f81da8f3221c30bb54bb0c784cac1d86a4ae8d79bd30377e0839216dd9528d10a62 +Size (importlib_resources-6.1.2.tar.gz) = 38932 bytes --_----------=_1708900028209910--