Skip to content
This repository was archived by the owner on Oct 27, 2022. It is now read-only.

Commit 23c2c22

Browse files
phmccartyclrpackages
authored andcommitted
keyring: Autospec creation for update from version 21.2.0 to version 21.2.1
Jason R. Coombs (16): Suppress warnings in pytest-flake8, pytest-black, and pytest-checkdocs. Prefer pytest-black to pytest-black-multipy Test against Windows and Mac Define a default pool_vm_image Remove tox-venv and tox-pip-version. Tox-venv is discouraged (tox-dev/tox-venv#48 (comment)) and tox-pip-version was only there to support tox-venv. venv is dead; long live virtualenv. Add section on disabling keyring. Ref pypa/pip#6773 Replace use of pkg_resources in test_packaging. Add test capturing expectation that keyring should load degenerately if no metadata is present. Ref #426. Allow keyring to be imported in environments missing the metadata. Restores expectation lost in 19.3.0. Fixes #426. Alternative to #422. Update changelog. Ref #426. Add test capturing expectation that it should be possible to limit to recommended backends. Ref #423. Ensure ChainerBackend is excluded early to avoid recursion errors when evaluating limits on backends. Fixes #423. Update changelog. Ref #423. Rename tests to aid pytest with discovery. xfail the tests. Ref #436. Add test to trigger the undesirable behavior. Ref #355.
1 parent 64da38e commit 23c2c22

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := keyring
2-
URL = https://files.pythonhosted.org/packages/0b/2a/4abe0beccb37d125d77fd716d18c1a5cde509faa60a1b0d2e9bba13ec572/keyring-21.2.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/a6/52/eb8a0e13b54ec9240c7dd68fcd0951c52f62033d438af372831af770f7cc/keyring-21.2.1.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

buildreq_cache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
21.2.0
1+
21.2.1
22
setuptools
33
setuptools_scm-python
44
toml-python

keyring.spec

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Generated by: autospec.py
44
#
55
Name : keyring
6-
Version : 21.2.0
7-
Release : 79
8-
URL : https://files.pythonhosted.org/packages/0b/2a/4abe0beccb37d125d77fd716d18c1a5cde509faa60a1b0d2e9bba13ec572/keyring-21.2.0.tar.gz
9-
Source0 : https://files.pythonhosted.org/packages/0b/2a/4abe0beccb37d125d77fd716d18c1a5cde509faa60a1b0d2e9bba13ec572/keyring-21.2.0.tar.gz
6+
Version : 21.2.1
7+
Release : 80
8+
URL : https://files.pythonhosted.org/packages/a6/52/eb8a0e13b54ec9240c7dd68fcd0951c52f62033d438af372831af770f7cc/keyring-21.2.1.tar.gz
9+
Source0 : https://files.pythonhosted.org/packages/a6/52/eb8a0e13b54ec9240c7dd68fcd0951c52f62033d438af372831af770f7cc/keyring-21.2.1.tar.gz
1010
Summary : Store and access your passwords safely.
1111
Group : Development/Tools
1212
License : MIT Python-2.0
@@ -70,23 +70,22 @@ python3 components for the keyring package.
7070

7171

7272
%prep
73-
%setup -q -n keyring-21.2.0
74-
cd %{_builddir}/keyring-21.2.0
73+
%setup -q -n keyring-21.2.1
74+
cd %{_builddir}/keyring-21.2.1
7575

7676
%build
7777
export http_proxy=http://127.0.0.1:9/
7878
export https_proxy=http://127.0.0.1:9/
7979
export no_proxy=localhost,127.0.0.1,0.0.0.0
8080
export LANG=C.UTF-8
81-
export SOURCE_DATE_EPOCH=1584298101
82-
# -Werror is for werrorists
81+
export SOURCE_DATE_EPOCH=1588628416
8382
export GCC_IGNORE_WERROR=1
8483
export AR=gcc-ar
8584
export RANLIB=gcc-ranlib
8685
export NM=gcc-nm
8786
export CFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
88-
export FCFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
89-
export FFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
87+
export FCFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=4 "
88+
export FFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=4 "
9089
export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=4 "
9190
export MAKEFLAGS=%{?_smp_mflags}
9291
python3 setup.py build
@@ -100,7 +99,7 @@ python setup.py ptr || :
10099
export MAKEFLAGS=%{?_smp_mflags}
101100
rm -rf %{buildroot}
102101
mkdir -p %{buildroot}/usr/share/package-licenses/keyring
103-
cp %{_builddir}/keyring-21.2.0/LICENSE %{buildroot}/usr/share/package-licenses/keyring/8e6689d37f82d5617b7f7f7232c94024d41066d1
102+
cp %{_builddir}/keyring-21.2.1/LICENSE %{buildroot}/usr/share/package-licenses/keyring/8e6689d37f82d5617b7f7f7232c94024d41066d1
104103
python3 -tt setup.py build install --root=%{buildroot}
105104
echo ----[ mark ]----
106105
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :

options.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = keyring
3-
url = https://files.pythonhosted.org/packages/0b/2a/4abe0beccb37d125d77fd716d18c1a5cde509faa60a1b0d2e9bba13ec572/keyring-21.2.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/a6/52/eb8a0e13b54ec9240c7dd68fcd0951c52f62033d438af372831af770f7cc/keyring-21.2.1.tar.gz
44
archives =
55
giturl = https://github.com/jaraco/keyring.git
66
domain =
@@ -39,6 +39,8 @@ no_autostart = false
3939
nodebug = false
4040
# disable stripping binaries
4141
nostrip = false
42+
# configure build also for openmpi
43+
openmpi = false
4244
# optimize build for size over speed
4345
optimize_size = false
4446
# set profile for pgo

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
79
1+
80

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0fc5a191f8efe75d406795db677692a99044b8e2/keyring-21.2.0.tar.gz
1+
bb706a162e4eefeffef65a4e0614b4766c6ba1fd/keyring-21.2.1.tar.gz

versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
21.2.0
1+
21.2.1

0 commit comments

Comments
 (0)