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

Commit fcadda1

Browse files
fenrus75clrpackages
authored andcommitted
keyring: Autospec creation for update from version 23.2.1 to version 23.3.0
Jason R. Coombs (12): Implement tidelift banner using a Sphinx directive implemented by jaraco.tidelift. Add intersphinx mappings for Python to prevent spurious nitpicky failures. Fixes jaraco/skeleton#51. Test on Python 3.10 (final). Rely on pytest 6 and drop workaround for pytest-dev/pytest#6178. Remove wheel from build requirements. It's implied for wheel builds. Ref pypa/setuptools#1498. An initial attempt to skip collection on macOS API module. Doesn't work because mac_ver doesn't work on newer macs with older Pythons. Ref #529. Use presence of Security.SecItemAdd to detect viable macOS API. Ref #529. Only run macOS backend tests when the backend is viable. Fixes #529. Fixes #547. Rename test to match preferred naming convention for macOS. Update changelog. Add compatibility note for macOS. Update changelog to replace 23.2.2 not released. Kian-Meng, Ang (1): Fix typos wwuck (2): Change get_credential to return generic Credential Update changelog and bump version.
1 parent 581827d commit fcadda1

8 files changed

+20
-22
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := keyring
2-
URL = https://files.pythonhosted.org/packages/cc/24/c5402ba0c6380cc058980e2b73f0597ab6875692f185054a94244b7161ab/keyring-23.2.1.tar.gz
2+
URL = https://files.pythonhosted.org/packages/28/c7/a0800053712e3b9c8dc06072d71b1305239100a5d2eda5e6f183e2835837/keyring-23.3.0.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

buildreq_cache

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
23.3.0
2+
pypi(importlib_metadata)

keyring.spec

+13-14
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,22 @@
33
# Generated by: autospec.py
44
#
55
Name : keyring
6-
Version : 23.2.1
7-
Release : 107
8-
URL : https://files.pythonhosted.org/packages/cc/24/c5402ba0c6380cc058980e2b73f0597ab6875692f185054a94244b7161ab/keyring-23.2.1.tar.gz
9-
Source0 : https://files.pythonhosted.org/packages/cc/24/c5402ba0c6380cc058980e2b73f0597ab6875692f185054a94244b7161ab/keyring-23.2.1.tar.gz
6+
Version : 23.3.0
7+
Release : 108
8+
URL : https://files.pythonhosted.org/packages/28/c7/a0800053712e3b9c8dc06072d71b1305239100a5d2eda5e6f183e2835837/keyring-23.3.0.tar.gz
9+
Source0 : https://files.pythonhosted.org/packages/28/c7/a0800053712e3b9c8dc06072d71b1305239100a5d2eda5e6f183e2835837/keyring-23.3.0.tar.gz
1010
Summary : Store and access your passwords safely.
1111
Group : Development/Tools
1212
License : MIT Python-2.0
1313
Requires: keyring-bin = %{version}-%{release}
1414
Requires: keyring-license = %{version}-%{release}
1515
Requires: keyring-python = %{version}-%{release}
1616
Requires: keyring-python3 = %{version}-%{release}
17-
Requires: importlib_metadata
18-
Requires: jeepney
1917
Requires: secretstorage
2018
BuildRequires : buildreq-distutils3
21-
BuildRequires : jeepney
22-
BuildRequires : secretstorage
19+
BuildRequires : pypi(importlib_metadata)
20+
BuildRequires : pypi(setuptools)
21+
BuildRequires : pypi(setuptools_scm)
2322
BuildRequires : setuptools-python
2423

2524
%description
@@ -68,15 +67,15 @@ python3 components for the keyring package.
6867

6968

7069
%prep
71-
%setup -q -n keyring-23.2.1
72-
cd %{_builddir}/keyring-23.2.1
70+
%setup -q -n keyring-23.3.0
71+
cd %{_builddir}/keyring-23.3.0
7372

7473
%build
7574
export http_proxy=http://127.0.0.1:9/
7675
export https_proxy=http://127.0.0.1:9/
7776
export no_proxy=localhost,127.0.0.1,0.0.0.0
7877
export LANG=C.UTF-8
79-
export SOURCE_DATE_EPOCH=1635746691
78+
export SOURCE_DATE_EPOCH=1637856231
8079
export GCC_IGNORE_WERROR=1
8180
export AR=gcc-ar
8281
export RANLIB=gcc-ranlib
@@ -86,7 +85,7 @@ export FCFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=auto "
8685
export FFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=auto "
8786
export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=auto "
8887
export MAKEFLAGS=%{?_smp_mflags}
89-
python3 setup.py build
88+
python3 -m build --wheel --skip-dependency-check --no-isolation
9089

9190
%check
9291
export http_proxy=http://127.0.0.1:9/
@@ -97,8 +96,8 @@ python setup.py ptr || :
9796
export MAKEFLAGS=%{?_smp_mflags}
9897
rm -rf %{buildroot}
9998
mkdir -p %{buildroot}/usr/share/package-licenses/keyring
100-
cp %{_builddir}/keyring-23.2.1/LICENSE %{buildroot}/usr/share/package-licenses/keyring/8e6689d37f82d5617b7f7f7232c94024d41066d1
101-
python3 -tt setup.py build install --root=%{buildroot}
99+
cp %{_builddir}/keyring-23.3.0/LICENSE %{buildroot}/usr/share/package-licenses/keyring/8e6689d37f82d5617b7f7f7232c94024d41066d1
100+
pip install --root=%{buildroot} --no-deps --ignore-installed dist/*.whl
102101
echo ----[ mark ]----
103102
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :
104103
echo ----[ mark ]----

options.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = keyring
3-
url = https://files.pythonhosted.org/packages/cc/24/c5402ba0c6380cc058980e2b73f0597ab6875692f185054a94244b7161ab/keyring-23.2.1.tar.gz
3+
url = https://files.pythonhosted.org/packages/28/c7/a0800053712e3b9c8dc06072d71b1305239100a5d2eda5e6f183e2835837/keyring-23.3.0.tar.gz
44
archives =
55
giturl = https://github.com/jaraco/keyring.git
66
domain =

release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
107
1+
108

upstream

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
938e46b79fe90c2b069d7649f8ebd0389f42f191/keyring-23.2.1.tar.gz
1+
f38eacc0d0ef8489b019877c4f96e146c77446da/keyring-23.3.0.tar.gz

versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
23.2.1
1+
23.3.0

whatrequires

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
# This file contains recursive sources that require this package
2-
Cura
32
conda
43
lutris
5-
spyder-ide
6-
twine
74
wheel

0 commit comments

Comments
 (0)