From be3f02477e20c3c36f7b8040639d412042b019cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 18 Jan 2026 04:04:38 +0100 Subject: [PATCH] dev-python/async-lru: Bump to 2.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/async-lru/Manifest | 1 + dev-python/async-lru/async-lru-2.1.0.ebuild | 30 +++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 dev-python/async-lru/async-lru-2.1.0.ebuild diff --git a/dev-python/async-lru/Manifest b/dev-python/async-lru/Manifest index 37bdcffc371c2..675a272d469ee 100644 --- a/dev-python/async-lru/Manifest +++ b/dev-python/async-lru/Manifest @@ -1 +1,2 @@ DIST async-lru-2.0.5.gh.tar.gz 13537 BLAKE2B 22adf45b8014d2a2ebd0983805b2478f75d3e22ff5498e79b76f45bee868aae159afc57b119051ad24661a300ade943dfbe2f1ad0e2db3949a091755e28e2131 SHA512 25d4684c0101c51b92a1173984bc6da3f4baaa2f5ac7bd6fb6ede64dc1ede5635f0f1ff3837e17e38c37f3d8a5e3268ffe2e92b6e9cf51d0f9470887dffe93c4 +DIST async-lru-2.1.0.gh.tar.gz 17092 BLAKE2B 17f1123eaef2f6eee2ac67f7a8e38d4521cea09a9e01c0f815cfebeda242649ded3d75137278a9fbcae236c7f902cf48ac733f0ee240734cf6b4a9f1ee44302b SHA512 92b740c7c3c179ed86b0457c962aa75a32b587688efb264f43c90341f390996ca2c99243a1079c961f5f7867e216f33b5a35a5fb20674b89db8c971df43e22a0 diff --git a/dev-python/async-lru/async-lru-2.1.0.ebuild b/dev-python/async-lru/async-lru-2.1.0.ebuild new file mode 100644 index 0000000000000..da95647a0d076 --- /dev/null +++ b/dev-python/async-lru/async-lru-2.1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..14} pypy3_11 ) + +inherit distutils-r1 + +DESCRIPTION="Simple lru_cache for asyncio" +HOMEPAGE=" + https://github.com/aio-libs/async-lru/ + https://pypi.org/project/async-lru/ +" +SRC_URI=" + https://github.com/aio-libs/async-lru/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + +EPYTEST_PLUGINS=( pytest-asyncio ) +distutils_enable_tests pytest + +python_test() { + epytest -o addopts= +}