bump pycarwings2-2.11

This commit is contained in:
Andreas Billmeier 2021-08-20 15:36:09 +02:00 committed by Andreas Billmeier
parent dc36fa8e05
commit 2969d94f92
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 2 deletions

View File

@ -1,3 +1,5 @@
DIST pycarwings2-2.10.tar.gz 13024 BLAKE2B 53761fefe59013fc4c0fcd430c33efe4489b2837f863ea3e66e25178d5c0a52341d2f9afc66c4c6a5b0b90896fdef66338c249adda0b5e9e8d313256f1e406f1 SHA512 d792e675a38495986272317a679c83a4534897bddec3a6e569fc78e9725ecab6a9c4df2b6fc9aa950ac0c65728374741fcf906e57ac6d077fdad242f0683ba17
EBUILD pycarwings2-2.10.ebuild 898 BLAKE2B ef235fece441e1d4c9d8d4bec7aae15a1b04730542a33406cb624defa7ad4c5c5bffd4cb8b0c2e367f02d24f0f884edfe98a327441cad2e7f4bc4e0d42bd77d7 SHA512 9ad5d5ddaf6241ab7d9e7bcf9596e3cf786c72285e872e73d0bc5da1b717654f63696140a8a4098799963e0163e35abb5b2b17a8533da2c7e81472ac6e55dbf7
DIST pycarwings2-2.11.tar.gz 13681 BLAKE2B 3760a2993b31405bfc4794ae4cdff3d8f6a4da5f6baa21d435b0174a19df8e7ff6f9cbb4aa3cabb31b205c558004a76b949d9b1f7fb4266b0144f3ea435cab87 SHA512 46937fe7eabbebb783b1562ec5b7e0d20d94e5b536f9437db94925ecdddc196129d2bcee84929456a3c5c356a176834db33aee28f2d9f6b1551f48006eeae012
EBUILD pycarwings2-2.10.ebuild 899 BLAKE2B 6e706955925e549f216f4ea9883dd4f568b3eee1f5bea6839c6af10969e9e656b7a1240b4f20817f1dc981e099dade0e1afff34fe650d80823ae5495798f7a2d SHA512 e1903babc921833cf1e79fa89ad78a21fb549b58d99361dcc111bbe4084d81a72a16a89dfbfa3fc816424ac8d8250b11024178be30f96dbcb64974edf220a2ab
EBUILD pycarwings2-2.11.ebuild 899 BLAKE2B 6e706955925e549f216f4ea9883dd4f568b3eee1f5bea6839c6af10969e9e656b7a1240b4f20817f1dc981e099dade0e1afff34fe650d80823ae5495798f7a2d SHA512 e1903babc921833cf1e79fa89ad78a21fb549b58d99361dcc111bbe4084d81a72a16a89dfbfa3fc816424ac8d8250b11024178be30f96dbcb64974edf220a2ab
MISC metadata.xml 450 BLAKE2B 4689c334c516c8dc81cd3ad601d12a065d7c156a84f03a8db1d2f63bb59f69c32496eee5b36ec7c2487ea1d542efebb3f6e140ac73c23096622651dfe8c51432 SHA512 e84ae03382ef74ea75a0ca6ec90edbd0e469d3fd9c058168175767e86bb17e00b38b7fa0ac869e7b1793e641c408ecb09761741023386e66671ac454bf8fe271

View File

@ -3,7 +3,7 @@
EAPI="7"
PYTHON_COMPAT=( python3_{8..9} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1

View File

@ -0,0 +1,35 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/pycryptodome[${PYTHON_USEDEP}]
dev-python/iso8601[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]"
BDEPEND="
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
}