dev-python/pymazda: add 0.3.8

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-10 00:03:18 +01:00 committed by Andreas Billmeier
parent 84dc99094f
commit 8a60f3afb9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 2 deletions

View File

@ -573,11 +573,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 1810 Ebuilds in total, 1799 of them have in total 1804 (34 different) licenses assigned.
There are 1811 Ebuilds in total, 1800 of them have in total 1805 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1055|
|MIT|1056|
|Apache-2.0|393|
|GPL-3|113|
|BSD|94|

View File

@ -1,3 +1,5 @@
DIST pymazda-0.3.7.tar.gz 23029 BLAKE2B c49028f4d4b1f10d46ac7808a98129edf3039e499b041039753a91d705c775d55c2587975481c4031662ce8908e7a3dc525e0724930679e857401003164c2ab5 SHA512 f808be289244e6c43a827b5aeb139bb6894d0fe6b4fef4c11438e279722ab69ff5844ac659c14ebdf56a1ad1dc29628050594e6b71bce0f07c50e1e62cc8f60b
DIST pymazda-0.3.8.tar.gz 24695 BLAKE2B 0878c0056f482319e95946a6d3cf4054289a84b4dfea549539bc551dab27be1ef79ab16556a9f3f0b8896281547ade71038b4d910d1a4add36850b0bc57a3b93 SHA512 9416e28138e4a703a991191f0982381c60f1be18f77b4da8e529c8cb9718a883d3bb93bfde1cc873f53acb2e3cbbe633cd2da72e2d0f25388a7e833e53ca2302
EBUILD pymazda-0.3.7.ebuild 777 BLAKE2B d9815fc5f4c6dfc0d6d51c0312eb1d7ac9c43347bb22f5bb1682dc1fb8741cfb18d9a6898d1e314a8edc01bb57299c5f76003122d0738ef973b444ac170f3d38 SHA512 85d309aaabc7879b33d27f52dea8ab54ec262a10b4ad57e7be5a57fd062a90dc353b6038e73dcfe3ccac784712aef273a60f45ac73aae585f0982e174e043fec
EBUILD pymazda-0.3.8.ebuild 717 BLAKE2B 052ac2ae7717a2ee37a371f641e16f342f8f80d676b8e8d4eb71c1fde5258645894c72ace3942a45fcfbbd1c61fbee291ea69421b393fea3500bda61698cd57a SHA512 9ec532616e648984397ed2aa44ee3b12a1af30e30342a487871c15d76d7087d6dde88e28cec8d16036e91cad96b093531186b721839fa57f9dad27951adf726b
MISC metadata.xml 520 BLAKE2B 902d32dbada6bed634ecf930ac6a85e87af95ad2cf06d24796850dfde41ffc2e4b34f195fc81bfee57485042316e29879354e97a67985ccd950052dcfae3dd1d SHA512 1a174237565c9b47d3815550f6e7ebf04aa7daa220d6d5777030775cdd5e7b1df1375759985c909918e245867123da9534950b7a73c61db1afbae4f163c00592

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=poetry
inherit distutils-r1 pypi
DESCRIPTION="An API client for interacting with the MyMazda (Mazda Connected Services) API"
HOMEPAGE="https://github.com/bdr99/pymazda https://pypi.org/project/pymazda/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/cryptography-36.0.2[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest