From 4b42dd254b90084e25d131ef00a1c50c851f2423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 10 Jun 2026 03:48:38 +0200 Subject: [PATCH] dev-python/tqdm: Bump to 4.68.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/tqdm/Manifest | 2 ++ dev-python/tqdm/tqdm-4.68.2.ebuild | 43 ++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 dev-python/tqdm/tqdm-4.68.2.ebuild diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest index a97e76a0842e8..9a1864bf55110 100644 --- a/dev-python/tqdm/Manifest +++ b/dev-python/tqdm/Manifest @@ -2,3 +2,5 @@ DIST tqdm-4.67.3.tar.gz 169598 BLAKE2B c1af5e116a5498d3aef5c6d04b9875b73715769f4 DIST tqdm-4.67.3.tar.gz.provenance 9138 BLAKE2B 6da7cae665305c9eb1f0aef4ed98ec4e3d722939e4dadca6aba780940b7c99f5b940077315b7276fdda6d759267004435be1e8b52fefc2c6fe1e9a32bb765ea2 SHA512 cf9a2fe00223decb994bcaae6be4c98e109b05019456702c637117e2e9fe4cc1336869b494cea9cff0e3f8518e1fb8099795721728671c132bb5e603bd8fea92 DIST tqdm-4.68.1.tar.gz 171236 BLAKE2B da159f99cf504d8ada8f0d4dd5dbcec2a0fcedf56446f8f956a6e7ff9372dbf54b2c405cd9b5ee2e644201dee30c332961fe49e5b0ea3c238ace360767a2a4a6 SHA512 9411d0568524c1893ea0aa7125ab140158228de1b6f391917f94cafd96b82be09604f071cfd966fcd14243e9f22be69dbda60b40cb84a2204bf42a00c27142ea DIST tqdm-4.68.1.tar.gz.provenance 9189 BLAKE2B 6c7f6a3ad9b087ad520efd44cd6e386c2ae308b61c9998d16a91ff085aec613c63625f2ff8ce66dd60a08ac2249f1dd3a38d75798e4bc633443de26f53b6c386 SHA512 135fa4c6bd8e09d6512bc4c247d99e6e2848014d7ad759abf9a1b7a897e09985232c80d126848d848d2d145ef7311f9f5c1cc7a823d58a2fa7a7adbab4695bf8 +DIST tqdm-4.68.2.tar.gz 171923 BLAKE2B 7a3587662766743952627ad294cca083cac58d576346f242c3499c78e56f528d9c0d454af241a8366eb6b38fa04ecc267579db94abae474d8a7e3c6fbbdcf1be SHA512 a023be68c85d807f2a3dfc225b9db09add9cf71b4f2fb69abf184ee47526afbdeef2ff7a16e6f02d0640eae3d37bb070eefdac050e54263b61ee6d916c8269a3 +DIST tqdm-4.68.2.tar.gz.provenance 9146 BLAKE2B 315da20cff5c147ea9a42626f868121f89264fa0269892336883a5ad9aa0b545cf25fb9bc174656d5dee7196a394acde767e635b6296d29e0465703bff5fbfb5 SHA512 06f93344fe73eb5eee90d4094810540451baa7d7fcdf120ad77302e55b55d60bbefd8c5cc5ed6714b7a2aff7cb2c038278d1c14aaff911a3d56fbc17a12bf4b3 diff --git a/dev-python/tqdm/tqdm-4.68.2.ebuild b/dev-python/tqdm/tqdm-4.68.2.ebuild new file mode 100644 index 0000000000000..dafa972306d0b --- /dev/null +++ b/dev-python/tqdm/tqdm-4.68.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/tqdm/tqdm +PYTHON_COMPAT=( python3_{12..15} ) + +inherit bash-completion-r1 distutils-r1 pypi + +DESCRIPTION="Add a progress meter to your loops in a second" +HOMEPAGE=" + https://github.com/tqdm/tqdm/ + https://pypi.org/project/tqdm/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos" +IUSE="examples" + +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=( pytest-{asyncio,timeout} ) +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # Skip unpredictable performance tests + tests/tests_perf.py +) + +python_install_all() { + doman tqdm/tqdm.1 + newbashcomp tqdm/completion.sh tqdm + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all +}