add vilfo-api-client-0.3.2

This commit is contained in:
Andreas Billmeier 2020-02-13 19:33:41 +01:00
parent 6791f6019e
commit 0ce2bf2e18
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* update konnected-1.1.0
* bump pyipma-2.0.3
* update py-august-0.11.0
* add vilfo-api-client-0.3.2
2020-02-11
* clean up PYTHON_COMPAT & KEYWORDS Letters: T-Z

View File

@ -0,0 +1,3 @@
DIST vilfo-api-client-0.3.2.tar.gz 9538 BLAKE2B 90ebef094eb54c18adda9cc7a0496b55590eada0d084b8ca0e6980836b4eb7738b02fda0b9c91779c5d478498b76e6338e3df4730dcc201810c95eb059c22bd5 SHA512 7f5dfebcf0e3a1b44c4e58e6cbedc998183225b04cfe109374370ff788d190c50949349ff931dd57c12bf78513485cb9f1af2bd64f1be5b0a9ab23370f832e30
EBUILD vilfo-api-client-0.3.2.ebuild 782 BLAKE2B a418dfbc994b4d94d45633a7a045e31599743eed91125937abe5f1979f4095d3bf70499e9c5971618044ee3b4ff3483ac99e98f77f9836b732b0e6ce31c4fcbc SHA512 30854a87b89ee900f7d43f4b9d3b7de571e29f250e5a2793446c8f1eb9758d95755b7c8b6ac4f33859a3b655a630ea375eb5bd710fbdbe8c305f4140cdf26016
MISC metadata.xml 466 BLAKE2B 21ee727a99b9398c16bb2e4dbe35aff9fc6c77030b1c3841fa9de104bce16656ef88498391341a6c8259c0de6ce2d54ee8ab5b1b706959aab55f7aafe568ed01 SHA512 cd35af3fc7dc06603f7d2d6c3aa248ba8cd02a7449127afdf0a3202130aa68ae9984a6e5a9ec2f593c956bc0c29a344b818c693a68dd71ff31706813e7d989f2

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">vilfo-api-client</remote-id>
<maintainer status="unknown">
<email>winblad@protonmail.com</email>
<name>Emanuel Winblad</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Simple wrapper client for the Vilfo router API"
HOMEPAGE="https://github.com/mannew/vilfo-api-client-python https://pypi.org/project/vilfo-api-client/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/get-mac[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}