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: Sat, 27 Feb 2021 08:09:36
Message-Id: 1614413368.4a75d383ed89e6199e4924df0689f88253047db7.mgorny@gentoo
1 commit: 4a75d383ed89e6199e4924df0689f88253047db7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 07:58:51 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 08:09:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a75d383
7
8 dev-python/keyring: Bump to 22.2.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/keyring/Manifest | 1 +
13 dev-python/keyring/keyring-22.2.0.ebuild | 43 ++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest
17 index 07829e0a2f7..7a800d6ed21 100644
18 --- a/dev-python/keyring/Manifest
19 +++ b/dev-python/keyring/Manifest
20 @@ -1,2 +1,3 @@
21 DIST keyring-22.0.0.tar.gz 47693 BLAKE2B 88a151327778e5e039c43caa68e53705d985d6ef2b7b668df1d941160b843f47a0e2f6f79c9afc39bc66a36373c0374333296a3cb98f1c65c620a8fad3f43fec SHA512 5e9e27cf9b09f042747909b442864a1ea0669b36f69592538b487978a582e16e58056d6bd68b35566143000ed3f5c7733e3ef471c66935a811e09fc4b7f56f6f
22 DIST keyring-22.0.1.tar.gz 47782 BLAKE2B ec9f5c0418b2c279f111cbcb8ccc1fc05f64e859e2e675041289a639c7e2d4681e562c9c023e46f1eacb99f88114af97545ad36f71037db0b77e83d927785ce0 SHA512 2e264570d2e905ce4862d71fe4b02fcf0631218a693292c13159fdbad0032e91d81910f84d787e948057e2f428fcf8677ebdd83af4da54c3359347f642db0441
23 +DIST keyring-22.2.0.tar.gz 48047 BLAKE2B 2c6d719b303f572ce87ee7980b4cd897a5ba297ec3d725e3734e946ad5b0a8e77ff5dd5d29237b821171b29a0ecd0c9c671e1caf1ec5d01f560a1f4b16f13863 SHA512 7c9ffe1e7d13e53c2ca8f4f05716eee823cf0758d0b8a9bb9ff63ff025ccc9cd87ee9ec954b57a3716144fcc9d0dc5ce7988d70cee2032101ff006a51f4b8a04
24
25 diff --git a/dev-python/keyring/keyring-22.2.0.ebuild b/dev-python/keyring/keyring-22.2.0.ebuild
26 new file mode 100644
27 index 00000000000..d62127ef81b
28 --- /dev/null
29 +++ b/dev-python/keyring/keyring-22.2.0.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( pypy3 python3_{7..9} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Provides access to the system keyring service"
42 +HOMEPAGE="https://github.com/jaraco/keyring"
43 +SRC_URI="https://github.com/jaraco/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="PSF-2"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
48 +
49 +RDEPEND="
50 + dev-python/secretstorage[${PYTHON_USEDEP}]
51 + dev-python/entrypoints[${PYTHON_USEDEP}]
52 + dev-python/jeepney[${PYTHON_USEDEP}]
53 + $(python_gen_cond_dep '
54 + dev-python/importlib_metadata[${PYTHON_USEDEP}]
55 + ' pypy3 python3_7)
56 +"
57 +BDEPEND="
58 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
59 + dev-python/toml[${PYTHON_USEDEP}]
60 +"
61 +
62 +distutils_enable_tests pytest
63 +distutils_enable_sphinx docs \
64 + dev-python/jaraco-packaging \
65 + dev-python/rst-linker
66 +
67 +python_prepare_all() {
68 + rm tests/backends/test_kwallet.py || die
69 +
70 + distutils-r1_python_prepare_all
71 +
72 + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
73 +}