diff options
author | 2023-02-27 05:57:52 +0100 | |
---|---|---|
committer | 2023-02-27 06:38:11 +0100 | |
commit | bb99a6f35f5295717b13bc78af017876a16d6a15 (patch) | |
tree | a4fa99f79666a19bdc225c33ffd8eaffe11917a2 /dev-python/wrapt/wrapt-1.15.0.ebuild | |
parent | dev-python/pypdf: Bump to 3.5.0 (diff) | |
download | gentoo-bb99a6f35f5295717b13bc78af017876a16d6a15.tar.gz gentoo-bb99a6f35f5295717b13bc78af017876a16d6a15.tar.bz2 gentoo-bb99a6f35f5295717b13bc78af017876a16d6a15.zip |
dev-python/wrapt: Bump to 1.15.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/wrapt/wrapt-1.15.0.ebuild')
-rw-r--r-- | dev-python/wrapt/wrapt-1.15.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/wrapt/wrapt-1.15.0.ebuild b/dev-python/wrapt/wrapt-1.15.0.ebuild new file mode 100644 index 000000000000..1b7cfe7b88b0 --- /dev/null +++ b/dev-python/wrapt/wrapt-1.15.0.ebuild @@ -0,0 +1,36 @@ +# 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="Module for decorators, wrappers and monkey patching" +HOMEPAGE=" + https://github.com/GrahamDumpleton/wrapt/ + https://pypi.org/project/wrapt/ +" +SRC_URI=" + https://github.com/GrahamDumpleton/wrapt/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" + +distutils_enable_tests pytest +distutils_enable_sphinx docs dev-python/sphinx-rtd-theme + +python_compile() { + local -x WRAPT_INSTALL_EXTENSIONS=true + distutils-r1_python_compile +} + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +} |