Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyring/
Date: Sun, 07 Aug 2022 19:22:16
Message-Id: 1659900094.4130afdbbb2b1a2be656ec9a2c0f90619c2f7cc4.arthurzam@gentoo
1 commit: 4130afdbbb2b1a2be656ec9a2c0f90619c2f7cc4
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 7 18:57:14 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 7 19:21:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4130afdb
7
8 dev-python/keyring: add 23.8.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/keyring/Manifest | 1 +
13 dev-python/keyring/keyring-23.8.0.ebuild | 51 ++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest
17 index 191067e86315..bc4e22a8fd3a 100644
18 --- a/dev-python/keyring/Manifest
19 +++ b/dev-python/keyring/Manifest
20 @@ -1,2 +1,3 @@
21 DIST keyring-23.6.0.gh.tar.gz 45236 BLAKE2B 98ea183760da39512fcebd93b182b10f031853ee88d4e93add119a760851d9552d830fe599c57937d84a23df67b6a6ca9e33a5623a034da2fc8b28c0216a6aaf SHA512 dc196914389ad12f89652614ea00b2ca17cf22471f1bd41ed3cb58519b1ca9b8ad7f497707d77c31d1354c12d73b9881d4f5511c61a6dc562ec358f3009a0c70
22 DIST keyring-23.7.0.gh.tar.gz 45352 BLAKE2B 8cad2f2c7443adf710220d546a080c4ca106c9939f5a91ef56cd6f034cf71fcb86515005f17adf3ffc35ab616ed722e469ae0c92040d57d4183d6a4ced6a2682 SHA512 351afb3e376350192d5b02f2cb9bdf4bc28d551e4184145bd05ba7fd0c950c7cfeae0f75ed63bfed670648e2b7d2f491b894939d37edbdb0869d4cb74a4fc97e
23 +DIST keyring-23.8.0.gh.tar.gz 45941 BLAKE2B db78b53e2d2964c65d850df4226954db696037fa220f003d91e94603ce12b4d3668b7b53a91b71244d8555ba9c9195309a2e8a9aafd88d12da0f1a916b469857 SHA512 daa0b88b9f7c6e94eb589c15f364ff2a0fb83cead50b4fcafa6214072681d4346c8abe7ee8ab76f0ab93b7c7bccc551f65912dbfa749256e226f1e84793676dc
24
25 diff --git a/dev-python/keyring/keyring-23.8.0.ebuild b/dev-python/keyring/keyring-23.8.0.ebuild
26 new file mode 100644
27 index 000000000000..a90ebe22521a
28 --- /dev/null
29 +++ b/dev-python/keyring/keyring-23.8.0.ebuild
30 @@ -0,0 +1,51 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Provides access to the system keyring service"
42 +HOMEPAGE="
43 + https://github.com/jaraco/keyring/
44 + https://pypi.org/project/keyring/
45 +"
46 +SRC_URI="
47 + https://github.com/jaraco/keyring/archive/v${PV}.tar.gz
48 + -> ${P}.gh.tar.gz
49 +"
50 +
51 +SLOT="0"
52 +LICENSE="PSF-2"
53 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
54 +
55 +RDEPEND="
56 + >=dev-python/secretstorage-3.2[${PYTHON_USEDEP}]
57 + >=dev-python/jeepney-0.4.2[${PYTHON_USEDEP}]
58 + $(python_gen_cond_dep '
59 + >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}]
60 + ' 3.8 3.9)
61 +"
62 +BDEPEND="
63 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
64 +"
65 +
66 +distutils_enable_tests pytest
67 +
68 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
69 +
70 +EPYTEST_DESELECT=(
71 + # this test fails if importlib-metadata returns more than one
72 + # entry, i.e. when keyring is installed already
73 + tests/test_packaging.py::test_entry_point
74 +)
75 +
76 +EPYTEST_IGNORE=(
77 + # apparently does not unlock the keyring properly
78 + tests/backends/test_libsecret.py
79 + # hangs
80 + tests/backends/test_kwallet.py
81 +)