forked from pool/python-poetry-core
Accepting request 885544 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/885544 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-poetry-core?expand=0&rev=3
This commit is contained in:
commit
865f6e939e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c8cff356f09b483cdbe752a18fa8a95716a55a225981e78410816659a9f82b87
|
|
||||||
size 395521
|
|
3
poetry-core-1.0.3-gh.tar.gz
Normal file
3
poetry-core-1.0.3-gh.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b5a9f8284c685c638796a322ea868843da5e2094c664436e44061e6bcea367ea
|
||||||
|
size 411478
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 14 21:43:18 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Update to 1.0.3
|
||||||
|
* Fixed an error when handling single-digit Python markers (#156)
|
||||||
|
* Fixed dependency markers not being properly copied when changing the constraint (#163).
|
||||||
|
- Release 1.0.2
|
||||||
|
* Fixed a missing import causing an error in Poetry (#134).
|
||||||
|
- Release 1.0.1
|
||||||
|
* Fixed PEP 508 representation of dependency without extras
|
||||||
|
(#102).
|
||||||
|
* Fixed an error where development dependencies were being
|
||||||
|
resolved when invoking the PEP-517 backend (#101).
|
||||||
|
* Fixed source distribution not being deterministic (#105).
|
||||||
|
* Fixed an error where zip files were left open when building
|
||||||
|
wheels (#122).
|
||||||
|
* Fixed an error where explicitly included files were still not
|
||||||
|
present in final distributions (#124).
|
||||||
|
* Fixed wheel filename matching for recent architecture (#125,
|
||||||
|
#129).
|
||||||
|
* Fixed an error where the & character was not accepted for
|
||||||
|
author names (#120).
|
||||||
|
* Fixed the PEP-508 representation of some dependencies (#103).
|
||||||
|
* Fixed the Requires-Python metadata generation (#127).
|
||||||
|
* Fixed an error where pre-release versions were accepted in
|
||||||
|
version constraints (#128).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 20 11:20:59 UTC 2020 - Dan Čermák <dcermak@suse.com>
|
Tue Oct 20 11:20:59 UTC 2020 - Dan Čermák <dcermak@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-poetry-core
|
# spec file for package python-poetry-core
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,14 +19,14 @@
|
|||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-poetry-core
|
Name: python-poetry-core
|
||||||
Version: 1.0.0
|
Version: 1.0.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python poetry core utilities
|
Summary: Python poetry core utilities
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/python-poetry/poetry-core
|
URL: https://github.com/python-poetry/poetry-core
|
||||||
# Only the github archive provides the tests
|
# Only the github archive provides the tests
|
||||||
Source: %{URL}/archive/%{version}.tar.gz#/poetry-core-%{version}-gh.tar.gz
|
Source: %{url}/archive/%{version}.tar.gz#/poetry-core-%{version}-gh.tar.gz
|
||||||
BuildRequires: %{python_module attrs >= 19.3.0}
|
BuildRequires: %{python_module attrs >= 19.3.0}
|
||||||
BuildRequires: %{python_module jsonschema >= 3.2.0}
|
BuildRequires: %{python_module jsonschema >= 3.2.0}
|
||||||
BuildRequires: %{python_module lark-parser >= 0.9.0}
|
BuildRequires: %{python_module lark-parser >= 0.9.0}
|
||||||
@ -68,8 +68,6 @@ PEP 517 compatible build frontends to build Poetry managed projects.
|
|||||||
rm poetry/__init__.py
|
rm poetry/__init__.py
|
||||||
# unbundle: we provide the vendored packages on our own
|
# unbundle: we provide the vendored packages on our own
|
||||||
rm -r poetry/core/_vendor
|
rm -r poetry/core/_vendor
|
||||||
# remove executable bits
|
|
||||||
find poetry/core -name '*.py' -executable -print0 | xargs -0 chmod a-x
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
Loading…
Reference in New Issue
Block a user