bump nextdns-1.1.1

This commit is contained in:
Andreas Billmeier 2022-09-03 13:51:12 +02:00 committed by Andreas Billmeier
parent 1a5fc807c0
commit e199d52462
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -523,12 +523,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 1868 Ebuilds in total, 1861 of them have in total 1873 (35 different) licenses assigned.
There are 1869 Ebuilds in total, 1862 of them have in total 1874 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1134|
|Apache-2.0|343|
|Apache-2.0|344|
|GPL-3|113|
|BSD|106|
|LGPL-3|29|

View File

@ -1,3 +1,5 @@
DIST nextdns-1.0.2.tar.gz 12904 BLAKE2B da8a4a3d580df953b4e766af38d5f8554eea679ab4b840898db162bb23f877be9213179ea0a8fa6079690d5ece6673b1a6bcb5449e6d4241d2fe4553acaca90e SHA512 6ceadebd6e3bffb1ec8c022bb505a011be29040a83a3d265eb85101b82eb97a9309cbc7acc35fd5c772df3edadbfc82941d07dabc76ac323d7276a3d6bba0590
DIST nextdns-1.1.1.tar.gz 15763 BLAKE2B 055dbeebfe4d3eb173019eb47c16998c6777d5cd890178ef00170a2d37c16f1c20b5789acce0449cb07fc2fa44db2ce6856add9afd1021e6665743a26398743e SHA512 93b54693c794e8850d3d2c4c5c3e1856b94c445847d7c4d659306856f16585079b0f2b785276cdc6850c02e3f87d20f7da4e294aab5f0360b2e8b8cfc116112f
EBUILD nextdns-1.0.2.ebuild 788 BLAKE2B 1bf874f28d78ad272d101b2534cd2950c05b0216c5265016d3e0792ce83b5ec5b307f812287bdef1b923d145692b995b3c4dabb64c4d4a433814613b9906e040 SHA512 7574ad79c6100db3fe1edfff48835430676338087b923c030bdb155f037a7ce1d037ee50c5fc199f79b39d43571ae46c37fa766f4f133d0da69e583e6b2f24be
EBUILD nextdns-1.1.1.ebuild 788 BLAKE2B 1bf874f28d78ad272d101b2534cd2950c05b0216c5265016d3e0792ce83b5ec5b307f812287bdef1b923d145692b995b3c4dabb64c4d4a433814613b9906e040 SHA512 7574ad79c6100db3fe1edfff48835430676338087b923c030bdb155f037a7ce1d037ee50c5fc199f79b39d43571ae46c37fa766f4f133d0da69e583e6b2f24be
MISC metadata.xml 326 BLAKE2B 4efb8947f2d76803dbe23d78837370572cdc7dac8b82f895e41dbd028cac604752bf60514a49dcdb35111583632bf4dfea028ea4fa7576282cca82776953f7ef SHA512 67852612e5a0db4d5fd7f702d4c862a7fa877d6ffd4b76ce86ac26268bbe2d862923ee889175eaa7019c0afd9b11eebfb7162a1754262a5377b4495f4dea09c8

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Python wrapper for NextDNS API."
HOMEPAGE="https://github.com/bieniu/nextdns https://pypi.org/project/nextdns/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
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/orjson[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest