update pycarwings2-2.9

This commit is contained in:
Andreas Billmeier 2019-11-23 18:16:04 +01:00
parent bb1fe7cf65
commit 63b30dee06
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST pycarwings2-2.8.tar.gz 11802 BLAKE2B 0b526985300ef3dc5e6da72a5d266f69218a889dcc4bff385bd8104e707d614a2dad12f93a548ff34a452a2aefedee0d248dce86b0c25c42641b3012c8152b25 SHA512 a779a8dcdd12679602a57ef2f5004868fc529a10107aa5c4201ca695aacb68ecb4185d61eb7959dd8916afbd2b4e2a1dff9eb1e47806f9c832350e997f74fcba
DIST pycarwings2-2.9.tar.gz 12968 BLAKE2B 9f78943eb00fd78c679d1dd4eb7f48956c4cda0b042d325e0b6acb79ecd1ad062e0e1ef82dcb6e71285f901195cf7ab635f06b08a695f3cbb1dc029ca310546e SHA512 ea8da91887c8cf69d26a26fc19ede294f304cc753c891008b602fd35b29119427cdb969f27cf41bced6dc9c21ca19f487e7d46a3f6ac17eaad4bc9b51d22da27
EBUILD pycarwings2-2.8.ebuild 722 BLAKE2B f2b0ad4ff3ce3e1972c2c3a0f93f47572db9353f5ec948ac91a473c47338c0af29a842fadfdf62dbbae67571d269a6f7623990795c2a612761de6fd3bc6256fb SHA512 03e2d7f319cccc36a37a61ac9c9fcdc9b765ca7868303986016ef4267c9d2c4b6d8f64c274d21854ffd3dfcc76d016d63f0e6ee3a0d9a84df4bf94fa4ee6c5f1
EBUILD pycarwings2-2.9.ebuild 877 BLAKE2B 05ea12f3f18cdd4efe998e430325f5adf197496877784bf5961b2d8385c9256867e4ece8081be6c15f05f5c7d8a4edf1644c7598b1f12ce3d6b03061f30da1b4 SHA512 f20c0b6dc59d1279fe65b5e092f6e778f7eca62c76cc329a62ca8046260e927989e204790b5fa906180ff8714cda5fe9c5791b7dbec484c01ff4446ef5332fc1
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/pycryptodome[${PYTHON_USEDEP}]
dev-python/iso8601[${PYTHON_USEDEP}]
dev-python/pyyaml[${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
}