dev-python/gridnet: add 4.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-01 19:58:10 +01:00 committed by Andreas Billmeier
parent 6795025a6a
commit 3f98828519
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 2 deletions

View File

@ -573,11 +573,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 1768 Ebuilds in total, 1757 of them have in total 1761 (34 different) licenses assigned.
There are 1769 Ebuilds in total, 1758 of them have in total 1762 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1031|
|MIT|1032|
|Apache-2.0|383|
|GPL-3|108|
|BSD|93|

View File

@ -1,3 +1,5 @@
DIST gridnet-4.0.0.tar.gz 7613 BLAKE2B 20e5d6c98d5750cd5734e314542f76969466af3ca9e9489ca801e9d2861f93d2a75855eaff8cbc54f685b6028b9d81e39ea8f619bdc780bb1ea81c039f52c1ce SHA512 be054fe83be99aa96d45aace255175fd153a3dc020c39f9324eda9068180b05e34ba5c0053e0df0fd674f485c1bfaca2b91b5d9b800546761f490ab9c7bbb3b3
DIST gridnet-4.2.0.tar.gz 8311 BLAKE2B 9ad287fbc622596f6bd133b777e2d8f2b16a5a3f40008d92e0618146a6463b97ad05608a756aa08754b3da97a16b6b8363805b097672dbbd62aed7639642d2fd SHA512 ca361711e3f6d1491b0f0a1c506de91a513df426900ddf1cbb1109e2f52a891416223bd856b59f7a9e4781da9b2483038cca5002795804b28eb95f74133d1f62
EBUILD gridnet-4.0.0.ebuild 763 BLAKE2B b35885eac5123703ad5d0283b8c94d0c7c374f36fdb554fc316941b3a76e9947c121513c9d5a3dc1da6ebf2f8591bc051ca690483fd0b46d52b1ea0b25580117 SHA512 a07fb00e8e0a6fe029e37b0a8289b360bd2a729158b97e8756ade8574900cd1d57b536024631c12e0bf43e078c2c150846271dbdc372817e39d28361e9108bbd
EBUILD gridnet-4.2.0.ebuild 772 BLAKE2B f95da9c99ebe0b47519c2668d885234ac54eeebedd9d4ade7749ef1725ccd1e7eefd5d14d1529729a7459fc08c7ac1658cf91a72cbb429db7b1e38e57eb8b086 SHA512 10d79bf88c91f88c3fcb6c4563aba2acff009ce71571598e4ec003136dda3168935b38cfcee6917494fa42585f40ade187246426c9f220fd3a5198a720f9d16b
MISC metadata.xml 529 BLAKE2B 7abf3c24f3d80052095f3f53db3a3322f20ca712cc603f2fe3bf18c171eb91d3c755a272f050bfff581a3e2b550c049c49e7a46fb4a16815406cf4380a01c20f SHA512 46b133d2310039b9c2eb11c81cd088696c69075b946e3ddd99d0800e561e0386357d80abc3f7e1b828c4a4d81e5a0c5bc9fc2e37d9c7aaeba17c948e444ab20d

View File

@ -0,0 +1,34 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for a NET2GRID devices"
HOMEPAGE="https://github.com/klaasnicolaas/python-gridnet https://pypi.org/project/gridnet/"
SRC_URI="$(pypi_sdist_url)"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest