hyundai-kia-connect-api: add 3.1.9

This commit is contained in:
Andreas Billmeier 2023-04-16 13:34:29 +02:00 committed by Andreas Billmeier
parent f64ec57247
commit dff1317f63
Signed by untrusted user: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 4 deletions

View File

@ -576,11 +576,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1855 Ebuilds in total, 1844 of them have in total 1861 (36 different) licenses assigned.
There are 1856 Ebuilds in total, 1845 of them have in total 1862 (36 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1087|
|MIT|1088|
|Apache-2.0|397|
|GPL-3|118|
|BSD|97|
@ -617,9 +617,9 @@ There are 1855 Ebuilds in total, 1844 of them have in total 1861 (36 different)
|CC0-1.0|1|
|GPL-2+|1|
(Last counted: 13/04/2023)
(Last counted: 16/04/2023)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 13/04/2023
Last updated: 16/04/2023

View File

@ -1,3 +1,5 @@
DIST hyundai_kia_connect_api-3.1.2.tar.gz 40418 BLAKE2B d67d964691f438eb5657f6113badc9755aafc54093ecffcb3d57d75434a4acb6e04646786a7bde29550f3bae8667af1ddb12d71211faf873d435dc7af512cc95 SHA512 63ced5a652175632757fa16f0dd720ee91fed75c5d71c3185a7ad98f756f9f1b4da956101f7ad3894727879077ffdb68c9f81ec1f8780c6a9fb5da7fb4cd572b
DIST hyundai_kia_connect_api-3.1.9.tar.gz 40592 BLAKE2B 9cb420cb8271d6ab142497e9f53d2b799ed2e13b24469850267de6e0d3b3b550668a0d9d3099c589c9c3faf634c99934f6057f5b7ad70eaa2fdde7072d02d939 SHA512 299c3df96b0a8f762ce22bfafd19d13d70708913256ebb54ca1f762688301fb1ba90907600f3849d711de775a38e31fcdb58c654fbaae0ecf8c7b1240d463ea2
EBUILD hyundai-kia-connect-api-3.1.2.ebuild 788 BLAKE2B 3e07686a83a95af497830a4a0f9d003c122f4eae581205dc4510a8bf4d3e6587d1404b40533641b3563a46c95f7dfc4394cc6d0092ab8481e341ae1568a46cda SHA512 a54f02c06b3342010c4618d94c50b308e35e07c164ec66c6c6794f54d5c9cdae6d6f11cc0d8c623a8054ffdaec4155fc0544eeecb13eaf2ec4be48191b521433
EBUILD hyundai-kia-connect-api-3.1.9.ebuild 788 BLAKE2B 3e07686a83a95af497830a4a0f9d003c122f4eae581205dc4510a8bf4d3e6587d1404b40533641b3563a46c95f7dfc4394cc6d0092ab8481e341ae1568a46cda SHA512 a54f02c06b3342010c4618d94c50b308e35e07c164ec66c6c6794f54d5c9cdae6d6f11cc0d8c623a8054ffdaec4155fc0544eeecb13eaf2ec4be48191b521433
MISC metadata.xml 540 BLAKE2B af781755b777369cc5a8fb9beff20cb1b2d29f3f3d3c2d257aaa7073e3a9dbcd52abe6f4f3f11183a6b94a7088cc4317814cde94fa7aa0ba9d8161937be2a7b7 SHA512 6fad7f337c6c64f02331eb6bc7f316adda465dbd90f4254cb984b5ed74f6b78bd345c9425ee2102fa7a4fd8ef58a5a375b1531be0e8a3430037a0e7e648127f6

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="This is a Kia UVO and Hyundai Bluelink written in python for Homeassistant"
HOMEPAGE="https://github.com/fuatakgun/hyundai_kia_connect_api https://pypi.org/project/hyundai-kia-connect-api/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/curlify[${PYTHON_USEDEP}]
dev-python/beautifulsoup4[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest