add openevsewifi-0.4

This commit is contained in:
Andreas Billmeier 2019-11-23 21:21:36 +01:00
parent 5503c31be2
commit 1330700cae
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 openevsewifi-0.4
* add onvif-zeep-async-0.2.0
* add oemthermostat-1.1
* add oasatelematics-0.3

View File

@ -0,0 +1,3 @@
DIST openevsewifi-0.4.tar.gz 2683 BLAKE2B 5abcff574abf2f243d48b254cf546dd4846d684ba9f919869c82a6a7c108e5779e11764eb92250086956a8b2c9fc733e06232b095e3001bc4fecea696ec7deb9 SHA512 b177eda763ad01cb2b73ab6dd049225ff006cfea660fe0b2155734bf0fbff8e17c9a1c8a48368bda3e0d4ff1e26a5d86af8b10769638d2dbed57fe649de27f11
EBUILD openevsewifi-0.4.ebuild 732 BLAKE2B c5b1cda7d3bd68373a06e768a061f663aa1aa90c8d1b6177f39b87b2230947247897cc359de399e59feb96fa169750a8d68d55a25f4192bf99b750622fd173f5 SHA512 238b90b5f3abe4bd70699540afe118422a56e0af4146f182ca52f61affa9de4fff9fe9946d4d3f5f3ce036dfe0d0e95021be17cb2af4b337356680a8843414e1
MISC metadata.xml 464 BLAKE2B 810fcdcbefbdacf1caf0aa16f6966e82eb4f1697b094576589efc9451fb988fd7c191cc0a1b0308589bf2b6ee35169731faa8a66f3fd79c48c00833836fb79a2 SHA512 93d3b65d2524a99d4d6c8a8561d6bb70bf1069351dfc643980b034a5684a487ef61eac106fd48a409de6fea1cb0584200740bce3e41e34c39a8e135b672b67b1

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">openevsewifi</remote-id>
<maintainer status="unknown">
<email>dev@miniconfig.com</email>
<name>Michelle Avery</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="A python library for communicating with the ESP8266-based wifi module from OpenEVSE"
HOMEPAGE="https://github.com/miniconfig/python-openevse-wifi https://pypi.org/project/openevsewifi/"
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
}