dev-python/tailscale: add 0.6.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-10 18:32:43 +01:00 committed by Andreas Billmeier
parent b90d4447c4
commit 3d47bef7fc
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -612,11 +612,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 1624 Ebuilds in total, 1613 of them have in total 1626 (40 different) licenses assigned.
There are 1625 Ebuilds in total, 1614 of them have in total 1627 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|945|
|MIT|946|
|Apache-2.0|329|
|GPL-3|96|
|BSD|94|

View File

@ -1,3 +1,5 @@
DIST tailscale-0.2.0.tar.gz 8274 BLAKE2B 5977f233ef440b5d614444c302b8aad7b440fd77eb04469ee26d2277260ccf3cb98969139e3181fb6656e625019f8208a25f6c48f1b9d9bac920777bb8eac921 SHA512 7ccde85a6d03c6812de5faa4146c291a62716a595e597bf529c2b65121fc4036901a2f9f3caca4c84a3cf553efba03db49e25c7e8672ddfe5f1d6b5b6dd5669f
DIST tailscale-0.6.0.tar.gz 7228 BLAKE2B 53791c49793a1e987e642a9f1c20d7ea198f2f2da30c4b2152607407177a108441e3a21161a4b5d65d9947149dbf05c369548e81ed14ffa13615fe6ea9a93524 SHA512 d2b1606a882eae6cdef30ae94686bb3c49f3b7bbab4b1b78b8be94494d822ff6995f666acda09793b3060d8f069d456a5ead7fa3f749123af0c4a19f1b52f1a0
EBUILD tailscale-0.2.0.ebuild 828 BLAKE2B 5267fd4b663a474f758f6c9f3cfe1f515fab2219bd3f82754c475c317a229eb8767ea400c26bab8bdf224dd8a14ff925ba4439dfccf417900451e9ae6b3b1422 SHA512 4fc150a608527666bf96cc67f4d0a54fe4a7b21cdde73e598f23bd01c099151ea07a13e2c02b42768879da53e4fb73a4a5ed76a1a9b67f317fde3886eab9f21c
EBUILD tailscale-0.6.0.ebuild 915 BLAKE2B 76b6a29945ed8d0690f7a9bead3d298e0d49ad85b30a21bf4c485ec9d1283c14bfd4a1dbfaef9bb87ed32f6faf4383302d5f18d5a401e6bfc089902d038bca63 SHA512 ea16d9bf6a6e8019f5db717b0892db2a6f75b257c31ca1b11b052ad0782c17c18bb5da20a70da2e01d60a02f3241220e17dfbe56fe83957986264adaf7909478
MISC metadata.xml 521 BLAKE2B 0d31885275f9c40b789f481da1da768d84fd0a2b9391cc60a27abba8c5abb776c63775d8756cf68a1296a557f1ec5fee673726b4df29ff51d81c1001a7f9404d SHA512 1111404fc710889d11131b88f9efeb26517e53e9bfa4554f4c0d32f297a647e54fa672fe0f9ca780c0362ef0f72783165b319c0bbb9a857ce934be978b5ef62b

View File

@ -0,0 +1,36 @@
# 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="Asynchronous client for the Tailscale API."
HOMEPAGE="https://github.com/frenck/python-tailscale https://pypi.org/project/tailscale/"
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}]
>=dev-python/mashumaro-3.10[${PYTHON_USEDEP}]
>=dev-python/orjson-3.9.8[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/aresponses[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest