add pysmappee-0.1.0

This commit is contained in:
Andreas Billmeier 2020-06-20 09:03:49 +02:00 committed by Andreas Billmeier
parent 3422efeaa8
commit 2ca13ebef3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2020-06-20
* bump aiokef-0.2.12
* add pysmappee-0.1.0
2020-06-18
* throw out more old Python 3.6 stuff from README.md

View File

@ -0,0 +1,3 @@
DIST pysmappee-0.1.0.tar.gz 15186 BLAKE2B cbc375f80d9f534513e716e95e72023f6a0f229358c5089cc8d9e7a78f1fc96fb76ef92e33809fc8d8d0bf4d0745c2e7a0a04c353beefb96a0f7b9dadbcf48e3 SHA512 4b3e743dd0a912f79d3e62c84b9868965540ae000e7b210fd64c784b67fc7d0cf2e78a233afedd750868ecfa8460c8d256df9cce8c7855c12465f4f88c2f034c
EBUILD pysmappee-0.1.0.ebuild 686 BLAKE2B 62e61f56290a89a86113dc0ed6d6b7e9e58dfd69e6e1e3a8f63dc9d180da2973b92f124d36ddfb05e63231c53f378962c5af9f43a29ba011ccb03da92f0f9475 SHA512 f194ce77e8b268547854a00da0894e110daf8526e8f21f1eb5bea15022206e397505434e1616b7568f4a000d528662456f5f5b3e7776d07d236812ecef1f863e
MISC metadata.xml 448 BLAKE2B e453fae37f7c33ed016ee89cd30871c8cf9f70eac50251bd005ff0c58126cf1d765e9b1b4448703b0f0fe327ba112f65da9ab33ec49ff270b512716539b13bc3 SHA512 7daea46fe55b9b2aa1ff2b8f19f81d80498d8758d5340e687babac54f189c8ac695ac766eba6df87d653ea8957412d38a9d73206668c866a60a698c34f8b25a4

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">pysmappee</remote-id>
<maintainer status="unknown">
<email>support@smappee.com</email>
<name>Smappee</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
DESCRIPTION="Offical Smappee dev API and MQTT python wrapper"
HOMEPAGE="https://github.com/smappee/pysmappee https://pypi.org/project/pysmappee/"
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=""
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
}