forked from pool/python-keyring
- Version update to 13.0.0:
* #327: In kwallet backend, if the collection or item is locked, a ``KeyringLocked`` exception is raised. Clients expecting a None response from ``get_password`` under this condition will need to catch this exception. Additionally, an ``InitError`` is now raised if the connection cannot be established to the DBus. * #298: In kwallet backend, when checking an existing handle, verify that it is still valid or create a new connection. * Fixed issue in SecretService. Ref #226. * #322: Fix AttributeError when ``escape.__builtins__`` is a dict. * Deprecated ``keyring.util.escape`` module. If you use this module or encounter the warning (on the latest release of your packages), please `file a ticket <https://github.com/jaraco/keyring/issues/new>`_. * Unpin SecretStorage on Python 3.5+. Requires that Setuptools 17.1 be used. Note that the special handling will be unnecessary once Pip 9 can be assumed (as it will exclude SecretStorage 3 in non-viable environments). * #310: Keyring now loads all backends through entry points. * #312: Use ``entrypoints`` instead of pkg_resources to avoid performance hit loading pkg_resources. Adds a dependency on ``entrypoints``. * #294: No longer expose ``keyring.__version__`` (added in 8.1) to avoid performance hit loading pkg_resources. * #299: Keyring exceptions are now derived from a base OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-keyring?expand=0&rev=65
This commit is contained in:
committed by
Git OBS Bridge
parent
303db75e2a
commit
c9caa62960
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0e6129e8c5bc80da34cc1942d30daad79ed40419fcaaa538278c3b2ff235b313
|
|
||||||
size 40664
|
|
3
keyring-13.0.0.tar.gz
Normal file
3
keyring-13.0.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dd188c7d40e6778e18d330a96d0bef77bffc109dad82270133e3969908016862
|
||||||
|
size 42883
|
@@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 23 06:58:48 UTC 2018 - tchvatal@suse.com
|
||||||
|
|
||||||
|
- Version update to 13.0.0:
|
||||||
|
* #327: In kwallet backend, if the collection or item is
|
||||||
|
locked, a ``KeyringLocked`` exception is raised. Clients
|
||||||
|
expecting a None response from ``get_password`` under
|
||||||
|
this condition will need to catch this exception.
|
||||||
|
Additionally, an ``InitError`` is now raised if the
|
||||||
|
connection cannot be established to the DBus.
|
||||||
|
* #298: In kwallet backend, when checking an existing
|
||||||
|
handle, verify that it is still valid or create a new
|
||||||
|
connection.
|
||||||
|
* Fixed issue in SecretService. Ref #226.
|
||||||
|
* #322: Fix AttributeError when ``escape.__builtins__``
|
||||||
|
is a dict.
|
||||||
|
* Deprecated ``keyring.util.escape`` module. If you use
|
||||||
|
this module or encounter the warning (on the latest
|
||||||
|
release of your packages), please `file a ticket
|
||||||
|
<https://github.com/jaraco/keyring/issues/new>`_.
|
||||||
|
* Unpin SecretStorage on Python 3.5+. Requires that
|
||||||
|
Setuptools 17.1 be used. Note that the special
|
||||||
|
handling will be unnecessary once Pip 9 can be
|
||||||
|
assumed (as it will exclude SecretStorage 3 in
|
||||||
|
non-viable environments).
|
||||||
|
* #310: Keyring now loads all backends through entry
|
||||||
|
points.
|
||||||
|
* #312: Use ``entrypoints`` instead of pkg_resources to
|
||||||
|
avoid performance hit loading pkg_resources. Adds
|
||||||
|
a dependency on ``entrypoints``.
|
||||||
|
* #294: No longer expose ``keyring.__version__`` (added
|
||||||
|
in 8.1) to avoid performance hit loading pkg_resources.
|
||||||
|
* #299: Keyring exceptions are now derived from a base
|
||||||
|
``keyring.errors.KeyringError``.
|
||||||
|
* #296: Prevent AttributeError on import when Debian has
|
||||||
|
created broken dbus installs.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 24 10:27:23 UTC 2018 - tchvatal@suse.com
|
Wed Jan 24 10:27:23 UTC 2018 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-keyring
|
Name: python-keyring
|
||||||
Version: 10.5.0
|
Version: 13.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Store and access your passwords safely
|
Summary: Store and access your passwords safely
|
||||||
License: Python-2.0 AND MIT
|
License: Python-2.0 AND MIT
|
||||||
@@ -27,13 +27,17 @@ 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 SecretStorage}
|
BuildRequires: %{python_module SecretStorage}
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
|
BuildRequires: %{python_module entrypoints}
|
||||||
BuildRequires: %{python_module mock}
|
BuildRequires: %{python_module mock}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest >= 3.5}
|
||||||
|
BuildRequires: %{python_module pytest-flake8}
|
||||||
|
BuildRequires: %{python_module pytest-sugar >= 0.9.1}
|
||||||
|
BuildRequires: %{python_module setuptools >= 17.1}
|
||||||
BuildRequires: %{python_module setuptools_scm >= 1.15.0}
|
BuildRequires: %{python_module setuptools_scm >= 1.15.0}
|
||||||
BuildRequires: %{python_module setuptools}
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-SecretStorage
|
Requires: python-SecretStorage
|
||||||
|
Requires: python-entrypoints
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@@ -55,11 +59,11 @@ sed -i '/^#!/d' keyring/cli.py
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd docs
|
# remove test expecting the /usr/bin
|
||||||
%{python_expand export PYTHONPATH="%{buildroot}%{$python_sitelib}"
|
rm -rf tests/test_packaging.py
|
||||||
py.test-%{$python_bin_suffix} --pyargs keyring.tests
|
# sadly most tests need running dbus to communicate with secretstorage/etc
|
||||||
}
|
%{python_expand rm -rf _build*
|
||||||
popd
|
py.test-%{$python_bin_suffix}}
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst CHANGES.rst
|
%doc README.rst CHANGES.rst
|
||||||
|
Reference in New Issue
Block a user