add pybalboa-0.13

This commit is contained in:
Andreas Billmeier 2021-12-04 19:34:51 +01:00 committed by Andreas Billmeier
parent a6d770b3e7
commit 34325572c5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pybalboa-0.13.tar.gz 12689 BLAKE2B 79be72ba31050382cdf2ecfc4b649aebf5e6f0c376150062e96355ded0358dc6c571a50a160ff419ae0224b98863e3a17c2514389bafa6f325ee79171fb0d541 SHA512 4793ec6d4071b8479f39b4a568987722d877352e978b5eecd4b13ecca3c151890245928975696699aa070b61e02d81e42a6cb6e2fafd696a530820669e118a47
EBUILD pybalboa-0.13.ebuild 711 BLAKE2B 0458cc51b4d4c5825e3b018654a442939826d1398c8d73427d13a20d917308f186e7a872ca9d45287244e77f6a3fc2bd47a4e1f6cc62a0509419d06b8d350bba SHA512 a0287be57ea9c243c93fc1c6d0bf0af42a28a809133213c07e1da3fb0e118733f1303bb80f81361a3e23f398e76ee8eddf3c139558c0328611388828fa7e2dfe
MISC metadata.xml 466 BLAKE2B c20f1cdfa5cde3eef59b349e821f3405cc5f9e6d149566c38efe624f8274bc0f7294d837705e0424ec197038b483cde33c853f7a542b4a07fcadb9b56f9921af SHA512 2a926cfe402a2ebc56cbce7be2468ba77bc6cce67398806b7a237848aefcb7f1314d0b1bca125e26ce9f532dc13b1ace5fab928fa31fe6a4efc5502f74cd6e61

View File

@ -0,0 +1,15 @@
<?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">pybalboa</remote-id>
<maintainer status="unknown">
<email>root@garbled.net</email>
<name>Tim Rightnour, Nathan Spencer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Module to communicate with a Balboa spa wifi adapter"
HOMEPAGE="https://github.com/garbled1/pybalboa https://pypi.org/project/pybalboa/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}