dev-python/pycarwings2: add 2.14

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-08 10:11:27 +01:00 committed by Andreas Billmeier
parent 93435406c6
commit efeedcedc3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 40 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST pycarwings2-2.13.tar.gz 17439 BLAKE2B 4a41352b4f0983e3f5cfe42887f0be32d011630aaa83d47dac5bb59b66d49a0498be911f0bdba3df1fd7c639538fcdd2e3cfe01857b1996308d83a3ef70a9ce1 SHA512 35e6a99900f141dd0d96cd22d64d8ef4fddeaf508c3d664219ea0854bec48f240962486edf3ea906d4ab19b28ad12723537265de4c41aa714aa84b5f6a976593
DIST pycarwings2-2.14.tar.gz 17521 BLAKE2B f7ab198c4fda9e9197787b0d6ff204ecdcaec4f25100b1c25e22ce45ea7685e6d3df7825e7b6b2928651a6b3d23fc7b62538356cccf360a6cd2acf62a0449e49 SHA512 135093f7192d8109ee18473a1473830fe8529f6605a494694ce5d5570d1226a6b470147da718f2988df0edc08710a2aa00fbcaf5b7525d3911c8db9148dba5f1
EBUILD pycarwings2-2.13.ebuild 949 BLAKE2B 8b4c02c80f98f00fcc43549c8415c42ce04569b2c32d48ada9d34d2ba726881cda33044ba097f18ce6db2aab2e9fd74af83ff4c203b91f4a3698c43fd8685080 SHA512 4a14597cda9cf6a37274a8a722157f2a875646fe008a2e88d8008b9e870404d7a4f3dc84cb63369e7d72e33da46e077fe0f8b491c83abca9079c5f7da8ea3721
EBUILD pycarwings2-2.14.ebuild 980 BLAKE2B d1dd7d6a3fdff205cbaf93f2201556d536af335060e221e3f616f40f47ea9759f2db882d008b92e9c619d114a2846da102a3bf35589b2daa8f804edb709f02b4 SHA512 649552d870101c901f0f4aec5c5c4215a383acfd351f03dff4eac671c0b17c012016626e160e62e4e21a26d852b37a9f43d83696e27f28bcb1a2608beb7f2355
MISC metadata.xml 511 BLAKE2B b19d4cb6cb5ffe7f9cb3973bea7fbd4f44b918485e8819291cf1c465c533db7d8d05c25a0e954e2765ef4e1dc14842f7fa162241dccc49356b03167872532df9 SHA512 e9abb1a5637a034b0a2830633eda2d4536091123e59781fb173867fee4c18bb1e3bb01b2beff7f3d54e705138fe98aea2d3873e0c4203e24c55816bfb0d54c5c

View File

@ -0,0 +1,38 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
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"
IUSE="test"
RESTRICT="!test? ( 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}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest