dev-python/adguardhome: add 0.7.0

Closes: #3538
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-09-21 11:06:53 +02:00
parent c787bcda98
commit d6a4564d92
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 35 additions and 4 deletions

View File

@ -606,11 +606,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 1960 Ebuilds in total, 1949 of them have in total 1973 (42 different) licenses assigned.
There are 1961 Ebuilds in total, 1950 of them have in total 1974 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1127|
|MIT|1128|
|Apache-2.0|440|
|GPL-3|114|
|BSD|113|

View File

@ -1,3 +1,5 @@
DIST adguardhome-0.6.3.tar.gz 12503 BLAKE2B 8e75fbce2aa213bd3c5da64d1283b7a8d2ce0c7d61ef336940ba8607e35ef081c22feef30a92b57a2679fad6bf2f3f4c1838f9b94da8980ded95ccc197ae2b0b SHA512 4bfd42a6a9d2bb24944351cb0845b793a002afd1b5be79446129121ccbccce292212e9a9a42e9f9c9281d502b09cfcdfec81a34110ee3bae8732eaebcc2cec76
EBUILD adguardhome-0.6.3.ebuild 818 BLAKE2B 5bb2253ea82ecd439b73e78f8ba3f51d6cba6a7416b5e32a869cbdad0a2aa7e4efb475b1229fb087598b8f9ed869b99d986041cff5c778d36437688574ce4522 SHA512 e7cc19b6294d7008e2e81724eda636c89947f178e205a8639d70d00c832f6482e0ca97e81009fef8d8946c30b4a88903f8c97ea2d87f800ec95ec025a7387826
DIST adguardhome-0.7.0.tar.gz 12386 BLAKE2B a9f2a9446b2ab9da34df5d3281155fcd5981582ed17578abd021a0b57641d99f103e57f3bcaa05919d624cc92a857c4fc71b9d469286338ed39c85968beab4ae SHA512 5ae6dd7f9ac22deeee18d5ee300e88872b4ac23067d276cec7123d4c65962897d89ded7e984a56a061583ce24e133dddacb2a3ffa724281152f3544648e83fc6
EBUILD adguardhome-0.6.3.ebuild 818 BLAKE2B 615bfccb6cd85cab0e9312bd1cd457d1549a2631dedf16b143f587f6ef4f0d4ecef616ece917334ebd509acd1a4f5efe9701a00c7c1d717c1fc626d451029b21 SHA512 05c194d71e65dbdea07e2267f9a7bb203163b95b56bf839a5383b2dd6e1188d5c88557113f930f979ff6342fc61b0257a9b16c30763c881912af46deddcc9bae
EBUILD adguardhome-0.7.0.ebuild 717 BLAKE2B 9de943e718377efd57990bc2624df14709bde43c5f42adb2bb0717a3e8bb237bf575b847df66a4e0d80ab1d9806a38f23caced1375afd4f76f2a6c5c4d7accc9 SHA512 d331e31abb3cdfc1204c05c42cc273ac781cbe8b16846d778711c5b2f7b47608cb9e7849ee1a0ee518f7644d2ed045b7d8fa2ba5c6e7975ceb21c0adc6ef143b
MISC metadata.xml 525 BLAKE2B adf39b9a6eeafa5ba0af5e17e9f04f88c1770d972943e0be60372c0a1134f068797c29cd86132d3f3f5902fe463134ee3374eb70970f94230d6e0bc5fa9e0d17 SHA512 1ec63457cbb08aabb8ea3cc6ce862f34b9b07aee3c7fd62632ee34c0bba053174a4a65ce34f2b06454a5b98fe8b6629fed988209fe61a653215631621df22b63

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for the AdGuard Home API."

View File

@ -0,0 +1,29 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for the AdGuard Home API."
HOMEPAGE="https://github.com/frenck/python-adguardhome https://pypi.org/project/adguardhome/"
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/yarl[${PYTHON_USEDEP}]"
src_prepare() {
# remove unsupported dynamic-versioning plugin
sed 's/0.0.0/${PV}/g' -i pyproject.toml || die
eapply_user
}
distutils_enable_tests pytest