Received: by mail.netbsd.org (Postfix, from userid 605) id 3081284E9C; Mon, 17 Apr 2023 20:50:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5FEB984E6E for ; Mon, 17 Apr 2023 20:50:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id wM2_--v2fRs1 for ; Mon, 17 Apr 2023 20:50:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 558AA84CCF for ; Mon, 17 Apr 2023 20:50:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4F2BBFA85; Mon, 17 Apr 2023 20:50:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168176462280150" MIME-Version: 1.0 Date: Mon, 17 Apr 2023 20:50:22 +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: <20230417205022.4F2BBFA85@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168176462280150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 17 20:50:22 UTC 2023 Modified Files: pkgsrc/devel/py-poetry-core: Makefile PLIST distinfo Log Message: py-poetry-core: updated to 1.5.2 1.5.2 - 2023-03-13 Fixed Fix an issue where wheels built on Windows could contain duplicate entries in the RECORD file 1.5.1 - 2023-02-20 Changed Improve performance by caching parsed markers, constraints and versions 1.5.0 - 2023-01-27 Added Improve marker handling Allow overriding the output directory when building dist files Validate whether dependencies referenced in extras are defined in the main dependency group Improve handling of generic constraints Changed Deprecate the hash function of FileDependency Do not set allows_preleases implicitly anymore if the lower bound of a constraint is a pre-release Poetry no longer generates a setup.py file in sdists by default Remove the unused platform attribute from Package Deprecate the pretty_version parameter when creating a Package Validate path dependencies during use instead of during construction Fixed Fix an issue where the PEP 517 metadata_directory was not respected when building an editable wheel Fix an issue where trailing newlines were allowed in tool.poetry.description Fix an issue where the name of the data folder in wheels was not normalized Fix an issue where the order of entries in the RECORD file was not deterministic Fix an issue where parsing of VCS URLs with escaped characters failed Fix an issue where the subdirectory parameter of VCS URLs was not respected Fix an issue where zero padding was not correctly handled in version comparisons Fix an issue where sdist builds did not support multiple READMEs Vendoring attrs==22.2.0 jsonschema==4.17.3 lark==1.1.5 packaging==23.0 pyrsistent==0.19.3 1.4.0 - 2022-11-22 Added The PEP 517 metadata_directory is now respected as an input to the build_wheel hook Changed Sources are now considered more carefully when dealing with dependencies with environment markers EmptyConstraint is now hashable ParseConstraintError is now raised on version and constraint parsing errors, and includes information on the package that caused the error Fixed Fix an issue where invalid PEP 508 requirements were generated due to a missing space before semicolons Fix an issue where relative paths were encoded into package requirements, instead of a file:// URL as required by PEP 508 Vendoring jsonschema==4.17.0 lark==1.1.4 pyrsistent==0.19.2 tomlkit==0.11.6 typing-extensions==4.4.0 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-poetry-core/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-poetry-core/PLIST cvs rdiff -u -r1.2 -r1.3 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. --_----------=_168176462280150 Content-Disposition: inline Content-Length: 40511 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.4 pkgsrc/devel/py-poetry-core/Makefile:1.5 --- pkgsrc/devel/py-poetry-core/Makefile:1.4 Wed Mar 29 09:34:09 2023 +++ pkgsrc/devel/py-poetry-core/Makefile Mon Apr 17 20:50:22 2023 @@ -1,10 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2023/03/29 09:34:09 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2023/04/17 20:50:22 adam Exp $ -# Do not update to 1.3.x without understanding the impacts of a change -# that breaks at least some poetry-using programs. -gdt -# https://github.com/matrix-org/synapse/issues/14079 -DISTNAME= poetry-core-1.0.8 -PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +DISTNAME= poetry_core-1.5.2 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/poetry-core/} @@ -13,15 +10,9 @@ HOMEPAGE= https://python-poetry.org/ COMMENT= Poetry PEP 517 build backend LICENSE= mit -PYTHON_VERSIONS_INCOMPATIBLE= 27 - -.include "../../lang/python/pyversion.mk" - -.if ${PYTHON_VERSION} < 308 -DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=1.7.0:../../devel/py-importlib-metadata -.endif - USE_LANGUAGES= # none -.include "../../lang/python/egg.mk" +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-poetry-core/PLIST diff -u pkgsrc/devel/py-poetry-core/PLIST:1.1 pkgsrc/devel/py-poetry-core/PLIST:1.2 --- pkgsrc/devel/py-poetry-core/PLIST:1.1 Tue Jan 11 19:19:56 2022 +++ pkgsrc/devel/py-poetry-core/PLIST Mon Apr 17 20:50:22 2023 @@ -1,555 +1,464 @@ -@comment $NetBSD: PLIST,v 1.1 2022/01/11 19:19:56 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/poetry/__init__.py -${PYSITELIB}/poetry/__init__.pyc -${PYSITELIB}/poetry/__init__.pyo +@comment $NetBSD: PLIST,v 1.2 2023/04/17 20:50:22 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json ${PYSITELIB}/poetry/core/__init__.py ${PYSITELIB}/poetry/core/__init__.pyc -${PYSITELIB}/poetry/core/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/_pyrsistent_version.py ${PYSITELIB}/poetry/core/_vendor/_pyrsistent_version.pyc -${PYSITELIB}/poetry/core/_vendor/_pyrsistent_version.pyo ${PYSITELIB}/poetry/core/_vendor/attr/__init__.py ${PYSITELIB}/poetry/core/_vendor/attr/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/attr/__init__.pyo +${PYSITELIB}/poetry/core/_vendor/attr/_cmp.py +${PYSITELIB}/poetry/core/_vendor/attr/_cmp.pyc ${PYSITELIB}/poetry/core/_vendor/attr/_compat.py ${PYSITELIB}/poetry/core/_vendor/attr/_compat.pyc -${PYSITELIB}/poetry/core/_vendor/attr/_compat.pyo ${PYSITELIB}/poetry/core/_vendor/attr/_config.py ${PYSITELIB}/poetry/core/_vendor/attr/_config.pyc -${PYSITELIB}/poetry/core/_vendor/attr/_config.pyo ${PYSITELIB}/poetry/core/_vendor/attr/_funcs.py ${PYSITELIB}/poetry/core/_vendor/attr/_funcs.pyc -${PYSITELIB}/poetry/core/_vendor/attr/_funcs.pyo ${PYSITELIB}/poetry/core/_vendor/attr/_make.py ${PYSITELIB}/poetry/core/_vendor/attr/_make.pyc -${PYSITELIB}/poetry/core/_vendor/attr/_make.pyo ${PYSITELIB}/poetry/core/_vendor/attr/_next_gen.py ${PYSITELIB}/poetry/core/_vendor/attr/_next_gen.pyc -${PYSITELIB}/poetry/core/_vendor/attr/_next_gen.pyo ${PYSITELIB}/poetry/core/_vendor/attr/_version_info.py ${PYSITELIB}/poetry/core/_vendor/attr/_version_info.pyc -${PYSITELIB}/poetry/core/_vendor/attr/_version_info.pyo ${PYSITELIB}/poetry/core/_vendor/attr/converters.py ${PYSITELIB}/poetry/core/_vendor/attr/converters.pyc -${PYSITELIB}/poetry/core/_vendor/attr/converters.pyo ${PYSITELIB}/poetry/core/_vendor/attr/exceptions.py ${PYSITELIB}/poetry/core/_vendor/attr/exceptions.pyc -${PYSITELIB}/poetry/core/_vendor/attr/exceptions.pyo ${PYSITELIB}/poetry/core/_vendor/attr/filters.py ${PYSITELIB}/poetry/core/_vendor/attr/filters.pyc -${PYSITELIB}/poetry/core/_vendor/attr/filters.pyo ${PYSITELIB}/poetry/core/_vendor/attr/py.typed ${PYSITELIB}/poetry/core/_vendor/attr/setters.py ${PYSITELIB}/poetry/core/_vendor/attr/setters.pyc -${PYSITELIB}/poetry/core/_vendor/attr/setters.pyo ${PYSITELIB}/poetry/core/_vendor/attr/validators.py ${PYSITELIB}/poetry/core/_vendor/attr/validators.pyc -${PYSITELIB}/poetry/core/_vendor/attr/validators.pyo -${PYSITELIB}/poetry/core/_vendor/attrs.LICENSE +${PYSITELIB}/poetry/core/_vendor/attrs/LICENSE +${PYSITELIB}/poetry/core/_vendor/attrs/__init__.py +${PYSITELIB}/poetry/core/_vendor/attrs/__init__.pyc +${PYSITELIB}/poetry/core/_vendor/attrs/converters.py +${PYSITELIB}/poetry/core/_vendor/attrs/converters.pyc +${PYSITELIB}/poetry/core/_vendor/attrs/exceptions.py +${PYSITELIB}/poetry/core/_vendor/attrs/exceptions.pyc +${PYSITELIB}/poetry/core/_vendor/attrs/filters.py +${PYSITELIB}/poetry/core/_vendor/attrs/filters.pyc +${PYSITELIB}/poetry/core/_vendor/attrs/py.typed +${PYSITELIB}/poetry/core/_vendor/attrs/setters.py +${PYSITELIB}/poetry/core/_vendor/attrs/setters.pyc +${PYSITELIB}/poetry/core/_vendor/attrs/validators.py +${PYSITELIB}/poetry/core/_vendor/attrs/validators.pyc ${PYSITELIB}/poetry/core/_vendor/jsonschema/COPYING -${PYSITELIB}/poetry/core/_vendor/jsonschema/LICENSE ${PYSITELIB}/poetry/core/_vendor/jsonschema/__init__.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/__main__.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/__main__.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/__main__.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/_format.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/_format.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/_format.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/_legacy_validators.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/_legacy_validators.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/_legacy_validators.pyo -${PYSITELIB}/poetry/core/_vendor/jsonschema/_reflect.py -${PYSITELIB}/poetry/core/_vendor/jsonschema/_reflect.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/_reflect.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/_types.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/_types.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/_types.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/_utils.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/_utils.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/_utils.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/_validators.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/_validators.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/_validators.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/__init__.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/issue232.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/issue232.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/issue232.pyo +${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/issue232/issue.json ${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/json_schema_test_suite.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/json_schema_test_suite.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/benchmarks/json_schema_test_suite.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/cli.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/cli.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/cli.pyo -${PYSITELIB}/poetry/core/_vendor/jsonschema/compat.py -${PYSITELIB}/poetry/core/_vendor/jsonschema/compat.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/compat.pyo ${PYSITELIB}/poetry/core/_vendor/jsonschema/exceptions.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/exceptions.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/exceptions.pyo +${PYSITELIB}/poetry/core/_vendor/jsonschema/protocols.py +${PYSITELIB}/poetry/core/_vendor/jsonschema/protocols.pyc +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/draft2019-09.json +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/draft2020-12.json ${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/draft3.json ${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/draft4.json ${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/draft6.json ${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/draft7.json +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/applicator +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/content +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/core +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/meta-data +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/validation +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/applicator +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/content +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/core +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/format +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/format-annotation +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/format-assertion +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/meta-data +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/unevaluated +${PYSITELIB}/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2020-12/validation ${PYSITELIB}/poetry/core/_vendor/jsonschema/validators.py ${PYSITELIB}/poetry/core/_vendor/jsonschema/validators.pyc -${PYSITELIB}/poetry/core/_vendor/jsonschema/validators.pyo -${PYSITELIB}/poetry/core/_vendor/lark-parser.LICENSE +${PYSITELIB}/poetry/core/_vendor/lark/LICENSE ${PYSITELIB}/poetry/core/_vendor/lark/__init__.py ${PYSITELIB}/poetry/core/_vendor/lark/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/lark/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/lark/__pyinstaller/__init__.py ${PYSITELIB}/poetry/core/_vendor/lark/__pyinstaller/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/lark/__pyinstaller/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/lark/__pyinstaller/hook-lark.py ${PYSITELIB}/poetry/core/_vendor/lark/__pyinstaller/hook-lark.pyc -${PYSITELIB}/poetry/core/_vendor/lark/__pyinstaller/hook-lark.pyo +${PYSITELIB}/poetry/core/_vendor/lark/ast_utils.py +${PYSITELIB}/poetry/core/_vendor/lark/ast_utils.pyc ${PYSITELIB}/poetry/core/_vendor/lark/common.py ${PYSITELIB}/poetry/core/_vendor/lark/common.pyc -${PYSITELIB}/poetry/core/_vendor/lark/common.pyo ${PYSITELIB}/poetry/core/_vendor/lark/exceptions.py ${PYSITELIB}/poetry/core/_vendor/lark/exceptions.pyc -${PYSITELIB}/poetry/core/_vendor/lark/exceptions.pyo ${PYSITELIB}/poetry/core/_vendor/lark/grammar.py ${PYSITELIB}/poetry/core/_vendor/lark/grammar.pyc -${PYSITELIB}/poetry/core/_vendor/lark/grammar.pyo +${PYSITELIB}/poetry/core/_vendor/lark/grammars/__init__.py +${PYSITELIB}/poetry/core/_vendor/lark/grammars/__init__.pyc ${PYSITELIB}/poetry/core/_vendor/lark/grammars/common.lark +${PYSITELIB}/poetry/core/_vendor/lark/grammars/lark.lark +${PYSITELIB}/poetry/core/_vendor/lark/grammars/python.lark +${PYSITELIB}/poetry/core/_vendor/lark/grammars/unicode.lark ${PYSITELIB}/poetry/core/_vendor/lark/indenter.py ${PYSITELIB}/poetry/core/_vendor/lark/indenter.pyc -${PYSITELIB}/poetry/core/_vendor/lark/indenter.pyo ${PYSITELIB}/poetry/core/_vendor/lark/lark.py ${PYSITELIB}/poetry/core/_vendor/lark/lark.pyc -${PYSITELIB}/poetry/core/_vendor/lark/lark.pyo ${PYSITELIB}/poetry/core/_vendor/lark/lexer.py ${PYSITELIB}/poetry/core/_vendor/lark/lexer.pyc -${PYSITELIB}/poetry/core/_vendor/lark/lexer.pyo ${PYSITELIB}/poetry/core/_vendor/lark/load_grammar.py ${PYSITELIB}/poetry/core/_vendor/lark/load_grammar.pyc -${PYSITELIB}/poetry/core/_vendor/lark/load_grammar.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parse_tree_builder.py ${PYSITELIB}/poetry/core/_vendor/lark/parse_tree_builder.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parse_tree_builder.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parser_frontends.py ${PYSITELIB}/poetry/core/_vendor/lark/parser_frontends.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parser_frontends.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/__init__.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/cyk.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/cyk.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/cyk.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley_common.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley_common.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley_common.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley_forest.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley_forest.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/earley_forest.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/grammar_analysis.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/grammar_analysis.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/grammar_analysis.pyo ${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_analysis.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_analysis.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_analysis.pyo +${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_interactive_parser.py +${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_interactive_parser.pyc ${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_parser.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_parser.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_parser.pyo -${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_puppet.py -${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_puppet.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/lalr_puppet.pyo +${PYSITELIB}/poetry/core/_vendor/lark/parsers/resolve_ambig.py +${PYSITELIB}/poetry/core/_vendor/lark/parsers/resolve_ambig.pyc ${PYSITELIB}/poetry/core/_vendor/lark/parsers/xearley.py ${PYSITELIB}/poetry/core/_vendor/lark/parsers/xearley.pyc -${PYSITELIB}/poetry/core/_vendor/lark/parsers/xearley.pyo +${PYSITELIB}/poetry/core/_vendor/lark/py.typed ${PYSITELIB}/poetry/core/_vendor/lark/reconstruct.py ${PYSITELIB}/poetry/core/_vendor/lark/reconstruct.pyc -${PYSITELIB}/poetry/core/_vendor/lark/reconstruct.pyo -${PYSITELIB}/poetry/core/_vendor/lark/reconstruct2.py -${PYSITELIB}/poetry/core/_vendor/lark/reconstruct2.pyc -${PYSITELIB}/poetry/core/_vendor/lark/reconstruct2.pyo ${PYSITELIB}/poetry/core/_vendor/lark/tools/__init__.py ${PYSITELIB}/poetry/core/_vendor/lark/tools/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/lark/tools/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/lark/tools/nearley.py ${PYSITELIB}/poetry/core/_vendor/lark/tools/nearley.pyc -${PYSITELIB}/poetry/core/_vendor/lark/tools/nearley.pyo ${PYSITELIB}/poetry/core/_vendor/lark/tools/serialize.py ${PYSITELIB}/poetry/core/_vendor/lark/tools/serialize.pyc -${PYSITELIB}/poetry/core/_vendor/lark/tools/serialize.pyo ${PYSITELIB}/poetry/core/_vendor/lark/tools/standalone.py ${PYSITELIB}/poetry/core/_vendor/lark/tools/standalone.pyc -${PYSITELIB}/poetry/core/_vendor/lark/tools/standalone.pyo ${PYSITELIB}/poetry/core/_vendor/lark/tree.py ${PYSITELIB}/poetry/core/_vendor/lark/tree.pyc -${PYSITELIB}/poetry/core/_vendor/lark/tree.pyo +${PYSITELIB}/poetry/core/_vendor/lark/tree_matcher.py +${PYSITELIB}/poetry/core/_vendor/lark/tree_matcher.pyc +${PYSITELIB}/poetry/core/_vendor/lark/tree_templates.py +${PYSITELIB}/poetry/core/_vendor/lark/tree_templates.pyc ${PYSITELIB}/poetry/core/_vendor/lark/utils.py ${PYSITELIB}/poetry/core/_vendor/lark/utils.pyc -${PYSITELIB}/poetry/core/_vendor/lark/utils.pyo ${PYSITELIB}/poetry/core/_vendor/lark/visitors.py ${PYSITELIB}/poetry/core/_vendor/lark/visitors.pyc -${PYSITELIB}/poetry/core/_vendor/lark/visitors.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/LICENSE ${PYSITELIB}/poetry/core/_vendor/packaging/LICENSE.APACHE ${PYSITELIB}/poetry/core/_vendor/packaging/LICENSE.BSD -${PYSITELIB}/poetry/core/_vendor/packaging/__about__.py -${PYSITELIB}/poetry/core/_vendor/packaging/__about__.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/__about__.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/__init__.py ${PYSITELIB}/poetry/core/_vendor/packaging/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/__init__.pyo -${PYSITELIB}/poetry/core/_vendor/packaging/_compat.py -${PYSITELIB}/poetry/core/_vendor/packaging/_compat.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/_compat.pyo +${PYSITELIB}/poetry/core/_vendor/packaging/_elffile.py +${PYSITELIB}/poetry/core/_vendor/packaging/_elffile.pyc +${PYSITELIB}/poetry/core/_vendor/packaging/_manylinux.py +${PYSITELIB}/poetry/core/_vendor/packaging/_manylinux.pyc +${PYSITELIB}/poetry/core/_vendor/packaging/_musllinux.py +${PYSITELIB}/poetry/core/_vendor/packaging/_musllinux.pyc +${PYSITELIB}/poetry/core/_vendor/packaging/_parser.py +${PYSITELIB}/poetry/core/_vendor/packaging/_parser.pyc ${PYSITELIB}/poetry/core/_vendor/packaging/_structures.py ${PYSITELIB}/poetry/core/_vendor/packaging/_structures.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/_structures.pyo -${PYSITELIB}/poetry/core/_vendor/packaging/_typing.py -${PYSITELIB}/poetry/core/_vendor/packaging/_typing.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/_typing.pyo +${PYSITELIB}/poetry/core/_vendor/packaging/_tokenizer.py +${PYSITELIB}/poetry/core/_vendor/packaging/_tokenizer.pyc ${PYSITELIB}/poetry/core/_vendor/packaging/markers.py ${PYSITELIB}/poetry/core/_vendor/packaging/markers.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/markers.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/py.typed ${PYSITELIB}/poetry/core/_vendor/packaging/requirements.py ${PYSITELIB}/poetry/core/_vendor/packaging/requirements.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/requirements.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/specifiers.py ${PYSITELIB}/poetry/core/_vendor/packaging/specifiers.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/specifiers.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/tags.py ${PYSITELIB}/poetry/core/_vendor/packaging/tags.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/tags.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/utils.py ${PYSITELIB}/poetry/core/_vendor/packaging/utils.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/utils.pyo ${PYSITELIB}/poetry/core/_vendor/packaging/version.py ${PYSITELIB}/poetry/core/_vendor/packaging/version.pyc -${PYSITELIB}/poetry/core/_vendor/packaging/version.pyo -${PYSITELIB}/poetry/core/_vendor/pyparsing.LICENSE -${PYSITELIB}/poetry/core/_vendor/pyparsing.py -${PYSITELIB}/poetry/core/_vendor/pyparsing.pyc -${PYSITELIB}/poetry/core/_vendor/pyparsing.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/LICENSE.mit ${PYSITELIB}/poetry/core/_vendor/pyrsistent/__init__.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_checked_types.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_checked_types.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_checked_types.pyo -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_compat.py -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_compat.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_compat.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_field_common.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_field_common.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_field_common.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_helpers.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_helpers.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_helpers.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_immutable.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_immutable.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_immutable.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pbag.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pbag.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pbag.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pclass.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pclass.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pclass.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pdeque.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pdeque.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pdeque.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_plist.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_plist.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_plist.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pmap.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pmap.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pmap.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_precord.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_precord.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_precord.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pset.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pset.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pset.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pvector.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pvector.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_pvector.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_toolz.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_toolz.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_toolz.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_transformations.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/_transformations.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/_transformations.pyo ${PYSITELIB}/poetry/core/_vendor/pyrsistent/py.typed ${PYSITELIB}/poetry/core/_vendor/pyrsistent/typing.py ${PYSITELIB}/poetry/core/_vendor/pyrsistent/typing.pyc -${PYSITELIB}/poetry/core/_vendor/pyrsistent/typing.pyo -${PYSITELIB}/poetry/core/_vendor/six.LICENSE -${PYSITELIB}/poetry/core/_vendor/six.py -${PYSITELIB}/poetry/core/_vendor/six.pyc -${PYSITELIB}/poetry/core/_vendor/six.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/LICENSE ${PYSITELIB}/poetry/core/_vendor/tomlkit/__init__.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/__init__.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/__init__.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/_compat.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/_compat.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/_compat.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/_utils.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/_utils.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/_utils.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/api.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/api.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/api.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/container.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/container.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/container.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/exceptions.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/exceptions.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/exceptions.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/items.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/items.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/items.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/parser.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/parser.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/parser.pyo +${PYSITELIB}/poetry/core/_vendor/tomlkit/py.typed ${PYSITELIB}/poetry/core/_vendor/tomlkit/source.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/source.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/source.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_char.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_char.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_char.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_document.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_document.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_document.pyo ${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_file.py ${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_file.pyc -${PYSITELIB}/poetry/core/_vendor/tomlkit/toml_file.pyo +${PYSITELIB}/poetry/core/_vendor/typing_extensions.LICENSE +${PYSITELIB}/poetry/core/_vendor/typing_extensions.py +${PYSITELIB}/poetry/core/_vendor/typing_extensions.pyc ${PYSITELIB}/poetry/core/_vendor/vendor.txt +${PYSITELIB}/poetry/core/constraints/__init__.py +${PYSITELIB}/poetry/core/constraints/__init__.pyc +${PYSITELIB}/poetry/core/constraints/generic/__init__.py +${PYSITELIB}/poetry/core/constraints/generic/__init__.pyc +${PYSITELIB}/poetry/core/constraints/generic/any_constraint.py +${PYSITELIB}/poetry/core/constraints/generic/any_constraint.pyc +${PYSITELIB}/poetry/core/constraints/generic/base_constraint.py +${PYSITELIB}/poetry/core/constraints/generic/base_constraint.pyc +${PYSITELIB}/poetry/core/constraints/generic/constraint.py +${PYSITELIB}/poetry/core/constraints/generic/constraint.pyc +${PYSITELIB}/poetry/core/constraints/generic/empty_constraint.py +${PYSITELIB}/poetry/core/constraints/generic/empty_constraint.pyc +${PYSITELIB}/poetry/core/constraints/generic/multi_constraint.py +${PYSITELIB}/poetry/core/constraints/generic/multi_constraint.pyc +${PYSITELIB}/poetry/core/constraints/generic/parser.py +${PYSITELIB}/poetry/core/constraints/generic/parser.pyc +${PYSITELIB}/poetry/core/constraints/generic/union_constraint.py +${PYSITELIB}/poetry/core/constraints/generic/union_constraint.pyc +${PYSITELIB}/poetry/core/constraints/version/__init__.py +${PYSITELIB}/poetry/core/constraints/version/__init__.pyc +${PYSITELIB}/poetry/core/constraints/version/empty_constraint.py +${PYSITELIB}/poetry/core/constraints/version/empty_constraint.pyc +${PYSITELIB}/poetry/core/constraints/version/exceptions.py +${PYSITELIB}/poetry/core/constraints/version/exceptions.pyc +${PYSITELIB}/poetry/core/constraints/version/parser.py +${PYSITELIB}/poetry/core/constraints/version/parser.pyc +${PYSITELIB}/poetry/core/constraints/version/patterns.py +${PYSITELIB}/poetry/core/constraints/version/patterns.pyc +${PYSITELIB}/poetry/core/constraints/version/util.py +${PYSITELIB}/poetry/core/constraints/version/util.pyc +${PYSITELIB}/poetry/core/constraints/version/version.py +${PYSITELIB}/poetry/core/constraints/version/version.pyc +${PYSITELIB}/poetry/core/constraints/version/version_constraint.py +${PYSITELIB}/poetry/core/constraints/version/version_constraint.pyc +${PYSITELIB}/poetry/core/constraints/version/version_range.py +${PYSITELIB}/poetry/core/constraints/version/version_range.pyc +${PYSITELIB}/poetry/core/constraints/version/version_range_constraint.py +${PYSITELIB}/poetry/core/constraints/version/version_range_constraint.pyc +${PYSITELIB}/poetry/core/constraints/version/version_union.py +${PYSITELIB}/poetry/core/constraints/version/version_union.pyc ${PYSITELIB}/poetry/core/exceptions/__init__.py ${PYSITELIB}/poetry/core/exceptions/__init__.pyc -${PYSITELIB}/poetry/core/exceptions/__init__.pyo ${PYSITELIB}/poetry/core/exceptions/base.py ${PYSITELIB}/poetry/core/exceptions/base.pyc -${PYSITELIB}/poetry/core/exceptions/base.pyo ${PYSITELIB}/poetry/core/factory.py ${PYSITELIB}/poetry/core/factory.pyc -${PYSITELIB}/poetry/core/factory.pyo ${PYSITELIB}/poetry/core/json/__init__.py ${PYSITELIB}/poetry/core/json/__init__.pyc -${PYSITELIB}/poetry/core/json/__init__.pyo ${PYSITELIB}/poetry/core/json/schemas/poetry-schema.json ${PYSITELIB}/poetry/core/masonry/__init__.py ${PYSITELIB}/poetry/core/masonry/__init__.pyc -${PYSITELIB}/poetry/core/masonry/__init__.pyo ${PYSITELIB}/poetry/core/masonry/api.py ${PYSITELIB}/poetry/core/masonry/api.pyc -${PYSITELIB}/poetry/core/masonry/api.pyo ${PYSITELIB}/poetry/core/masonry/builder.py ${PYSITELIB}/poetry/core/masonry/builder.pyc -${PYSITELIB}/poetry/core/masonry/builder.pyo ${PYSITELIB}/poetry/core/masonry/builders/__init__.py ${PYSITELIB}/poetry/core/masonry/builders/__init__.pyc -${PYSITELIB}/poetry/core/masonry/builders/__init__.pyo ${PYSITELIB}/poetry/core/masonry/builders/builder.py ${PYSITELIB}/poetry/core/masonry/builders/builder.pyc -${PYSITELIB}/poetry/core/masonry/builders/builder.pyo ${PYSITELIB}/poetry/core/masonry/builders/sdist.py ${PYSITELIB}/poetry/core/masonry/builders/sdist.pyc -${PYSITELIB}/poetry/core/masonry/builders/sdist.pyo ${PYSITELIB}/poetry/core/masonry/builders/wheel.py ${PYSITELIB}/poetry/core/masonry/builders/wheel.pyc -${PYSITELIB}/poetry/core/masonry/builders/wheel.pyo ${PYSITELIB}/poetry/core/masonry/metadata.py ${PYSITELIB}/poetry/core/masonry/metadata.pyc -${PYSITELIB}/poetry/core/masonry/metadata.pyo ${PYSITELIB}/poetry/core/masonry/utils/__init__.py ${PYSITELIB}/poetry/core/masonry/utils/__init__.pyc -${PYSITELIB}/poetry/core/masonry/utils/__init__.pyo ${PYSITELIB}/poetry/core/masonry/utils/helpers.py ${PYSITELIB}/poetry/core/masonry/utils/helpers.pyc -${PYSITELIB}/poetry/core/masonry/utils/helpers.pyo ${PYSITELIB}/poetry/core/masonry/utils/include.py ${PYSITELIB}/poetry/core/masonry/utils/include.pyc -${PYSITELIB}/poetry/core/masonry/utils/include.pyo ${PYSITELIB}/poetry/core/masonry/utils/module.py ${PYSITELIB}/poetry/core/masonry/utils/module.pyc -${PYSITELIB}/poetry/core/masonry/utils/module.pyo ${PYSITELIB}/poetry/core/masonry/utils/package_include.py ${PYSITELIB}/poetry/core/masonry/utils/package_include.pyc -${PYSITELIB}/poetry/core/masonry/utils/package_include.pyo ${PYSITELIB}/poetry/core/packages/__init__.py ${PYSITELIB}/poetry/core/packages/__init__.pyc -${PYSITELIB}/poetry/core/packages/__init__.pyo ${PYSITELIB}/poetry/core/packages/constraints/__init__.py ${PYSITELIB}/poetry/core/packages/constraints/__init__.pyc -${PYSITELIB}/poetry/core/packages/constraints/__init__.pyo -${PYSITELIB}/poetry/core/packages/constraints/any_constraint.py -${PYSITELIB}/poetry/core/packages/constraints/any_constraint.pyc -${PYSITELIB}/poetry/core/packages/constraints/any_constraint.pyo -${PYSITELIB}/poetry/core/packages/constraints/base_constraint.py -${PYSITELIB}/poetry/core/packages/constraints/base_constraint.pyc -${PYSITELIB}/poetry/core/packages/constraints/base_constraint.pyo -${PYSITELIB}/poetry/core/packages/constraints/constraint.py -${PYSITELIB}/poetry/core/packages/constraints/constraint.pyc -${PYSITELIB}/poetry/core/packages/constraints/constraint.pyo -${PYSITELIB}/poetry/core/packages/constraints/empty_constraint.py -${PYSITELIB}/poetry/core/packages/constraints/empty_constraint.pyc -${PYSITELIB}/poetry/core/packages/constraints/empty_constraint.pyo -${PYSITELIB}/poetry/core/packages/constraints/multi_constraint.py -${PYSITELIB}/poetry/core/packages/constraints/multi_constraint.pyc -${PYSITELIB}/poetry/core/packages/constraints/multi_constraint.pyo -${PYSITELIB}/poetry/core/packages/constraints/union_constraint.py -${PYSITELIB}/poetry/core/packages/constraints/union_constraint.pyc -${PYSITELIB}/poetry/core/packages/constraints/union_constraint.pyo ${PYSITELIB}/poetry/core/packages/dependency.py ${PYSITELIB}/poetry/core/packages/dependency.pyc -${PYSITELIB}/poetry/core/packages/dependency.pyo +${PYSITELIB}/poetry/core/packages/dependency_group.py +${PYSITELIB}/poetry/core/packages/dependency_group.pyc ${PYSITELIB}/poetry/core/packages/directory_dependency.py ${PYSITELIB}/poetry/core/packages/directory_dependency.pyc -${PYSITELIB}/poetry/core/packages/directory_dependency.pyo ${PYSITELIB}/poetry/core/packages/file_dependency.py ${PYSITELIB}/poetry/core/packages/file_dependency.pyc -${PYSITELIB}/poetry/core/packages/file_dependency.pyo ${PYSITELIB}/poetry/core/packages/package.py ${PYSITELIB}/poetry/core/packages/package.pyc -${PYSITELIB}/poetry/core/packages/package.pyo +${PYSITELIB}/poetry/core/packages/path_dependency.py +${PYSITELIB}/poetry/core/packages/path_dependency.pyc ${PYSITELIB}/poetry/core/packages/project_package.py ${PYSITELIB}/poetry/core/packages/project_package.pyc -${PYSITELIB}/poetry/core/packages/project_package.pyo ${PYSITELIB}/poetry/core/packages/specification.py ${PYSITELIB}/poetry/core/packages/specification.pyc -${PYSITELIB}/poetry/core/packages/specification.pyo ${PYSITELIB}/poetry/core/packages/url_dependency.py ${PYSITELIB}/poetry/core/packages/url_dependency.pyc -${PYSITELIB}/poetry/core/packages/url_dependency.pyo ${PYSITELIB}/poetry/core/packages/utils/__init__.py ${PYSITELIB}/poetry/core/packages/utils/__init__.pyc -${PYSITELIB}/poetry/core/packages/utils/__init__.pyo ${PYSITELIB}/poetry/core/packages/utils/link.py ${PYSITELIB}/poetry/core/packages/utils/link.pyc -${PYSITELIB}/poetry/core/packages/utils/link.pyo ${PYSITELIB}/poetry/core/packages/utils/utils.py ${PYSITELIB}/poetry/core/packages/utils/utils.pyc -${PYSITELIB}/poetry/core/packages/utils/utils.pyo ${PYSITELIB}/poetry/core/packages/vcs_dependency.py ${PYSITELIB}/poetry/core/packages/vcs_dependency.pyc -${PYSITELIB}/poetry/core/packages/vcs_dependency.pyo ${PYSITELIB}/poetry/core/poetry.py ${PYSITELIB}/poetry/core/poetry.pyc -${PYSITELIB}/poetry/core/poetry.pyo +${PYSITELIB}/poetry/core/py.typed ${PYSITELIB}/poetry/core/pyproject/__init__.py ${PYSITELIB}/poetry/core/pyproject/__init__.pyc -${PYSITELIB}/poetry/core/pyproject/__init__.pyo ${PYSITELIB}/poetry/core/pyproject/exceptions.py ${PYSITELIB}/poetry/core/pyproject/exceptions.pyc -${PYSITELIB}/poetry/core/pyproject/exceptions.pyo ${PYSITELIB}/poetry/core/pyproject/tables.py ${PYSITELIB}/poetry/core/pyproject/tables.pyc -${PYSITELIB}/poetry/core/pyproject/tables.pyo ${PYSITELIB}/poetry/core/pyproject/toml.py ${PYSITELIB}/poetry/core/pyproject/toml.pyc -${PYSITELIB}/poetry/core/pyproject/toml.pyo ${PYSITELIB}/poetry/core/semver/__init__.py ${PYSITELIB}/poetry/core/semver/__init__.pyc -${PYSITELIB}/poetry/core/semver/__init__.pyo ${PYSITELIB}/poetry/core/semver/empty_constraint.py ${PYSITELIB}/poetry/core/semver/empty_constraint.pyc -${PYSITELIB}/poetry/core/semver/empty_constraint.pyo ${PYSITELIB}/poetry/core/semver/exceptions.py ${PYSITELIB}/poetry/core/semver/exceptions.pyc -${PYSITELIB}/poetry/core/semver/exceptions.pyo +${PYSITELIB}/poetry/core/semver/helpers.py +${PYSITELIB}/poetry/core/semver/helpers.pyc ${PYSITELIB}/poetry/core/semver/patterns.py ${PYSITELIB}/poetry/core/semver/patterns.pyc -${PYSITELIB}/poetry/core/semver/patterns.pyo +${PYSITELIB}/poetry/core/semver/util.py +${PYSITELIB}/poetry/core/semver/util.pyc ${PYSITELIB}/poetry/core/semver/version.py ${PYSITELIB}/poetry/core/semver/version.pyc -${PYSITELIB}/poetry/core/semver/version.pyo ${PYSITELIB}/poetry/core/semver/version_constraint.py ${PYSITELIB}/poetry/core/semver/version_constraint.pyc -${PYSITELIB}/poetry/core/semver/version_constraint.pyo ${PYSITELIB}/poetry/core/semver/version_range.py ${PYSITELIB}/poetry/core/semver/version_range.pyc -${PYSITELIB}/poetry/core/semver/version_range.pyo +${PYSITELIB}/poetry/core/semver/version_range_constraint.py +${PYSITELIB}/poetry/core/semver/version_range_constraint.pyc ${PYSITELIB}/poetry/core/semver/version_union.py ${PYSITELIB}/poetry/core/semver/version_union.pyc -${PYSITELIB}/poetry/core/semver/version_union.pyo ${PYSITELIB}/poetry/core/spdx/__init__.py ${PYSITELIB}/poetry/core/spdx/__init__.pyc -${PYSITELIB}/poetry/core/spdx/__init__.pyo ${PYSITELIB}/poetry/core/spdx/data/licenses.json +${PYSITELIB}/poetry/core/spdx/helpers.py +${PYSITELIB}/poetry/core/spdx/helpers.pyc ${PYSITELIB}/poetry/core/spdx/license.py ${PYSITELIB}/poetry/core/spdx/license.pyc -${PYSITELIB}/poetry/core/spdx/license.pyo ${PYSITELIB}/poetry/core/spdx/updater.py ${PYSITELIB}/poetry/core/spdx/updater.pyc -${PYSITELIB}/poetry/core/spdx/updater.pyo ${PYSITELIB}/poetry/core/toml/__init__.py ${PYSITELIB}/poetry/core/toml/__init__.pyc -${PYSITELIB}/poetry/core/toml/__init__.pyo ${PYSITELIB}/poetry/core/toml/exceptions.py ${PYSITELIB}/poetry/core/toml/exceptions.pyc -${PYSITELIB}/poetry/core/toml/exceptions.pyo ${PYSITELIB}/poetry/core/toml/file.py ${PYSITELIB}/poetry/core/toml/file.pyc -${PYSITELIB}/poetry/core/toml/file.pyo ${PYSITELIB}/poetry/core/utils/__init__.py ${PYSITELIB}/poetry/core/utils/__init__.pyc -${PYSITELIB}/poetry/core/utils/__init__.pyo ${PYSITELIB}/poetry/core/utils/_compat.py ${PYSITELIB}/poetry/core/utils/_compat.pyc -${PYSITELIB}/poetry/core/utils/_compat.pyo ${PYSITELIB}/poetry/core/utils/helpers.py ${PYSITELIB}/poetry/core/utils/helpers.pyc -${PYSITELIB}/poetry/core/utils/helpers.pyo ${PYSITELIB}/poetry/core/utils/patterns.py ${PYSITELIB}/poetry/core/utils/patterns.pyc -${PYSITELIB}/poetry/core/utils/patterns.pyo ${PYSITELIB}/poetry/core/utils/toml_file.py ${PYSITELIB}/poetry/core/utils/toml_file.pyc -${PYSITELIB}/poetry/core/utils/toml_file.pyo ${PYSITELIB}/poetry/core/vcs/__init__.py ${PYSITELIB}/poetry/core/vcs/__init__.pyc -${PYSITELIB}/poetry/core/vcs/__init__.pyo ${PYSITELIB}/poetry/core/vcs/git.py ${PYSITELIB}/poetry/core/vcs/git.pyc -${PYSITELIB}/poetry/core/vcs/git.pyo ${PYSITELIB}/poetry/core/version/__init__.py ${PYSITELIB}/poetry/core/version/__init__.pyc -${PYSITELIB}/poetry/core/version/__init__.pyo -${PYSITELIB}/poetry/core/version/base.py -${PYSITELIB}/poetry/core/version/base.pyc -${PYSITELIB}/poetry/core/version/base.pyo ${PYSITELIB}/poetry/core/version/exceptions.py ${PYSITELIB}/poetry/core/version/exceptions.pyc -${PYSITELIB}/poetry/core/version/exceptions.pyo ${PYSITELIB}/poetry/core/version/grammars/__init__.py ${PYSITELIB}/poetry/core/version/grammars/__init__.pyc -${PYSITELIB}/poetry/core/version/grammars/__init__.pyo ${PYSITELIB}/poetry/core/version/grammars/markers.lark ${PYSITELIB}/poetry/core/version/grammars/pep508.lark ${PYSITELIB}/poetry/core/version/helpers.py ${PYSITELIB}/poetry/core/version/helpers.pyc -${PYSITELIB}/poetry/core/version/helpers.pyo -${PYSITELIB}/poetry/core/version/legacy_version.py -${PYSITELIB}/poetry/core/version/legacy_version.pyc -${PYSITELIB}/poetry/core/version/legacy_version.pyo ${PYSITELIB}/poetry/core/version/markers.py ${PYSITELIB}/poetry/core/version/markers.pyc -${PYSITELIB}/poetry/core/version/markers.pyo +${PYSITELIB}/poetry/core/version/parser.py +${PYSITELIB}/poetry/core/version/parser.pyc +${PYSITELIB}/poetry/core/version/pep440/__init__.py +${PYSITELIB}/poetry/core/version/pep440/__init__.pyc +${PYSITELIB}/poetry/core/version/pep440/parser.py +${PYSITELIB}/poetry/core/version/pep440/parser.pyc +${PYSITELIB}/poetry/core/version/pep440/segments.py +${PYSITELIB}/poetry/core/version/pep440/segments.pyc +${PYSITELIB}/poetry/core/version/pep440/version.py +${PYSITELIB}/poetry/core/version/pep440/version.pyc ${PYSITELIB}/poetry/core/version/requirements.py ${PYSITELIB}/poetry/core/version/requirements.pyc -${PYSITELIB}/poetry/core/version/requirements.pyo -${PYSITELIB}/poetry/core/version/utils.py -${PYSITELIB}/poetry/core/version/utils.pyc -${PYSITELIB}/poetry/core/version/utils.pyo -${PYSITELIB}/poetry/core/version/version.py -${PYSITELIB}/poetry/core/version/version.pyc -${PYSITELIB}/poetry/core/version/version.pyo Index: pkgsrc/devel/py-poetry-core/distinfo diff -u pkgsrc/devel/py-poetry-core/distinfo:1.2 pkgsrc/devel/py-poetry-core/distinfo:1.3 --- pkgsrc/devel/py-poetry-core/distinfo:1.2 Thu Apr 14 20:29:56 2022 +++ pkgsrc/devel/py-poetry-core/distinfo Mon Apr 17 20:50:22 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2022/04/14 20:29:56 adam Exp $ +$NetBSD: distinfo,v 1.3 2023/04/17 20:50:22 adam Exp $ -BLAKE2s (poetry-core-1.0.8.tar.gz) = 1ccaeb832c2e6208fc91ae1c9316a8c559c79eaa0fb6742e243d2fd29acf7173 -SHA512 (poetry-core-1.0.8.tar.gz) = d00925acb1aa3bcbe65e83855706cc983ad4174c838df380e517c41b81c466333eb98946971c80723c6c91f2d7488780bdc6088dc6daacb3c5cc36f1a4611db5 -Size (poetry-core-1.0.8.tar.gz) = 346260 bytes +BLAKE2s (poetry_core-1.5.2.tar.gz) = 01ce6bea9fbfd46e77171384479336e225ebb4e9a0d3d94b7d45cfba7a1be251 +SHA512 (poetry_core-1.5.2.tar.gz) = 938dc5ae35834bc403764f33fee9a71f832a93a585d20fd222f939ab768fead203b6845f631b3561a97d734ef0ed9de03625ca3f0f55fcf8d47f6b5533382857 +Size (poetry_core-1.5.2.tar.gz) = 448898 bytes --_----------=_168176462280150--