dev-python/uncalled-for: new package, add 0.2.0

Signed-off-by: Florian Albrechtskirchinger <falbrechtskirchinger@gmail.com>
This commit is contained in:
Florian Albrechtskirchinger
2026-03-26 02:22:52 +01:00
parent 8e5c094b13
commit 53aae17c1c
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST uncalled_for-0.2.0.tar.gz 49488 BLAKE2B b87b267f1a95a7e15906069227a96d809e90aca8708a4090684ccbbbb71e14dabd4953813333c1d1e67a44104ad993946a1d06d483708d29ddfaa18fa7b492f4 SHA512 efafa7e6877a4b2453cc90c7100fe5931ac873035421cb682062aea8feadab41f1313f962f86f0a92356a311a9345d62b2dbb68544f90ec58a22e306cb81c1d4
DIST uncalled_for-0.2.0.tar.gz.provenance 9585 BLAKE2B 6a2e848050500387496f5e7bbd98a127accea20a66c51d2247c3e8230e1f57acdd5164b16ef1230d8112038ab47aeb1e53e8ef80ce798f749efae1138651ce98 SHA512 b2319a4360fc8c2ac7debfa4c7fce7dfad5415c76df79e6dbb2cfa43d2a2ff95f0d94375506c8dd275fea09206f53e58493983e39f13303feee59799ee3c8e64

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>falbrechtskirchinger@gmail.com</email>
<name>Florian Albrechtskirchinger</name>
</maintainer>
<upstream>
<remote-id type="pypi">uncalled-for</remote-id>
<remote-id type="github">chrisguidry/uncalled-for</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,32 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYPI_VERIFY_REPO=https://github.com/chrisguidry/uncalled-for
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Async dependency injection for Python functions"
HOMEPAGE="
https://github.com/chrisguidry/uncalled-for
https://pypi.org/project/uncalled-for/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
BDEPEND="
dev-python/hatch-vcs[${PYTHON_USEDEP}]
"
EPYTEST_PLUGINS=( pytest-{asyncio,timeout} )
distutils_enable_tests pytest
src_prepare() {
sed -i -e '/--cov/d' pyproject.toml || die
distutils-r1_src_prepare
}