mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-python/wrapt: Bump to 2.2.0_rc11
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST wrapt-1.17.3.gh.tar.gz 140900 BLAKE2B 88c4cd718cd98a97c866c4f0b9f7e095347fe6fa5fed60c54e389329c89f9f07099c8fb79561cf5e12c19c44a4067d81e805c55b54a74429e6b75913dedd6b3f SHA512 1a1f7419f20faa461a9e23ad09cc98d381ef2c48b3b24ed1dfe98d42d16857a958252301e78dd41b7fa8ef37eea379f9244cace2b396b49718c44cbc701308a3
|
||||
DIST wrapt-2.1.2.tar.gz 81678 BLAKE2B f7fc45f31b8077d6d97c14c1f649437e0f1da7537769d369d427edede0ba1b84c8c07e6de9ded8088f29f2fb774272186d0f9b707e6b2bef650dc5f78444d852 SHA512 97f1af4cabfd7a4cfabfaf36d26d1afc577747f18946226fbb80256e13c55302b746005e01720e874d46d536826c83e9234544c98f8dd1ecd3c9a091113da808
|
||||
DIST wrapt-2.2.0rc10.tar.gz 123726 BLAKE2B 6997cb2d4a04ab371969fd81465a62430d9e3bfde8191d9cae299359fb41076ab16e6fd3f70adaa7fa660e32008d5db5f5d20fb03250e960d16f9e68d0445807 SHA512 143fee72a4321308fee90147fbb50ea114bf38f440e56b13352ed2e514511cb439f57a3e74db3a6b936a5156d8f267ed6fe57f72028380ca3beb41e6fa8bb9b3
|
||||
DIST wrapt-2.2.0rc11.tar.gz 125088 BLAKE2B 6965486ac76c852dcc66c9766a956fde9e0b4683a86755dbbd13faa20d037d6730fb3d1f8fca7c3b58f74fa540bfa212e7d336aa5d6eae7aa58859c648e3398a SHA512 73a6e2e787c79162e43b4f07e8a5ee3827e11141a6c00677662357ea5706de68e318ea2d3c1145901326cd9db9477a969ffcdcf6989621551ff189927ca530b6
|
||||
|
||||
39
dev-python/wrapt/wrapt-2.2.0_rc11.ebuild
Normal file
39
dev-python/wrapt/wrapt-2.2.0_rc11.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
MY_P=${P/_}
|
||||
DESCRIPTION="Module for decorators, wrappers and monkey patching"
|
||||
HOMEPAGE="
|
||||
https://github.com/GrahamDumpleton/wrapt/
|
||||
https://pypi.org/project/wrapt/
|
||||
"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
if [[ ${PV} != *_rc* ]]; then
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
|
||||
fi
|
||||
IUSE="+native-extensions"
|
||||
|
||||
EPYTEST_PLUGINS=()
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
distutils-r1_src_prepare
|
||||
|
||||
# skip mypy tests, they are fragile
|
||||
rm -r tests/mypy || die
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
local -x WRAPT_INSTALL_EXTENSIONS=$(usex native-extensions true false)
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
Reference in New Issue
Block a user