commit: 986e7caf2a0e515529afa4740167291dd0a04eac Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri May 13 05:49:29 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri May 13 06:15:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=986e7caf
dev-python/deprecated: Use PEP517 build Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/deprecated/deprecated-1.2.13-r1.ebuild | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-python/deprecated/deprecated-1.2.13-r1.ebuild b/dev-python/deprecated/deprecated-1.2.13-r1.ebuild new file mode 100644 index 000000000000..760bc6cccf9f --- /dev/null +++ b/dev-python/deprecated/deprecated-1.2.13-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python @deprecated decorator to deprecate old API" +HOMEPAGE=" + https://github.com/tantale/deprecated/ + https://pypi.org/project/deprecated/ +" +SRC_URI=" + https://github.com/tantale/deprecated/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + dev-python/wrapt[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=() + + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( + tests/test_deprecated.py::test_respect_global_filter + tests/test_deprecated_class.py::test_class_respect_global_filter + ) + + epytest +}