From 6a6761bf3ab4253c2d5a5706666bc76d2102e64c Mon Sep 17 00:00:00 2001 From: Arjan van de Ven Date: Mon, 8 Aug 2022 15:10:47 +0000 Subject: [PATCH] pypi-keyring: Autospec creation for update from version 23.7.0 to version 23.8.2 Dmitry Shachnev (1): Fix regression which made libsecret backend unusable in v23.8.0 Jason R. Coombs (15): Use '-dev' for every Python version. Ref actions/setup-python#213. Use Python 3.11 for cutting releases. Pin flake8. Workaround for tholo/pytest-flake8#87. Add support for a scheme property in SecretService backend. Set to 'KeypassXC' to use the username/system convention from KeypassXC, either with KEYRING_PROPERTY_SCHEME or keyring.with_properties(scheme='KeypassXC'). Fixes #448. Add test for with_properties helper. Re-use with_properties in with_keychain. Deprecate macOS.Keyring.with_keychain, superseded by with_properties. Extract SchemeSelectable mixin Allow _query to include other keys Add SelectableScheme to libsecret. Add tests for SchemeSelectable. Update changelog Use connect spelling and capitalization on KeePassXC Update changelog Restore ability to set libsecret.Keyring.collection. Ref #581. --- Makefile | 2 +- options.conf | 2 +- pypi-keyring.spec | 20 +++++++++++--------- release | 2 +- upstream | 2 +- versions | 2 +- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 7ad8bf9..bc23385 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PKG_NAME := pypi-keyring -URL = https://files.pythonhosted.org/packages/01/92/9a1973e6132089e1263b0dc545a021d0733bf5d5b6fa19cc7e641e1925ae/keyring-23.7.0.tar.gz +URL = https://files.pythonhosted.org/packages/a7/d8/ca70a209ea09e97e4d9feba2f6b38b4eaf918de15a7ada3f3a2246c26cf9/keyring-23.8.2.tar.gz ARCHIVES = include ../common/Makefile.common diff --git a/options.conf b/options.conf index 43ec182..b50aa68 100644 --- a/options.conf +++ b/options.conf @@ -1,6 +1,6 @@ [package] name = pypi-keyring -url = https://files.pythonhosted.org/packages/01/92/9a1973e6132089e1263b0dc545a021d0733bf5d5b6fa19cc7e641e1925ae/keyring-23.7.0.tar.gz +url = https://files.pythonhosted.org/packages/a7/d8/ca70a209ea09e97e4d9feba2f6b38b4eaf918de15a7ada3f3a2246c26cf9/keyring-23.8.2.tar.gz archives = giturl = https://github.com/jaraco/keyring/ domain = diff --git a/pypi-keyring.spec b/pypi-keyring.spec index 2397e7a..d1c41da 100644 --- a/pypi-keyring.spec +++ b/pypi-keyring.spec @@ -3,10 +3,10 @@ # Generated by: autospec.py # Name : pypi-keyring -Version : 23.7.0 -Release : 121 -URL : https://files.pythonhosted.org/packages/01/92/9a1973e6132089e1263b0dc545a021d0733bf5d5b6fa19cc7e641e1925ae/keyring-23.7.0.tar.gz -Source0 : https://files.pythonhosted.org/packages/01/92/9a1973e6132089e1263b0dc545a021d0733bf5d5b6fa19cc7e641e1925ae/keyring-23.7.0.tar.gz +Version : 23.8.2 +Release : 122 +URL : https://files.pythonhosted.org/packages/a7/d8/ca70a209ea09e97e4d9feba2f6b38b4eaf918de15a7ada3f3a2246c26cf9/keyring-23.8.2.tar.gz +Source0 : https://files.pythonhosted.org/packages/a7/d8/ca70a209ea09e97e4d9feba2f6b38b4eaf918de15a7ada3f3a2246c26cf9/keyring-23.8.2.tar.gz Summary : Store and access your passwords safely. Group : Development/Tools License : MIT Python-2.0 @@ -66,10 +66,10 @@ python3 components for the pypi-keyring package. %prep -%setup -q -n keyring-23.7.0 -cd %{_builddir}/keyring-23.7.0 +%setup -q -n keyring-23.8.2 +cd %{_builddir}/keyring-23.8.2 pushd .. -cp -a keyring-23.7.0 buildavx2 +cp -a keyring-23.8.2 buildavx2 popd %build @@ -77,7 +77,7 @@ export http_proxy=http://127.0.0.1:9/ export https_proxy=http://127.0.0.1:9/ export no_proxy=localhost,127.0.0.1,0.0.0.0 export LANG=C.UTF-8 -export SOURCE_DATE_EPOCH=1657810396 +export SOURCE_DATE_EPOCH=1659971440 export GCC_IGNORE_WERROR=1 export AR=gcc-ar export RANLIB=gcc-ranlib @@ -99,15 +99,17 @@ python3 -m build --wheel --skip-dependency-check --no-isolation popd %check +export LANG=C.UTF-8 export http_proxy=http://127.0.0.1:9/ export https_proxy=http://127.0.0.1:9/ export no_proxy=localhost,127.0.0.1,0.0.0.0 python setup.py ptr || : + %install export MAKEFLAGS=%{?_smp_mflags} rm -rf %{buildroot} mkdir -p %{buildroot}/usr/share/package-licenses/pypi-keyring -cp %{_builddir}/keyring-23.7.0/LICENSE %{buildroot}/usr/share/package-licenses/pypi-keyring/8e6689d37f82d5617b7f7f7232c94024d41066d1 +cp %{_builddir}/keyring-%{version}/LICENSE %{buildroot}/usr/share/package-licenses/pypi-keyring/8e6689d37f82d5617b7f7f7232c94024d41066d1 pip install --root=%{buildroot} --no-deps --ignore-installed dist/*.whl echo ----[ mark ]---- cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || : diff --git a/release b/release index 9289ddc..9f54fe3 100644 --- a/release +++ b/release @@ -1 +1 @@ -121 +122 diff --git a/upstream b/upstream index c33131c..cf442b4 100644 --- a/upstream +++ b/upstream @@ -1 +1 @@ -22e877e63ff882b917962dd0848d5bcc17bea514/keyring-23.7.0.tar.gz +0bc952cb51ed9f55bcaf0862ca3d5e800fa806dc/keyring-23.8.2.tar.gz diff --git a/versions b/versions index 504ae56..1fbbb1b 100644 --- a/versions +++ b/versions @@ -1 +1 @@ -23.7.0 +23.8.2