add volvooncall-0.8.12

This commit is contained in:
Andreas Billmeier 2019-11-24 21:05:49 +01:00
parent 9e6f974df7
commit 7011c14477
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 54 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* dg to steamodd-4.21, py-synology-0.2.0, pywemo-0.4.34, synology-srm-0.0.7
* dg tellcore-py-1.1.2, vultr-0.1.2
* add pifacedigitalio-3.0.5, pytouchline-0.7
* add aiolifx-effects-0.2.2, miflora
* add aiolifx-effects-0.2.2, miflora, volvooncall-0.8.12
* add pyflic-homeassistant-0.4, python-qbittorrent-0.3.1
* dg ritassist-0.9.2, btsmarthub-devicelist-0.1.3, webexteamssdk-1.1.1
* bump youtube_dl-2019.11.22

View File

@ -0,0 +1,3 @@
DIST volvooncall-0.8.12.tar.gz 14274 BLAKE2B 3dd67ca8e9a838a6bf0f9935a2b0ed9b269bfc8cc8fdf74dd49d66f60083c7c4ed5622ceeecf5b30839bc1f86e52e0b994b8f0e15462049f054946132c9c9ec3 SHA512 11059d3e42b8753d6ea2d47f34f978aec63690c2b99c0d0779dc9846af54ec49f77c10d7f47cfd561d18b29d0492f4e969d7674c772cbde773b8c342d99f02ea
EBUILD volvooncall-0.8.12.ebuild 862 BLAKE2B cf843a408f37ceb777bba35012bcf629c3b925469c6ea2e2ee971e40c93ab9e06fda80e59d6d8df3d5a6e460a6476a94bd0312affb39fd14540988213aead3dd SHA512 9ba9add88df72d81f8951d0228ce6da00d9f23cde7c1b2a073211886018379016e46e9e3a08d2321afb88d1d68bb93917432a39faf0dd91f048627a81abbcbe2
MISC metadata.xml 460 BLAKE2B c81c499bb56b70d119e55654fe961d7c630d3652356cfdefb09e245dc13d57e1adc6ab58f1d042015cab311b0b016eab8cfc48bc171f91613fbcac39ecaa9a72 SHA512 e4fbe26776de57ee887ccac74371cf6b39adb1ed1bf8e03cda2842855b90264ab04aa50c6f34f54e39bbcef81b9c31ed8a2780f6c4e82879e71c160186e22a8a

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">volvooncall</remote-id>
<maintainer status="unknown">
<email>error.errorsson@gmail.com</email>
<name>Erik</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# 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="Communicate with VOC"
HOMEPAGE="https://github.com/molobrakos/volvooncall https://pypi.org/project/volvooncall/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]
>=dev-python/geopy-1.14.0[${PYTHON_USEDEP}]
dev-python/certifi[${PYTHON_USEDEP}]
dev-python/hbmqtt[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]"
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
}