dev-python/pyserial-asyncio-fast: new package, add 0.11

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-11 19:03:33 +02:00 committed by Andreas Billmeier
parent 31b7833d8d
commit f7f9436853
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyserial-asyncio-fast-0.11.tar.gz 35473 BLAKE2B 6863531316749124b4d11b104607b7073cd31bfcaf33bfebd9a5d5cab1c06e47b614031aea5f20d7631602153856d805e85a572201808f6d1e8a257d111f1bc8 SHA512 caaad361f28de360b880cc6e5dadd6a555c91170ee630a43eb52b1f7094e3278980710ed49315c9849dfa2c31c145a3982f89a0f5778b556c4cfb8f24e810587
EBUILD pyserial-asyncio-fast-0.11.ebuild 772 BLAKE2B 5ab071f0fd1dca3ef79faa39570e0bd536ea00bd943a8152dd6b1b22e9c981a478938571db64b134947d591ac703f9850c101bc9df2dde98204ab5025f3ed1b4 SHA512 1264508b6928c70851c0ebfe0d33e464531cab635c1edb9285e51980979a93bc6458631fb058086f8978a78b621add7afbe80c967d21800951aa44ef421686c8
MISC metadata.xml 423 BLAKE2B 0eb7c91627c7fd6a7494fa4a8058cfab4de8409e830197dd4c6302f6811d5197445208f0d54475c1268cf5b232e9114cb60410fbc9e182de533c7b7460fe6eca SHA512 0b39c0273744eedc2e78963be6933011fe6b8ba150b854cccfff83893833576ac3bff143297847e302be63b1094c20ffd12e79e10ddec4d4c65ef7d5ef1b8400

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyserial-asyncio-fast</remote-id>
<remote-id type="github">home-assistant-libs/pyserial-asyncio-fast</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYPI_NO_NORMALIZE=1
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python Serial Port Extension - Asynchronous I/O support"
HOMEPAGE="https://github.com/home-assistant-libs/pyserial-asyncio-fast https://pypi.org/project/pyserial-asyncio-fast/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/pyserial-3.1.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest