Received: by mail.netbsd.org (Postfix, from userid 605) id 22990852C7; Fri, 2 Feb 2024 16:23:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 50E76852C4 for ; Fri, 2 Feb 2024 16:23:12 +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 lR5Y8I8ofPDs for ; Fri, 2 Feb 2024 16:23:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A474E852BD for ; Fri, 2 Feb 2024 16:23:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9853AFA42; Fri, 2 Feb 2024 16:23:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706890991279010" MIME-Version: 1.0 Date: Fri, 2 Feb 2024 16:23:11 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-poetry-core To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240202162311.9853AFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706890991279010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Feb 2 16:23:11 UTC 2024 Modified Files: pkgsrc/devel/py-poetry-core: Makefile distinfo Log Message: py-poetry-core: updated to 1.9.0 1.9.0 Added Add a to key in tool.poetry.packages to allow custom subpackage names Add support for path dependencies that do not define a build system Add a tool.poetry.package-mode key to support non-package mode Changed Update list of supported licenses Improve support for PEP 691 JSON-based Simple API Establish zipapp compatibility Rework list of files included in build artifacts Improve performance by treating collections in packages as immutable Deprecate poetry.core.masonry.builder Deprecate scripts that depend on extras Fixed Fix an issue where insignificant errors were printed if the working directory is not inside a git repository Fix an issue where the project's directory was not recognized as git repository on Windows due to an encoding issue Vendoring fastjsonschema==2.19.1 lark==1.1.8 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-poetry-core/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-poetry-core/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706890991279010 Content-Disposition: inline Content-Length: 2030 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-poetry-core/Makefile diff -u pkgsrc/devel/py-poetry-core/Makefile:1.10 pkgsrc/devel/py-poetry-core/Makefile:1.11 --- pkgsrc/devel/py-poetry-core/Makefile:1.10 Tue Nov 7 09:22:40 2023 +++ pkgsrc/devel/py-poetry-core/Makefile Fri Feb 2 16:23:11 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2023/11/07 09:22:40 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2024/02/02 16:23:11 adam Exp $ -DISTNAME= poetry_core-1.8.1 +DISTNAME= poetry_core-1.9.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/poetry-core/} @@ -10,6 +10,7 @@ HOMEPAGE= https://python-poetry.org/ COMMENT= Poetry PEP 517 build backend LICENSE= mit +TEST_DEPENDS+= ${PYPKGPREFIX}-build>=0.10.0:../../devel/py-build TEST_DEPENDS+= ${PYPKGPREFIX}-setuptools>=60:../../devel/py-setuptools TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=3.0.0:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=3.10:../../devel/py-test-mock Index: pkgsrc/devel/py-poetry-core/distinfo diff -u pkgsrc/devel/py-poetry-core/distinfo:1.7 pkgsrc/devel/py-poetry-core/distinfo:1.8 --- pkgsrc/devel/py-poetry-core/distinfo:1.7 Tue Nov 7 09:22:40 2023 +++ pkgsrc/devel/py-poetry-core/distinfo Fri Feb 2 16:23:11 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2023/11/07 09:22:40 wiz Exp $ +$NetBSD: distinfo,v 1.8 2024/02/02 16:23:11 adam Exp $ -BLAKE2s (poetry_core-1.8.1.tar.gz) = 66c172e0a7b848ab01a0623b5281a7d4ec645ad0daa656c9ab65e3d459775118 -SHA512 (poetry_core-1.8.1.tar.gz) = 26b82b3d22518646610d39901ef2a9b50691f54db9a3ac667815998b47a6c7e4af731efb83c75bdb98b27bf8b94101adfd426cd7cd3d2a134d135501428d6b79 -Size (poetry_core-1.8.1.tar.gz) = 333719 bytes +BLAKE2s (poetry_core-1.9.0.tar.gz) = 31830b56b66cd81688368b40bf825e3e8f8013be602646e6eee2164f7138d2ea +SHA512 (poetry_core-1.9.0.tar.gz) = 51812a673cd430511aa33fc84a646f0f73a3dfc334848f570f598ddefc83b1d29ed2061cc0109e59dd9f15ad4863920a165dfec86a27ecd6aa7fcecd425f9c7f +Size (poetry_core-1.9.0.tar.gz) = 337190 bytes --_----------=_1706890991279010--