add pyefergy-0.1.5, iso4217-1.6.20180829

This commit is contained in:
2021-12-04 20:38:45 +01:00
committed by Andreas Billmeier
parent dacdccd874
commit 8efa35cf5d
6 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST pyefergy-0.1.5.tar.gz 6967 BLAKE2B 5d1338634121f382fafbe10da86d6b93e6506e27ecfc2858c2f9c8f761746951d213bc96ec6353907ca0d732d6303275fc65a825c27e6a3a82818d4d8a7d2ead SHA512 d02e238ca6f9d99fdab26f2a71098ffe80dd70d071db89df3b4a2599b9161d9bf3531ff285342df9dec07b1b2236d79a5a6b928f09acdc5dba962949e2f5da56
EBUILD pyefergy-0.1.5.ebuild 821 BLAKE2B 94e362e60701a600a1bce74f84522b2ebee348ca7051f2601f353dc7d5900ae48dcb2cb9da7d5619d0ea00f10159255c4afb92ac0112dd77953f32ce71f21543 SHA512 62f65bafb9c65c427ad4bd1f4e4382b4f2df3e63cd466b0629124b5c0c47a981d162877a07bb3118baa1aedcb26140ee0d8b7157171670708223e4de9ab519e6
MISC metadata.xml 454 BLAKE2B b2d40364b901f52e1cbc1caf90ad5f5a3e2313f63f7522faac92f3a76cb4f9360afba03524b741f523870dcda020cfd92836b1e8e29a9056866e4a71350a2517 SHA512 48982361214e616c613f65e468939a3b77977d457124a675e931cf39dbd92e1ff1c1c650a2a94b05c15ca2055b4525aa86db84886a510f9d9397728d26d73afe

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">pyefergy</remote-id>
<maintainer status="unknown">
<email>tkdrob4390@yahoo.com</email>
<name>Robert Hillis</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="An API library for Efergy energy meters."
HOMEPAGE="https://github.com/tkdrob/pyefergy https://pypi.org/project/pyefergy/"
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"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.4.4[${PYTHON_USEDEP}]
>=dev-python/iso4217-1.2.20150619[${PYTHON_USEDEP}]
dev-python/pytz[${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
}