add srpenergy-1.3.2

This commit is contained in:
Andreas Billmeier 2020-11-21 08:58:29 +01:00 committed by Andreas Billmeier
parent 74aa28e789
commit 9f192e1e7f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* bump pymyq-2.0.10
* update python-awair-0.2.1
* bump zigpy-zigate-0.7.3
* add srpenergy-1.3.2
2020-11-19 homeassistant-0.118.1
* bump home-assistant-frontend-20201111.2

View File

@ -0,0 +1,3 @@
DIST srpenergy-1.3.2.tar.gz 9362 BLAKE2B 08dea05d894d61c1cfec1367c02eecf095c7419ea1c46e2c008ff5251fea25a22ec8f9c51d6d83b4e709262e25075743933a7ba78e5116c54cb3ca1ac5d6f764 SHA512 71374bb7636513c04cab3ca8cdd0a1d3d1f5380b07c5648f490128c6682d544775b541d9d16fa4fa2549f94fe4f30b49370dc54fb80b150eafc5be985d349a1c
EBUILD srpenergy-1.3.2.ebuild 823 BLAKE2B 49de5ec189742cfaa1c8727bfa4b8d87b9720d9ce9d4ab2f8c367751c37524507a631f3be9036643c87eff77407b636e337814c37d9daa2fff48519e540b312d SHA512 5cfbe1da5e1826005884c2cfa53fb30bbd766bf4b088293d9d3dc2eebd76a4a8f4259cdeac753db7dd32e43783bae82f2a240f75d062ed7a2334c7a1fc4bdd6a
MISC metadata.xml 456 BLAKE2B bada16ea09c3415f7b68120de631983c5cab863b2dee2c638132723bbe7f56a06b3149cdf588025adcfdffdc006c583eedb72a0ed68fb6e666d001bc469171c5 SHA512 e7cd396bb396765a5868a55f9666cc3aaf288e1d6d9b026e543f52f7e77bb4f3c5424ca62332d3dad70294f8b2c26fae93b0a16222575d53a8687857600421f9

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">srpenergy</remote-id>
<maintainer status="unknown">
<email>bklamoreaux@gmail.com</email>
<name>Lamoreaux Lab</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="An unofficial Python module for interacting with Srp Energy data."
HOMEPAGE="https://github.com/lamoreauxlab/srpenergy-api-client-python https://pypi.org/project/srpenergy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]"
BDEPEND="
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
}