From a2014cddc474ddf247d63fa74aac9a182a2bcefc Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 24 Jan 2023 00:56:11 +0000 Subject: gentoo auto-resync : 24:01:2023 - 00:56:11 --- dev-python/keyring/Manifest | 2 +- dev-python/keyring/keyring-23.13.1-r1.ebuild | 62 ++++++++++++++++++++++++++++ dev-python/keyring/keyring-23.13.1.ebuild | 55 ------------------------ 3 files changed, 63 insertions(+), 56 deletions(-) create mode 100644 dev-python/keyring/keyring-23.13.1-r1.ebuild delete mode 100644 dev-python/keyring/keyring-23.13.1.ebuild (limited to 'dev-python/keyring') diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest index ef6dd3271694..5d462d7721a4 100644 --- a/dev-python/keyring/Manifest +++ b/dev-python/keyring/Manifest @@ -1,3 +1,3 @@ DIST keyring-23.13.1.gh.tar.gz 49199 BLAKE2B 46ac7cb3237c7e0a061e9c4c30dba02d9a9c92d377f3db1b79b1c9bc4c5b8b866ffbda8354bbe5848a9db4c6834aec1c0b36f75d5c540ccc29ab71bd6adf30f4 SHA512 b0fc17157536178bba3a8f27f152a1cba497bc9ba2fc73d29ac9d8e61a2be51bdb0dea100eef9ab59979a9b0f8c8d15ca222e5fdc2c7d06d202955b18f21bf24 -EBUILD keyring-23.13.1.ebuild 1320 BLAKE2B 206f054b133b16540150d4520777eaed40bd7067fcf05fca5b0a14814b72eba4387f6bbb8459a4ed6309358c2bd7b525ce8e107be2cfd87de3174c2d714b1fb9 SHA512 a589d5e1d874887e2e209f6c77d376a7393a324d93b4e2333dd5094a1ae0100a6b26ba9282c59dad09223adf98eb0f02dedf034df31d9bc13224c64ccaa79d18 +EBUILD keyring-23.13.1-r1.ebuild 1488 BLAKE2B 356c30c91ac2d82810f1a97c1d80cebec7efc8d4b32e8df21ae9fd017eac0a13f8dd1e2fa394ea5bba359ec16eb54b006122ed2cf4f437bb045b21b1d758c3bd SHA512 b7d7a75d3033e3d65e14560f032b1f747b0351bd749a421dd5b2807b023088413e3b4f97c10d403d3a87bf7ac4cc1cfb4ce4505cbc143eba3167141d6054f2f3 MISC metadata.xml 611 BLAKE2B 7f938075d992467e01da200f0c859e9bc6a6128296151b3529b2168b68364605bd7dbadf69f7820d459d5db6950908e0b0acb09a636f1fc45862093df6d08334 SHA512 a0ad1729c53b18fedf227053648b04541f5adcf56bfaa73218e214f8c2409ebe2574a5917442c5218084b38da34691b6566f2c65390ef6487985a123f62f9efb diff --git a/dev-python/keyring/keyring-23.13.1-r1.ebuild b/dev-python/keyring/keyring-23.13.1-r1.ebuild new file mode 100644 index 000000000000..fcef2b34ff55 --- /dev/null +++ b/dev-python/keyring/keyring-23.13.1-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Provides access to the system keyring service" +HOMEPAGE=" + https://github.com/jaraco/keyring/ + https://pypi.org/project/keyring/ +" +SRC_URI=" + https://github.com/jaraco/keyring/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +SLOT="0" +LICENSE="PSF-2" +KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" + +RDEPEND=" + >=dev-python/secretstorage-3.2[${PYTHON_USEDEP}] + dev-python/jaraco-classes[${PYTHON_USEDEP}] + >=dev-python/jeepney-0.4.2[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/importlib_metadata-4.11.4[${PYTHON_USEDEP}] + ' 3.8 3.9 3.10 3.11) + $(python_gen_cond_dep ' + dev-python/importlib_resources + ' 3.8) +" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +EPYTEST_DESELECT=( + # this test fails if importlib-metadata returns more than one + # entry, i.e. when keyring is installed already + tests/test_packaging.py::test_entry_point +) + +EPYTEST_IGNORE=( + # apparently does not unlock the keyring properly + tests/backends/test_libsecret.py + # hangs + tests/backends/test_kwallet.py +) + +python_compile() { + distutils-r1_python_compile + # https://github.com/jaraco/keyring/issues/621 + python_moduleinto keyring + python_domodule keyring/{py.typed,*.zsh} +} diff --git a/dev-python/keyring/keyring-23.13.1.ebuild b/dev-python/keyring/keyring-23.13.1.ebuild deleted file mode 100644 index 91658714537e..000000000000 --- a/dev-python/keyring/keyring-23.13.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Provides access to the system keyring service" -HOMEPAGE=" - https://github.com/jaraco/keyring/ - https://pypi.org/project/keyring/ -" -SRC_URI=" - https://github.com/jaraco/keyring/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -SLOT="0" -LICENSE="PSF-2" -KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" - -RDEPEND=" - >=dev-python/secretstorage-3.2[${PYTHON_USEDEP}] - dev-python/jaraco-classes[${PYTHON_USEDEP}] - >=dev-python/jeepney-0.4.2[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/importlib_metadata-4.11.4[${PYTHON_USEDEP}] - ' 3.8 3.9 3.10 3.11) - $(python_gen_cond_dep ' - dev-python/importlib_resources - ' 3.8) -" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} - -EPYTEST_DESELECT=( - # this test fails if importlib-metadata returns more than one - # entry, i.e. when keyring is installed already - tests/test_packaging.py::test_entry_point -) - -EPYTEST_IGNORE=( - # apparently does not unlock the keyring properly - tests/backends/test_libsecret.py - # hangs - tests/backends/test_kwallet.py -) -- cgit v1.2.3