add ovoenergy-1.1.6

This commit is contained in:
Andreas Billmeier 2020-08-11 18:08:01 +02:00 committed by Andreas Billmeier
parent 7fb4d1cb23
commit 277d969793
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2020-08-11
* bump blinkpy-0.16.3
* bump wiffi-1.0.1
* add ovoenergy-1.1.6
2020-08-10
* bump pyskyqhub-0.1.1

View File

@ -0,0 +1,3 @@
DIST ovoenergy-1.1.6.tar.gz 3899 BLAKE2B 0dc4975215cbbf0a4a6ce7e03562f19098488e918fc1adaa48acff1d28208c4e1e475e22dcaf1b23e848c0cab2b5ed61dad6ccf03ad65a476182daae24879423 SHA512 9105e33fd638f0aded142cfd5f87ab506ef10c1c1a4d433359b56d243ecc93931722f720ba88a8855c1c4b81b754f193fa4a5cdc9b09555edbc5e8565f2bb110
EBUILD ovoenergy-1.1.6.ebuild 758 BLAKE2B 8dd30442fd9fa3e8fad94806e093c4f155be694d1950efe19883882ba96b0a86222aa6b188662f688aa1171bbb7d5fdf4afee7014b971fd3efe9fcbf9c4913d0 SHA512 fe8d997761e37954ea18c3cf87c8832a9f62b3180509c4e7e9401031186e7cd964c53ce42f3be4b83d14bdbb77e66e0a9cb33f6e9da421e16cdc9d1c7e61cfb9
MISC metadata.xml 444 BLAKE2B 15a7c123e3a2962a84e9a378688f50a29e3ad7a04e6ef9b0d703c267d79d9f549a63fe0c057919637a1d28a8ea3726ed4d0d4a4d6b5e7052dd252a6298607996 SHA512 328d8e637da5dd99682e9cabec777ff4b0261903b15f4b7e2ab778965ee13a1d934581cf2fb9255abeb32dba83635777fac3f76de561ed0be2c4013d7f2f3aa8

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">ovoenergy</remote-id>
<maintainer status="unknown">
<email>contact@timmo.xyz</email>
<name>Timmo</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..8} )
inherit distutils-r1
DESCRIPTION="Get energy data from OVO's API"
HOMEPAGE="https://github.com/timmo001/ovoenergy https://pypi.org/project/ovoenergy/"
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/aiohttp-3.6.2[${PYTHON_USEDEP}]
~dev-python/click==7.1.2[${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
}