Skip to content

Commit 8a60f3a

Browse files
committed
dev-python/pymazda: add 0.3.8
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 84dc990 commit 8a60f3a

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,11 +573,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
573573

574574
## Licenses
575575
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.
576-
There are 1810 Ebuilds in total, 1799 of them have in total 1804 (34 different) licenses assigned.
576+
There are 1811 Ebuilds in total, 1800 of them have in total 1805 (34 different) licenses assigned.
577577

578578
|License| Ebuilds using it|
579579
|-------|-----|
580-
|MIT|1055|
580+
|MIT|1056|
581581
|Apache-2.0|393|
582582
|GPL-3|113|
583583
|BSD|94|

dev-python/pymazda/Manifest

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DIST pymazda-0.3.7.tar.gz 23029 BLAKE2B c49028f4d4b1f10d46ac7808a98129edf3039e499b041039753a91d705c775d55c2587975481c4031662ce8908e7a3dc525e0724930679e857401003164c2ab5 SHA512 f808be289244e6c43a827b5aeb139bb6894d0fe6b4fef4c11438e279722ab69ff5844ac659c14ebdf56a1ad1dc29628050594e6b71bce0f07c50e1e62cc8f60b
2+
DIST pymazda-0.3.8.tar.gz 24695 BLAKE2B 0878c0056f482319e95946a6d3cf4054289a84b4dfea549539bc551dab27be1ef79ab16556a9f3f0b8896281547ade71038b4d910d1a4add36850b0bc57a3b93 SHA512 9416e28138e4a703a991191f0982381c60f1be18f77b4da8e529c8cb9718a883d3bb93bfde1cc873f53acb2e3cbbe633cd2da72e2d0f25388a7e833e53ca2302
23
EBUILD pymazda-0.3.7.ebuild 777 BLAKE2B d9815fc5f4c6dfc0d6d51c0312eb1d7ac9c43347bb22f5bb1682dc1fb8741cfb18d9a6898d1e314a8edc01bb57299c5f76003122d0738ef973b444ac170f3d38 SHA512 85d309aaabc7879b33d27f52dea8ab54ec262a10b4ad57e7be5a57fd062a90dc353b6038e73dcfe3ccac784712aef273a60f45ac73aae585f0982e174e043fec
4+
EBUILD pymazda-0.3.8.ebuild 717 BLAKE2B 052ac2ae7717a2ee37a371f641e16f342f8f80d676b8e8d4eb71c1fde5258645894c72ace3942a45fcfbbd1c61fbee291ea69421b393fea3500bda61698cd57a SHA512 9ec532616e648984397ed2aa44ee3b12a1af30e30342a487871c15d76d7087d6dde88e28cec8d16036e91cad96b093531186b721839fa57f9dad27951adf726b
35
MISC metadata.xml 520 BLAKE2B 902d32dbada6bed634ecf930ac6a85e87af95ad2cf06d24796850dfde41ffc2e4b34f195fc81bfee57485042316e29879354e97a67985ccd950052dcfae3dd1d SHA512 1a174237565c9b47d3815550f6e7ebf04aa7daa220d6d5777030775cdd5e7b1df1375759985c909918e245867123da9534950b7a73c61db1afbae4f163c00592
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{9..11} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="An API client for interacting with the MyMazda (Mazda Connected Services) API"
11+
HOMEPAGE="https://github.com/bdr99/pymazda https://pypi.org/project/pymazda/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
22+
>=dev-python/cryptography-36.0.2[${PYTHON_USEDEP}]"
23+
BDEPEND="
24+
test? (
25+
dev-python/pytest[${PYTHON_USEDEP}]
26+
)"
27+
28+
python_test() {
29+
py.test -v -v || die
30+
}
31+
32+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)