Accepting request 1098435 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/1098435 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-keyring?expand=0&rev=120
This commit is contained in:
parent
c891a243bc
commit
055ef6fe64
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ba2e15a9b35e21908d0aaf4e0a47acc52d6ae33444df0da2b49d41a46ef6d678
|
|
||||||
size 59582
|
|
BIN
keyring-24.2.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
keyring-24.2.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 12 22:53:41 UTC 2023 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- specfile:
|
||||||
|
* require python >=3.8
|
||||||
|
* Changelog got renamed to NEWS
|
||||||
|
|
||||||
|
- update to version 24.2.0:
|
||||||
|
* Features
|
||||||
|
+ Require Python 3.8 or later.
|
||||||
|
|
||||||
|
- changes from version 24.1.1:
|
||||||
|
* Bugfixes
|
||||||
|
+ Restore support for reading from a config file (with regression
|
||||||
|
test). (#638)
|
||||||
|
|
||||||
|
- changes from version 24.1.0:
|
||||||
|
* Bugfixes
|
||||||
|
+ Avoid logging warning when no config file is present. (#635)
|
||||||
|
+ Include all operations in the error message if no operation was
|
||||||
|
supplied. (#636)
|
||||||
|
* Improved Documentation
|
||||||
|
+ Correct name of macOS backend in README. (#637)
|
||||||
|
|
||||||
|
- changes from version 24.0.0:
|
||||||
|
* #633: Added diagnose command with basic support.
|
||||||
|
* #487: Removed keyring.backends.OS_X module.
|
||||||
|
* #593: Removed keyring.util.properties module.
|
||||||
|
|
||||||
|
- changes from version 23.14.0:
|
||||||
|
* #623: On macOS, warn the user when keychain property is indicated,
|
||||||
|
as that value can't be honored (macOS API no longer supports
|
||||||
|
indicating the target keychain).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 21 12:27:41 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Fri Apr 21 12:27:41 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -24,15 +24,14 @@
|
|||||||
%define psuffix %{nil}
|
%define psuffix %{nil}
|
||||||
%bcond_with test
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
|
||||||
Name: python-keyring%{psuffix}
|
Name: python-keyring%{psuffix}
|
||||||
Version: 23.13.1
|
Version: 24.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: System keyring service access from Python
|
Summary: System keyring service access from Python
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/jaraco/keyring
|
URL: https://github.com/jaraco/keyring
|
||||||
Source: https://files.pythonhosted.org/packages/source/k/keyring/keyring-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/k/keyring/keyring-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.8}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools >= 56}
|
BuildRequires: %{python_module setuptools >= 56}
|
||||||
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
|
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
|
||||||
@ -40,17 +39,18 @@ BuildRequires: %{python_module wheel}
|
|||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-SecretStorage >= 3.2
|
Requires: python-SecretStorage >= 3.2
|
||||||
%if 0%{python_version_nodots} < 310
|
|
||||||
Requires: python-importlib-resources
|
|
||||||
%endif
|
|
||||||
Requires: python-jaraco.classes
|
Requires: python-jaraco.classes
|
||||||
Requires: python-jeepney >= 0.4.2
|
Requires: python-jeepney >= 0.4.2
|
||||||
%if 0%{python_version_nodots} < 312
|
|
||||||
Requires: python-importlib-metadata >= 4.11.4
|
|
||||||
%endif
|
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun):update-alternatives
|
Requires(postun):update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
|
%if 0%{python_version_nodots} < 310
|
||||||
|
Requires: python-importlib-resources
|
||||||
|
%endif
|
||||||
|
%if 0%{python_version_nodots} < 312
|
||||||
|
Requires: python-importlib-metadata >= 4.11.4
|
||||||
|
%endif
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module keyring = %{version}}
|
BuildRequires: %{python_module keyring = %{version}}
|
||||||
BuildRequires: %{python_module pytest >= 3.5}
|
BuildRequires: %{python_module pytest >= 3.5}
|
||||||
@ -92,7 +92,7 @@ sed -i '/^#!/d' keyring/cli.py
|
|||||||
%python_uninstall_alternative keyring
|
%python_uninstall_alternative keyring
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst CHANGES.rst
|
%doc README.rst NEWS.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%python_alternative %{_bindir}/keyring
|
%python_alternative %{_bindir}/keyring
|
||||||
%{python_sitelib}/keyring-%{version}*-info
|
%{python_sitelib}/keyring-%{version}*-info
|
||||||
|
Loading…
Reference in New Issue
Block a user