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, 30 Dec 2021 21:30:30
Message-Id: 1640899589.0040e2de6e064d5d14596e6c643b150d7b362971.mgorny@gentoo
1 commit: 0040e2de6e064d5d14596e6c643b150d7b362971
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 21:26:29 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 21:26:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0040e2de
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.3.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 f7059690758f..7f5ec820eb14 100644
18 --- a/dev-python/keyring/Manifest
19 +++ b/dev-python/keyring/Manifest
20 @@ -1,2 +1 @@
21 -DIST keyring-23.3.0.tar.gz 44669 BLAKE2B 3f6cd3ff558b0a792d405c1c8175bf68c8463f26662d74c1f439e28d7914ef7f26c6091c64ef372e78028eeda04d2a5bcbe253477632b2e53d92d36ade43d47a SHA512 39264abf585949da444fdacbb1195c981157e151d1d14373c5afe0f6547f8da46b2da3e14f47e363bbccd69ee90bc182c287bd963d8b99301a5e919e511426cf
22 DIST keyring-23.4.0.tar.gz 44557 BLAKE2B 1115ecfca9f7d7cd5d28168d9d4198e329217ace82a32fe4db1b40aa96e6a352face46f4e8877407618e701713a8f1347810a24706bbe1872bff758f71ae34f5 SHA512 214041375a1bddda099042168f0f4c5ea4cf24c347a0693ab3efd7eb7a0ab2c36abff33f3d83168cfe5ae5dd971e0f3de4548fb0651e435009766aec740e64eb
23
24 diff --git a/dev-python/keyring/keyring-23.3.0.ebuild b/dev-python/keyring/keyring-23.3.0.ebuild
25 deleted file mode 100644
26 index f96cd174d7d8..000000000000
27 --- a/dev-python/keyring/keyring-23.3.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 -)