- update to 0.3.6:
- scripts - Fixed #175: Updated launcher executables to better handle the relationship between launcher and child process in the Job API. - database - Fixed #170: Corrected implementation of ``get_required_dists()``. - index - Updated coverage pragmas for tests relating to obsolete PyPI APIs. - locators - Changed the default locator configuration. - metadata - Updates in support of PEP 643 / Metadata 2.2. - scripts - Updated launcher executables. Thanks to Michael Bikovitsky for his help with the launcher changes. - Fixed #164: Improved support for reproducible builds by allowing a fixed date/time to be inserted into created .exe files. Thanks to Somber Night for the patch. - util - Fixed #161: Updated test case. - wheel - Updated to write archive path of RECORD to RECORD instead of staging path. Thanks to Pieter Pas for the patch. - Fixed #169: Removed usage of deprecated imp module in favour of importlib. - Fixed #172: Compute ABI correctly for Python < 3.8. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-distlib?expand=0&rev=22
This commit is contained in:
parent
09a9c6d456
commit
c1a7e14bdf
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579
|
|
||||||
size 631981
|
|
3
distlib-0.3.6.tar.gz
Normal file
3
distlib-0.3.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46
|
||||||
|
size 607879
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Oct 1 12:43:32 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.3.6:
|
||||||
|
- scripts
|
||||||
|
- Fixed #175: Updated launcher executables to better handle the relationship
|
||||||
|
between launcher and child process in the Job API.
|
||||||
|
- database
|
||||||
|
- Fixed #170: Corrected implementation of ``get_required_dists()``.
|
||||||
|
- index
|
||||||
|
- Updated coverage pragmas for tests relating to obsolete PyPI APIs.
|
||||||
|
- locators
|
||||||
|
- Changed the default locator configuration.
|
||||||
|
- metadata
|
||||||
|
- Updates in support of PEP 643 / Metadata 2.2.
|
||||||
|
- scripts
|
||||||
|
- Updated launcher executables. Thanks to Michael Bikovitsky for his help with
|
||||||
|
the launcher changes.
|
||||||
|
- Fixed #164: Improved support for reproducible builds by allowing a fixed
|
||||||
|
date/time to be inserted into created .exe files. Thanks to Somber Night for the
|
||||||
|
patch.
|
||||||
|
- util
|
||||||
|
- Fixed #161: Updated test case.
|
||||||
|
- wheel
|
||||||
|
- Updated to write archive path of RECORD to RECORD instead of staging path.
|
||||||
|
Thanks to Pieter Pas for the patch.
|
||||||
|
- Fixed #169: Removed usage of deprecated imp module in favour of importlib.
|
||||||
|
- Fixed #172: Compute ABI correctly for Python < 3.8.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Dec 11 12:07:02 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
Sat Dec 11 12:07:02 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-distlib
|
# spec file for package python-distlib
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 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
|
||||||
@ -18,17 +18,17 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-distlib
|
Name: python-distlib
|
||||||
Version: 0.3.4
|
Version: 0.3.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Distribution utilities
|
Summary: Distribution utilities
|
||||||
License: Python-2.0
|
License: Python-2.0
|
||||||
URL: https://github.com/pypa/distlib
|
URL: https://github.com/pypa/distlib
|
||||||
Source: https://files.pythonhosted.org/packages/source/d/distlib/distlib-%{version}.zip
|
Source: https://files.pythonhosted.org/packages/source/d/distlib/distlib-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: unzip
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -46,10 +46,10 @@ sed -i '/from test_locators import LocatorTestCase/d' tests/distlib_tests.py
|
|||||||
rm distlib/*.exe
|
rm distlib/*.exe
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
Loading…
Reference in New Issue
Block a user