dev-python/pyasynchat: new package, add 1.0.4

Bug: https://bugs.gentoo.org/909998
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2024-03-14 04:18:49 +00:00
parent d123620a30
commit d8219a0dc4
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pyasynchat-1.0.4.tar.gz 9747 BLAKE2B e38edd9e35ce31f9015b934a5d4edb96053ff239978359f13e5b74ac9b8160029556207f79a199d82085882e80d88fc8033f9085f986b48dfaa50de780576197 SHA512 d36eb16770637a311d56fe22229de5a3cdfa699ae64fbafcdd5ce9acd43270b90813fe56db14528083ee1803a43d958d0b3b6616e0bbf907a4dd4a563981a278

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">pyasynchat</remote-id>
<remote-id type="github">simonrob/pyasynchat</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_12 )
inherit distutils-r1 pypi
DESCRIPTION="Make asynchat available for Python 3.12 onwards"
HOMEPAGE="
https://github.com/simonrob/pyasynchat
https://pypi.org/project/pyasynchat/
"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=">=dev-python/pyasyncore-1.0.2[${PYTHON_USEDEP}]"
python_test() {
# Can't use d_e_t unittest (bug #926964)
eunittest tests
}