add neurio-0.3.1

This commit is contained in:
Andreas Billmeier 2019-11-23 16:06:57 +01:00
parent 494c3bb8dd
commit b92379de0e
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 neurio-0.3.1
* add pynetio-0.1.9.1
* bump eternalegypt-0.0.10
* add pynetgear-0.6.1

View File

@ -0,0 +1,3 @@
DIST neurio-0.3.1.tar.gz 4387 BLAKE2B 31caa2c19e1bf8cb90372b03055839a482dd8a027976a3c264eafe9150ca825022701b7c25c11cf2145970d51cdcd9c967a8594765f1a2a85d75245be8cbbdb4 SHA512 48aa1eca88b0256f22213b00e561c8ae336ba21db816dea6a1db4b8e4c1d3df0a396a095678fdd63821fa18a0c40028c2e3ac1e6133fc44e60d89734dcf6965b
EBUILD neurio-0.3.1.ebuild 734 BLAKE2B 23d4dcb3b8d2f2f4c59dac7b0fe8aa672d18712420d7a9368991dfd742e6f248879c7b52b5827aec90226ee329ef03447906015c959b1c52947ad20f9bba296f SHA512 94038ffe47c95a7f1894dad6ca394436fb0de1db6913b566549f2e3f32ab03b7a71e1fd5668876cee52eb533915dbf82ea4936a857350c237e60daf859b08a95
MISC metadata.xml 462 BLAKE2B ee97a8475084850e0db2e7d2f393c8de2e7ced16321572e228afad2f46ab6dca2688ab418dee9f4feebfec8d249659e69386a101cc6f36a91f150c79290b1397 SHA512 988138e5618d3a40b9d091a419009e6d8a0e1b8e29ee9a5b342b0142070c05692ac52dea5fd0a90bf6ee77bf3f42c614291514bd27c34d9b0d41266fd333d666

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">neurio</remote-id>
<maintainer status="unknown">
<email>jordan.husney@gmail.com</email>
<name>Jordan Husney</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="Neurio energy sensor and appliance automation API library"
HOMEPAGE="https://github.com/jordanh/neurio-python https://pypi.org/project/neurio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${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
}