Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyring/
Date: Thu, 03 Feb 2022 21:34:24
Message-Id: 1643923860.65c01ca152c66c99ac2a9325336163403c726035.mgorny@gentoo
1 commit: 65c01ca152c66c99ac2a9325336163403c726035
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 21:31:00 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 21:31:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c01ca1
7
8 dev-python/keyring: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/keyring/Manifest | 1 -
13 dev-python/keyring/keyring-23.4.0.ebuild | 46 --------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest
17 index eff4b611b586..0f4c66af10c2 100644
18 --- a/dev-python/keyring/Manifest
19 +++ b/dev-python/keyring/Manifest
20 @@ -1,2 +1 @@
21 -DIST keyring-23.4.0.tar.gz 44557 BLAKE2B 1115ecfca9f7d7cd5d28168d9d4198e329217ace82a32fe4db1b40aa96e6a352face46f4e8877407618e701713a8f1347810a24706bbe1872bff758f71ae34f5 SHA512 214041375a1bddda099042168f0f4c5ea4cf24c347a0693ab3efd7eb7a0ab2c36abff33f3d83168cfe5ae5dd971e0f3de4548fb0651e435009766aec740e64eb
22 DIST keyring-23.5.0.tar.gz 44586 BLAKE2B 70179f8353147679f03c888b1af00d2461264e7a7062eb7b1372615ae883f43352999ce57e24f3378ac66d5e74a81df66702bf380eb32d6d3554777e9ca63dfe SHA512 639d1cdece5dac854053818f3a4751b30fb9f13a2b3abb0090ba0cb519b50604858673678fe6205c2ec10be863e5f3d63cc7891424beabe2482d35b820a60da1
23
24 diff --git a/dev-python/keyring/keyring-23.4.0.ebuild b/dev-python/keyring/keyring-23.4.0.ebuild
25 deleted file mode 100644
26 index f96cd174d7d8..000000000000
27 --- a/dev-python/keyring/keyring-23.4.0.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Provides access to the system keyring service"
39 -HOMEPAGE="https://github.com/jaraco/keyring"
40 -SRC_URI="https://github.com/jaraco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -SLOT="0"
43 -LICENSE="PSF-2"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86 ~x64-macos"
45 -
46 -RDEPEND="
47 - dev-python/secretstorage[${PYTHON_USEDEP}]
48 - dev-python/entrypoints[${PYTHON_USEDEP}]
49 - dev-python/jeepney[${PYTHON_USEDEP}]
50 - dev-python/importlib_metadata[${PYTHON_USEDEP}]
51 -"
52 -BDEPEND="
53 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
54 - dev-python/toml[${PYTHON_USEDEP}]
55 -"
56 -
57 -distutils_enable_tests pytest
58 -distutils_enable_sphinx docs \
59 - dev-python/jaraco-packaging \
60 - dev-python/rst-linker
61 -
62 -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
63 -
64 -EPYTEST_DESELECT=(
65 - # this test fails if importlib-metadata returns more than one
66 - # entry, i.e. when keyring is installed already
67 - tests/test_packaging.py::test_entry_point
68 -)
69 -
70 -EPYTEST_IGNORE=(
71 - # apparently does not unlock the keyring properly
72 - tests/backends/test_libsecret.py
73 - # hangs
74 - tests/backends/test_kwallet.py
75 -)