pycarwings2-2.8

This commit is contained in:
Andreas Billmeier 2019-02-16 09:24:02 +01:00
parent 5d80b1534b
commit 98f434b72b
4 changed files with 42 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* update PyChromecast-2.5.1
* update aioambient-0.1.2
* add pyHik
* add pycarwings2
2019-02-12 div Updates
* bump home-assistant-frontend==20190213.0, remove 20190201

View File

@ -0,0 +1,3 @@
DIST pycarwings2-2.8.tar.gz 11802 BLAKE2B 0b526985300ef3dc5e6da72a5d266f69218a889dcc4bff385bd8104e707d614a2dad12f93a548ff34a452a2aefedee0d248dce86b0c25c42641b3012c8152b25 SHA512 a779a8dcdd12679602a57ef2f5004868fc529a10107aa5c4201ca695aacb68ecb4185d61eb7959dd8916afbd2b4e2a1dff9eb1e47806f9c832350e997f74fcba
EBUILD pycarwings2-2.8.ebuild 740 BLAKE2B 0b0bd1dd96e7c6e5d84d4aa30b11506a1a46de14646aa5d4892962bb61c78117582dd811ec51e05cd885417dfd4cf875d5b668d611e86ee6c4c77760fcaf9406 SHA512 a82570ee6e1bd904ab24c7b4df9be63847dd891e984a7ff946e3c431ced6cd21fdae90f4cdbc3ab59d7a6a660a7cead211bd6ff5678323402b3d451677d1d0b1
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,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python library for interacting with the Nissan Leaf Carwings telematics service"
HOMEPAGE="https://github.com/filcole/pycarwings2 https://pypi.org/project/pycarwings2/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache Software License"
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
}