add pynetio-0.1.9.1

This commit is contained in:
Andreas Billmeier 2019-11-23 16:05:06 +01:00
parent 45c04b8f1e
commit 494c3bb8dd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pynetio-0.1.9.1
* bump eternalegypt-0.0.10
* add pynetgear-0.6.1
* add netdata-0.1.2

View File

@ -0,0 +1,3 @@
DIST pynetio-0.1.9.1.tar.gz 2109 BLAKE2B 116f9a8e884a7f8362b7675e23d746f81c2eec962871ec1a29707e7515d3cd667fe5ea7af9a0605a3db3e02ee9066cdd298c5084d6dd0ce864e94cc2e7b83f1b SHA512 083a232b6617d5e62155b4de23e3518fd2d739e9da817d42f02402cc3493ce0c2ed266ef04e5f36bf499325515f5b07c1fc57b721e134bb1ee487c72fc857096
EBUILD pynetio-0.1.9.1.ebuild 671 BLAKE2B 5261a11306812d35e4d1d01c68d459941d7c21a630b77489c3d8744981bd2c21053bf5e5f52c43c5f64b76057aa39ac5c76e62130d98c8bc565df4c34cf04655 SHA512 78e55d49c28d431cb5ef43392c3c1293ce13ad6e042aaa51c59a81ab432f3c3f550e5591a64eacbf7caa889302095c1f6dc262c842ac929bfd7a3843550dbcd5
MISC metadata.xml 476 BLAKE2B 0126251809e61f97cd2c53166bc381bdd55bf6850f7e9d25bdb6b405fa2893673d9679e1c3939ac79731a4d3cfd3cd038147f20165973742a5e10d4ac55db425 SHA512 17655ac2c1c74b15a20b8345bacd2d98cf6c665fee5ca4caf8eb4ea20bfae5eef4be005693de2eef7033eecc098a4761380630fd1ad4e6dbf9a4ba60fa8c908c

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pynetio</remote-id>
<maintainer status="unknown">
<email>joseph.piron@gmail.com</email>
<name>Joseph Piron (Joseph Piron)</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Binding library for Koukaam netio devices"
HOMEPAGE="https://github.com/eagleamon/pynetio https://pypi.org/project/pynetio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}