add oru-0.1.10

This commit is contained in:
Andreas Billmeier 2019-11-23 21:26:20 +01:00
parent 2ab34a51bf
commit 905bd52d04
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 oru-0.1.10
* add openhomedevice-0.6.3
* add openevsewifi-0.4
* add onvif-zeep-async-0.2.0

3
dev-python/oru/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST oru-0.1.10.tar.gz 2834 BLAKE2B 7db5538486fafa5a2622ef3eb38523f5ecc05db1d8079f42549a188831abacd0e79a561ae2e33ce6813f6bdaa4767fc03203c1c9a719b29854f45000b7955352 SHA512 cbf7654e2116cda14ee7eef1aa3dce30d0edd15ba17c5b438d4a9d1cd7aa7a499ff823147011c696fba90f1da17957147943f96712f8016588b196e60a6ebd39
EBUILD oru-0.1.10.ebuild 730 BLAKE2B bf2fe6d151f4a675684a35878c2f86cc8c2a66ba4012cb25d5f46830372a0d46977dd9ef3ae027a509e596e22fa0b50ab9a682eab93660a293e8b361971c062f SHA512 b5f08848168ce2c4903c137cf9c3eff3b4db82f6ef289da218ac552efc75008b296f35ff88ea82c12cc7f7e10430afdfc610688a2dd8dab7c9316a5425bc2420
MISC metadata.xml 458 BLAKE2B dd56ac29e7a3d60c52a60ff1a311aff38892df4618220481ee4660095170a415ce16accb2977a1a84044224f458994e12c28b83f520a571522a84d179de24ec0 SHA512 24a8e37c0d512cb3d222c04f95e5ca45f48efd8bbecc70d7f6bd06137180f965931e38497fcfb34c03a5e121436ba7b2e27c1d8ead777be07532c3e9e1bd7fd1

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">oru</remote-id>
<maintainer status="unknown">
<email>bogdanvlaicu@yahoo.com</email>
<name>Bogdan Vlaicu</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="Python client for Orange and Rockland Utility smart energy meters"
HOMEPAGE="https://github.com/bvlaicu/oru/ https://pypi.org/project/oru/"
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
}