dev-python/nextdns: add 3.0.0

Closes: #3288
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-05-12 22:02:15 +02:00
parent fdd269cfde
commit fe5298efd4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 33 additions and 4 deletions

View File

@ -617,12 +617,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 1807 Ebuilds in total, 1796 of them have in total 1815 (42 different) licenses assigned.
There are 1808 Ebuilds in total, 1797 of them have in total 1816 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1035|
|Apache-2.0|396|
|Apache-2.0|397|
|GPL-3|108|
|BSD|106|
|LGPL-3|25|

View File

@ -1,3 +1,5 @@
DIST nextdns-2.1.0.tar.gz 20501 BLAKE2B d4aa137dfe5208c1a57da901a561b5fe907e64d27208626c3e9df94657db1504a8de43819fc2b8536b9379a1813ff7b25888c163ba0ad5fd45f7cffdecbf0ee2 SHA512 796d6b4a81d21e451016bda885c7632f8ad4f26e55b972686ceb007b0a12ce2c92998f64f3f044060d72275ec1c4c34803d75963853c066e0f5358d72198ed15
EBUILD nextdns-2.1.0.ebuild 729 BLAKE2B 0cf507fb4761de2c8254887941dd44d23f3b69ae87ac26336aced1fe8d874cb4cb92cf18908e25fd7e4af045182b9511618531168bcb60f6f6c89cf8b86e95cd SHA512 483c6376268c2d7604901885c71a3085cc65b88583d2dc0ec501128bf0f351ff0764246955fc9f2f1d31dfe22d560683a773352768d37d24ea1dc6b4bd4ac47a
DIST nextdns-3.0.0.tar.gz 18687 BLAKE2B 77a00180f872a064662c7c18c3b65b1e8f37557ce39ea1019df874cf98a59e577eeb9072f04ed30e2f8abf7784dfe569cfe52f88358c99b905120e20bd89c2a2 SHA512 15d793d6f851e4127564cf11016b0236f863ce0dd52272cb31d603da2f65a3d40064eeaa5222fd266d4d35f25ec73a874e9a2dfc138c7f787caed0e1942720cf
EBUILD nextdns-2.1.0.ebuild 729 BLAKE2B 3eb95da3625617bc19abeec1f688466411eb57fb3bd8d609057bb22db28f865719d0f37bb402e313063b94b50b2252a27f2195e6a5a2f4666a87b7f02c0c68a1 SHA512 86c354703d389b623e4973bdc4b076d958f1a91036f0c8f8fcc610712b300f2ffba3382e72b8ef3cfba7c1a60751de29f127d1079cbdcf97a410480b6c47f102
EBUILD nextdns-3.0.0.ebuild 650 BLAKE2B 5da38e21c21c82fa602ed86a053bb48da51a49b880a5ef20ced984791bb9682a3310a66cf2ecf445b6056b15b3eebd7ffe8cd3d7024519f7a19aca447adea9de SHA512 22a786d24e7911ed506f9e31035c1e6cb4926502e1bc3f62b55683e818d0907af14d5d8ab670ec02b54c12a1434f44647f73222c204a43acc8f5123a4542b816
MISC metadata.xml 382 BLAKE2B ae7f62b2b5d57ee678248d995054ff3b7f3dcf4b62e4ead06fd426933df83b78b92bc98f23b8ca28e8c75d98a63310282705dd2f8a617e4734d5c99b3bb870ff SHA512 730ee22b5adbc0ac69b9a254ec4dfacb46e8c26136337555f451863aaa500102fbde3ba81f7550eb8a438657c1c1a35eafb8adc5b7ef857e8e5cb91d14e61173

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper for NextDNS API."

View File

@ -0,0 +1,27 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper for NextDNS API."
HOMEPAGE="https://github.com/bieniu/nextdns https://pypi.org/project/nextdns/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/aioresponses[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest