Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BEDFE84EE5 for ; Fri, 17 Nov 2023 10:02:57 +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 Z87wim9SAPLL for ; Fri, 17 Nov 2023 10:02:57 +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 169A784CD0 for ; Fri, 17 Nov 2023 10:02:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 10633FA3D; Fri, 17 Nov 2023 10:02:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700215377192260" MIME-Version: 1.0 Date: Fri, 17 Nov 2023 10:02:57 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-poetry To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231117100257.10633FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700215377192260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Nov 17 10:02:56 UTC 2023 Modified Files: pkgsrc/devel/py-poetry: Makefile distinfo Log Message: py-poetry: updated to 1.7.1 1.7.1 Fixed Fix an issue where sdists that call CLI tools of their build requirements could not be installed Fix an issue where sdists with symlinks could not be installed due to a broken tarfile datafilter Fix an issue where poetry init failed when trying to add dependencies Fix an issue where poetry install failed if virtualenvs.create was set to false To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-poetry/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-poetry/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700215377192260 Content-Disposition: inline Content-Length: 3877 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-poetry/Makefile diff -u pkgsrc/devel/py-poetry/Makefile:1.15 pkgsrc/devel/py-poetry/Makefile:1.16 --- pkgsrc/devel/py-poetry/Makefile:1.15 Tue Nov 7 09:25:52 2023 +++ pkgsrc/devel/py-poetry/Makefile Fri Nov 17 10:02:56 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2023/11/07 09:25:52 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2023/11/17 10:02:56 adam Exp $ -DISTNAME= poetry-1.7.0 +DISTNAME= poetry-1.7.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/poetry/} @@ -10,27 +10,27 @@ HOMEPAGE= https://python-poetry.org/ COMMENT= Python dependency management and packaging made easy LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-build>=0.10.0:../../devel/py-build +DEPENDS+= ${PYPKGPREFIX}-build>=1.0.3:../../devel/py-build DEPENDS+= ${PYPKGPREFIX}-cachecontrol>=0.13.0:../../devel/py-cachecontrol -DEPENDS+= ${PYPKGPREFIX}-cleo>=2.0.0:../../comms/py-cleo +DEPENDS+= ${PYPKGPREFIX}-cleo>=2.1.0:../../comms/py-cleo DEPENDS+= ${PYPKGPREFIX}-crashtest>=0.4.1:../../misc/py-crashtest DEPENDS+= ${PYPKGPREFIX}-dulwich>=0.21.2:../../devel/py-dulwich +DEPENDS+= ${PYPKGPREFIX}-fastjsonschema>=2.18.0:../../textproc/py-fastjsonschema DEPENDS+= ${PYPKGPREFIX}-installer>=0.7.0:../../misc/py-installer -DEPENDS+= ${PYPKGPREFIX}-jsonschema>=4.10.0:../../textproc/py-jsonschema DEPENDS+= ${PYPKGPREFIX}-keyring>=24.0.0:../../security/py-keyring -DEPENDS+= ${PYPKGPREFIX}-packaging>=20.4:../../devel/py-packaging +DEPENDS+= ${PYPKGPREFIX}-packaging>=20.5:../../devel/py-packaging DEPENDS+= ${PYPKGPREFIX}-pexpect>=4.7.0:../../devel/py-pexpect DEPENDS+= ${PYPKGPREFIX}-pkginfo>=1.9.4:../../devel/py-pkginfo DEPENDS+= ${PYPKGPREFIX}-platformdirs>=3.0.0:../../misc/py-platformdirs -DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.7.0:../../devel/py-poetry-core -DEPENDS+= ${PYPKGPREFIX}-poetry-plugin-export>=1.5.0:../../devel/py-poetry-plugin-export +DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.8.1:../../devel/py-poetry-core +DEPENDS+= ${PYPKGPREFIX}-poetry-plugin-export>=1.6.0:../../devel/py-poetry-plugin-export DEPENDS+= ${PYPKGPREFIX}-pyproject_hooks>=1.0.0:../../devel/py-pyproject_hooks DEPENDS+= ${PYPKGPREFIX}-requests>=2.26:../../devel/py-requests DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.9.1:../../devel/py-requests-toolbelt DEPENDS+= ${PYPKGPREFIX}-shellingham>=1.5:../../misc/py-shellingham DEPENDS+= ${PYPKGPREFIX}-tomlkit>=0.11.4:../../textproc/py-tomlkit DEPENDS+= ${PYPKGPREFIX}-trove-classifiers>=2022.5.19:../../misc/py-trove-classifiers -DEPENDS+= ${PYPKGPREFIX}-virtualenv>=20.4.7:../../devel/py-virtualenv +DEPENDS+= ${PYPKGPREFIX}-virtualenv>=20.23.0:../../devel/py-virtualenv TEST_DEPENDS+= ${PYPKGPREFIX}-deepdiff>=6.3:../../textproc/py-deepdiff TEST_DEPENDS+= ${PYPKGPREFIX}-httpretty>=1.0:../../www/py-httpretty TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=4.0:../../devel/py-test-cov Index: pkgsrc/devel/py-poetry/distinfo diff -u pkgsrc/devel/py-poetry/distinfo:1.9 pkgsrc/devel/py-poetry/distinfo:1.10 --- pkgsrc/devel/py-poetry/distinfo:1.9 Tue Nov 7 09:25:52 2023 +++ pkgsrc/devel/py-poetry/distinfo Fri Nov 17 10:02:56 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.9 2023/11/07 09:25:52 wiz Exp $ +$NetBSD: distinfo,v 1.10 2023/11/17 10:02:56 adam Exp $ -BLAKE2s (poetry-1.7.0.tar.gz) = 1f6d5e32d4081f1ef5fcf7f63c0ead49bd4f4bd988f46e86c9c2d51195aba392 -SHA512 (poetry-1.7.0.tar.gz) = fc0d358d62100fcd14dec3bb13cc8162339ba4947c2118abb4ccefd788ea3e10750f92f4a51c8feb7f2d5cebf0ac670092e730518463c61bc49bd044a9a8e9c7 -Size (poetry-1.7.0.tar.gz) = 1482460 bytes +BLAKE2s (poetry-1.7.1.tar.gz) = 9810b1d8e1481e7f2b71d4fc40ebd4b3833a5ce62865049a2df1e0e78656923f +SHA512 (poetry-1.7.1.tar.gz) = bf3654e9de71da35d7adfc239797dbed9813a2a1bb585b0bd9ad398706ad1628430422d0ebe7d9c3dcc1f619ad1a1a2073e9d9d3296354bf2f14a1aed5a5444e +Size (poetry-1.7.1.tar.gz) = 1483927 bytes --_----------=_1700215377192260--