Benjamin Greiner
f93d308af4
- Update to 1.3.2 * Fix an issue where the normalization was not applied to the path of an sdist built using a PEP 517 frontend (#495). - Release 1.3.1 * Fix an issue where a typing-driven assertion could be false at runtime, causing a failure during prepare_metadata_for_build_wheel (#492). - Release 1.3.0 * Add 3.11 to the list of available Python versions (#477). * Deprecate poetry.core.constraints.generic, which is replaced by poetry.core.packages.constraints (#482). * Deprecate poetry.core.semver, which is replaced by poetry.core.constraints.version (#482). * Fix an issue where versions were escaped wrongly when building the wheel name (#469). * Fix an issue where caret constraints of pre-releases with a major version of 0 resulted in an empty version range (#475). * Fix an issue where the names of extras were not normalized according to PEP 685 (#476). * Fix an issue where sdist names were not normalized (#484). - Release 1.2.0 * Added support for subdirectories in url dependencies (#398). * When setting an invalid version constraint an error is raised instead of silently setting "any version" (#461). * Allow more characters in author name (#411). * Fixed an issue where incorrect Requires-Dist information was generated when environment markers where used for optional packages (#462). * Fixed an issue where incorrect python constraints were parsed from environment markers (#457). OBS-URL: https://build.opensuse.org/request/show/1009081 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-core?expand=0&rev=12
89 lines
3.0 KiB
RPMSpec
89 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package python-poetry-core
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-poetry-core
|
|
Version: 1.3.2
|
|
Release: 0
|
|
Summary: Python poetry core utilities
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/python-poetry/poetry-core
|
|
# Only the github archive provides the tests
|
|
Source: %{url}/archive/%{version}.tar.gz#/poetry-core-%{version}-gh.tar.gz
|
|
BuildRequires: %{python_module attrs >= 22.1.0}
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module jsonschema >= 4.1.0}
|
|
BuildRequires: %{python_module lark-parser >= 1.1.2}
|
|
BuildRequires: %{python_module packaging >= 21.3}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pyparsing >= 3.0.9}
|
|
BuildRequires: %{python_module pyrsistent >= 0.18.1}
|
|
BuildRequires: %{python_module tomlkit >= 0.11.3}
|
|
BuildRequires: %{python_module typing-extensions >= 4.3.0}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-attrs >= 22.1.0
|
|
Requires: python-jsonschema >= 4.1.0
|
|
Requires: python-lark-parser >= 1.1.2
|
|
Requires: python-packaging >= 21.3
|
|
Requires: python-pyparsing >= 3.0.9
|
|
Requires: python-pyrsistent >= 0.18.1
|
|
Requires: python-tomlkit >= 0.11.3
|
|
Requires: python-typing-extensions >= 4.3.0
|
|
BuildArch: noarch
|
|
# SECTION these are all test dependencies, including devel and git
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module build}
|
|
BuildRequires: %{python_module pytest-mock}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module virtualenv}
|
|
BuildRequires: git-core
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
A PEP 517 build backend implementation developed for Poetry. This project is
|
|
intended to be a light weight, fully compliant, self-contained package allowing
|
|
PEP 517 compatible build frontends to build Poetry managed projects.
|
|
|
|
%prep
|
|
%setup -q -n poetry-core-%{version}
|
|
# unbundle: we provide the vendored packages on our own
|
|
rm -r src/poetry/core/_vendor
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# gh#python-poetry/poetry#1645
|
|
git init
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE
|
|
%dir %{python_sitelib}/poetry
|
|
%{python_sitelib}/poetry/core
|
|
%{python_sitelib}/poetry_core-%{version}.dist-info
|
|
|
|
%changelog
|