add pyoctoprintapi-0.1.6

This commit is contained in:
Andreas Billmeier 2021-12-19 19:58:28 +01:00 committed by Andreas Billmeier
parent 24322d7716
commit a12850434e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyoctoprintapi-0.1.6.tar.gz 5833 BLAKE2B e3eeacdb166c200c1ab41cf9ecf906c5116096fef70bb9235d8897adae5880c9bb512c5bce119201a6214b0ed4c563bb687196b6e87da5425044403eedbb72a6 SHA512 510a82d72a5ae4ff9dc2b11e7a1a11c7e5f9fb36a3153cb886760f8ce1da2e768edfa3c4019b1208ba5183dfc55d98b9b34268bb299ab832a8d02f62099a06f3
EBUILD pyoctoprintapi-0.1.6.ebuild 892 BLAKE2B bfac3f44bdd71489cc018c18d24d21eaf7acddae081599733cff4f1861a3a9afec0cb41d3f383173aaf77c52b933d80e34dce5d271f3cac33bedddfb676c46f2 SHA512 669781963b2583bc180ba1a1aeaa299f14dc198086fcc4c2a69b91afab9af3432ebf45e1ca654e3b9c21eb6698dccf71e665dc385e8a84927fd069354c1f8bf0
MISC metadata.xml 474 BLAKE2B f2d1d2dfdc75a2ddd2dbdd5a88bd644c9876ba719dbfd1a98ece45524f35110d18dd4dd97d5f306a7e27a8c11077a0b8fecce19b2a7e3e614e03a0b8748038da SHA512 18760daf5cffd3ed677163f072f82644c300311520a59b54dc9a689486f9cf54ad0969b6a6849253a8859f6b8cda21d8e79397c4721e7a43834b995536483e56

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">pyoctoprintapi</remote-id>
<maintainer status="unknown">
<email>rfleming71@users.noreply.github.com</email>
<name>Ryan Fleming</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# 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="An asynchronous Python library for communicating with the OctoPrint API"
HOMEPAGE="https://github.com/rfleming71/pyoctoprintapi https://pypi.org/project/pyoctoprintapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS=""
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/asynctest[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}