dev-python/aiovodafone: add 0.4.3

Closes: #2507
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-10 14:37:36 +01:00
committed by Andreas Billmeier
parent f3422e624a
commit b93128bf26
3 changed files with 38 additions and 3 deletions

View File

@@ -612,12 +612,12 @@ 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 1735 Ebuilds in total, 1724 of them have in total 1744 (43 different) licenses assigned.
There are 1737 Ebuilds in total, 1726 of them have in total 1746 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1018|
|Apache-2.0|364|
|MIT|1019|
|Apache-2.0|365|
|GPL-3|98|
|BSD|96|
|GPL-2|24|

View File

@@ -1,5 +1,7 @@
DIST aiovodafone-0.3.1.tar.gz 11285 BLAKE2B b72f97fa5cd091bb2586f0f9c37119cefd1dfd53d8871edb579c68eb8da01fd44c67dd061967f7abccddc587a40d12115f88df5143534d8e15afbc716decbd50 SHA512 cce64c4df2df1e7e1a6435dc08cf0ff68aa375a9107d712b2964f40cff623af1687b9448c8dfd4f0ca8ad9f1ba3b9bf0f75b70e8e86fbf5df4bea808e5aef37b
DIST aiovodafone-0.4.2.tar.gz 14058 BLAKE2B ec8f09d7717402f8b3835081afeb2ad37932e0c349f0bed4a6514a32ba9b980e34c31eeb3358d07e8b677614204a9ed7adba651dd61e3bc3bc69bd13f474d2aa SHA512 1f00d61ef9214204f925fd05506b4f1637407f5189987cc7fa6ad5304c223be0ed338faf055b3d54ecef68aee0fc27b2e813e39e64b4446b005555390807e0f9
DIST aiovodafone-0.4.3.tar.gz 14135 BLAKE2B be28a1080e7e8ef000d99257d5f6feac7003d5136595c17ecac83116131252c7f58f8fe2ba19bc8c0f6e616704070b126b5019ab66a4f206cff3869c58082ce2 SHA512 601293b6a642daf2e2aae3444a9cbfaf02f4e4cca8c443430d1d7542c117ac1c7e0e58f2a9e6841f88d89c54cb9f055d0b015ec4c949974f856f7f9e01a3c852
EBUILD aiovodafone-0.3.1.ebuild 738 BLAKE2B 1bdf0b1d143238a9010be4a3726408edbfc78a530d5f6d72bd8879c9810eb484430540163b258ad62d7134f658e62a913ac8cdceeb86833701a6fcedde889399 SHA512 2dcaae32f84de270de7f84e8d50892def33727c94cbfeebc7050d471a9cf08a571e3b892cb76404785aa987c5aa17cb0178ef967ec573f083b725944de72d6bf
EBUILD aiovodafone-0.4.2.ebuild 738 BLAKE2B 1bdf0b1d143238a9010be4a3726408edbfc78a530d5f6d72bd8879c9810eb484430540163b258ad62d7134f658e62a913ac8cdceeb86833701a6fcedde889399 SHA512 2dcaae32f84de270de7f84e8d50892def33727c94cbfeebc7050d471a9cf08a571e3b892cb76404785aa987c5aa17cb0178ef967ec573f083b725944de72d6bf
EBUILD aiovodafone-0.4.3.ebuild 738 BLAKE2B 1bdf0b1d143238a9010be4a3726408edbfc78a530d5f6d72bd8879c9810eb484430540163b258ad62d7134f658e62a913ac8cdceeb86833701a6fcedde889399 SHA512 2dcaae32f84de270de7f84e8d50892def33727c94cbfeebc7050d471a9cf08a571e3b892cb76404785aa987c5aa17cb0178ef967ec573f083b725944de72d6bf
MISC metadata.xml 528 BLAKE2B fff50019b3bb33dac4a771674585f904b4d4660b02b39d6438dba48dea9d8022395b356e6499ffdb17de614072fbb53f3632aacbceb99d4ebd8c1ee81ff4e7d2 SHA512 1b9a9433e337b9ad5a54be1cc8c216d06e28dd1ee5174dc000028dc75ad5f4f20f7c3ef599617dbb9d7abc331a486d672bd7ff128a9b61a0c796b5c80ed38a00

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Python library to control Vodafone Station"
HOMEPAGE="https://github.com/chemelli74/aiovodafone https://pypi.org/project/aiovodafone/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/beautifulsoup4[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest