add pydukeenergy-0.0.6

This commit is contained in:
Andreas Billmeier 2019-11-22 18:18:09 +01:00
parent 36b429e07b
commit 693c5d6cd8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 46 additions and 0 deletions

View File

@ -59,6 +59,7 @@
* add pydoods-1.0.2
* add dovado-0.4.1
* dsmr-parser-0.14 and PyCRC-1.21 added
* add pydukeenergy-0.0.6
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST pydukeenergy-0.0.6.tar.gz 3446 BLAKE2B 09a36dc46d69966aa57497f9a46dc86c17ef3e46f8f530c8267251878457b2247c409b2c420b4decad7fc66af118458955491979fa90ece7637fe9ff6327faaf SHA512 b012e26ebae5fdeaaeeeab406cbee00d7697bc1575398fc7705953e1c7cb549da5ad7b0afacad8efbbdb54ea47fa99bc8802288bb300bf983408097a51f3f5f7
EBUILD pydukeenergy-0.0.6.ebuild 683 BLAKE2B 153aa5cb46360c63885a83a95154c550518c22f4f99d69e823eae5d7cbe1b98776f8f1ca3342a309ffd9e85ad05025b31647436f9335e420fa4040f8dc88bfaa SHA512 a65636d87ec520c57d0d5fd425a65a1463d674861c4a67f33713cbefc9bd59abd2e9ce8381e287cdbde462d072cbeb80afd6920096feb3fb777977a0a20cdc4c
MISC metadata.xml 338 BLAKE2B a1f883bc19eaa6b41a07821e9033265052c545c0d4fb2cdc8171e13c3b3da1a491aa73b22598a832a5c04239d26110302e12fc891e83fd9efc906ef6c077a22d SHA512 ea7016b255e3700cce8f76d4079a7fc8000e1b8ce244be8bec63ec71fd5bc39f017283da5268c4f5209824fc9d8e2bf2e8a68bb09a7759bdd89837196c8891cf

View File

@ -0,0 +1,12 @@
<?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">pydukeenergy</remote-id>
</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="Interface to the unofficial Duke Energy API"
HOMEPAGE="http://github.com/w1ll1am23/pyduke-energy https://pypi.org/project/pydukeenergy/"
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
}