dev-python/ubelt: Bump to 1.4.3

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-07-31 10:45:17 +02:00
parent 55271f20b3
commit fb6bab1ff5
2 changed files with 48 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ubelt-1.4.2.gh.tar.gz 406280 BLAKE2B 3265c74e74736ce5c46c74b0e6ac12a6f470b7bb2cc9d620dad497131a4265c8a37d1f5f1ad18242175a5c62f88f482c8bf891d2c53f0c2f689539e52b160cde SHA512 dec75a65976a21ab32336d11d23090173298f7c73ea87acaf4c3460a437de51ae5a4bb80fed5450e58f44b4f282e528aa2d1cff027ca4c1be86379df29faa697
DIST ubelt-1.4.3.gh.tar.gz 410182 BLAKE2B 2a555fc382b4b505aa408acc7b4368482398c33f855ad8b03574686f39fd56c32073e74c66463981c0fd39c03a7f0aaaa86fc8cf8e2d71610b112c02eecc9fb3 SHA512 135637edd315eaadc811e23833a4c432cf385bfb423b41ec41c7228969048502ba39a2572d62f6484ca1e718b45ccfe02463cfbf16717d842a2264e86382479a

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1
DESCRIPTION="A stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress"
HOMEPAGE="
https://github.com/Erotemic/ubelt/
https://pypi.org/project/ubelt/
"
SRC_URI="
https://github.com/Erotemic/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
BDEPEND="
test? (
>=dev-python/numpy-1.19.2[${PYTHON_USEDEP}]
>=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
>=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
>=dev-python/xxhash-1.0.1[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( xdoctest )
distutils_enable_tests pytest
EPYTEST_DESELECT=(
tests/test_editable_modules.py::test_import_of_editable_install
# relies on passwd home being equal to ${HOME}
ubelt/util_path.py::userhome:0
)
EPYTEST_IGNORE=(
# asserts for running on win32 in global scope
ubelt/_win32_jaraco.py
)