add pyatmo-1.

This commit is contained in:
Andreas Billmeier 2019-02-13 17:42:53 +01:00
parent d0b6910659
commit 07bc6a6b96
4 changed files with 43 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* fixed SRC_URI handling for RestrictedPython, and added 4.0_beta8
* add home-assistant-frontend==20190212.0, remove 20190120.0 - 20190130.0
* add cryptography-2.5
* add pyatmo-1.8
2019-02-12 div Updates
* Update pyHS100 to 0.3.4

View File

@ -0,0 +1,3 @@
DIST pyatmo-1.8.tar.gz 13573 BLAKE2B 5240fc5eb01fb60ffd9b4d6ebde76317cc7444e5352d97e95ec3edbd6e960a3aae55c2c1c0c47b3d5067bcee38eb2105ff08a31869697cf44540f8dd5376255c SHA512 75bddc42ad7a7d1c0114dafbadb7fb48532687f09ce9d9d9f55c7f408c770c6b5baf1ecc2e28083f4a90841eb3b208af7e41e2c5b46d51cba3ff52256c250f94
EBUILD pyatmo-1.8.ebuild 760 BLAKE2B 7728f0b59b8e6510b2fc23b2933cf48225bcc91f9ada8d7ac509664557d72cfb82c4b71d94aee02458a6af8f23462f1bad039724b6204d29ed38b3fe3f2b884c SHA512 e0c52da0a9696514a11907e99bf23e13b0c917806a46d4128af40e3304812e2cd8c92ce7dee92df7ff8ae9c67727c06e2a177de8900d02512a33e5034edf1c60
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@ -0,0 +1,8 @@
<?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>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Simple API to access Netatmo weather station data from any python script. Design for Home-Assitant (but not only)"
HOMEPAGE="https://github.com/jabesq/netatmo-api-python https://pypi.org/project/pyatmo/"
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
}