forked from pool/python-unearth
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| d3d61a4140 | |||
| b665b4f299 | |||
| 09b2e77232 | |||
| cc07b1815e | |||
| 12a2ead999 | |||
| af774dd02b |
@@ -1,3 +1,44 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 3 07:13:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.17.3
|
||||||
|
* Update contributing guidelines for rebase branch
|
||||||
|
* Best match should be a pre-release if that's all the index has
|
||||||
|
* Use stdlib Path <-> URL conversions
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 27 05:05:46 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.17.2:
|
||||||
|
* Really drop python<=3.7 support
|
||||||
|
* Don't show warning message when no netrc exists
|
||||||
|
* Show warning message when failing to parse netrc file
|
||||||
|
* Report download status when checking out vcs repo
|
||||||
|
* Allow using local file:// locations with find_links and index_urls
|
||||||
|
* New method check_wheel_tags for override
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 2 09:45:34 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.15.5:
|
||||||
|
* Add keyring cli get creds mode
|
||||||
|
* Fix release note autogenerator
|
||||||
|
- 0.15.4
|
||||||
|
* Skip netrc when parse failed
|
||||||
|
* Update dependencies
|
||||||
|
* Switch to trusted publisher
|
||||||
|
* Test on 3.13
|
||||||
|
- 0.15.3
|
||||||
|
* Allow passing headers to package finder
|
||||||
|
* ci: Matrix for old python versions on macos
|
||||||
|
- 0.15.2
|
||||||
|
* Incorrect username when using system keyring CLI
|
||||||
|
- 0.15.1
|
||||||
|
* Close local files after read
|
||||||
|
- 0.15.0
|
||||||
|
* Support exclude_newer_than evaluation
|
||||||
|
* Support httpx.Client
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 21 10:44:21 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sun Jan 21 10:44:21 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-unearth
|
# spec file for package python-unearth
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 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,31 +18,28 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-unearth
|
Name: python-unearth
|
||||||
Version: 0.14.0
|
Version: 0.17.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A utility to fetch and download python packages
|
Summary: A utility to fetch and download python packages
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://unearth.readthedocs.io/
|
URL: https://unearth.readthedocs.io/
|
||||||
Source: https://files.pythonhosted.org/packages/source/u/unearth/unearth-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/u/unearth/unearth-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.8}
|
||||||
BuildRequires: %{python_module cached-property >= 1.5.2 if %python-base < 3.8}
|
|
||||||
BuildRequires: %{python_module packaging >= 20}
|
BuildRequires: %{python_module packaging >= 20}
|
||||||
BuildRequires: %{python_module pdm-backend}
|
BuildRequires: %{python_module pdm-backend}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module requests >= 2.25}
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires: python-httpx
|
||||||
Requires: python-packaging >= 20
|
Requires: python-packaging >= 20
|
||||||
Requires: python-requests >= 2.25
|
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if 0%{?python_version_nodots} < 38
|
|
||||||
Requires: python-cached-property >= 1.5.2
|
|
||||||
%endif
|
|
||||||
# SECTION test
|
# SECTION test
|
||||||
BuildRequires: %{python_module Flask >= 2.1.2}
|
BuildRequires: %{python_module Flask >= 2.1.2}
|
||||||
|
BuildRequires: %{python_module httpx}
|
||||||
BuildRequires: %{python_module pytest-httpserver >= 1.0.4}
|
BuildRequires: %{python_module pytest-httpserver >= 1.0.4}
|
||||||
|
BuildRequires: %{python_module pytest-mock}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module requests-wsgi-adapter >= 0.4.1}
|
BuildRequires: %{python_module requests-wsgi-adapter >= 0.4.1}
|
||||||
BuildRequires: %{python_module trustme >= 0.9.0}
|
BuildRequires: %{python_module trustme >= 0.9.0}
|
||||||
@@ -84,6 +81,6 @@ They provide all the low-level functionalities that are needed to resolve and in
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
%python_alternative %{_bindir}/unearth
|
%python_alternative %{_bindir}/unearth
|
||||||
%{python_sitelib}/unearth
|
%{python_sitelib}/unearth
|
||||||
%{python_sitelib}/unearth-%{version}*-info
|
%{python_sitelib}/unearth-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f3cddfb94ac0f865fbcf964231556ef7183010379c00b01205517a50c78a186d
|
|
||||||
size 280614
|
|
||||||
3
unearth-0.17.3.tar.gz
Normal file
3
unearth-0.17.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:32e96c9df63c563a118d411dfb4f9c672f181a410977f6765c0ed430b0d32784
|
||||||
|
size 284628
|
||||||
Reference in New Issue
Block a user