diff --git a/README.md b/README.md index ce99cf7c3..a035bc676 100644 --- a/README.md +++ b/README.md @@ -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 1957 Ebuilds in total, 1946 of them have in total 1970 (42 different) licenses assigned. +There are 1958 Ebuilds in total, 1947 of them have in total 1971 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1125| +|MIT|1126| |Apache-2.0|439| |GPL-3|114| |BSD|113| diff --git a/dev-python/tailscale/Manifest b/dev-python/tailscale/Manifest index f5473eb2c..f039403dd 100644 --- a/dev-python/tailscale/Manifest +++ b/dev-python/tailscale/Manifest @@ -1,3 +1,5 @@ DIST tailscale-0.6.0.tar.gz 7228 BLAKE2B 53791c49793a1e987e642a9f1c20d7ea198f2f2da30c4b2152607407177a108441e3a21161a4b5d65d9947149dbf05c369548e81ed14ffa13615fe6ea9a93524 SHA512 d2b1606a882eae6cdef30ae94686bb3c49f3b7bbab4b1b78b8be94494d822ff6995f666acda09793b3060d8f069d456a5ead7fa3f749123af0c4a19f1b52f1a0 -EBUILD tailscale-0.6.0.ebuild 915 BLAKE2B 40f4b9c1c33ac74e8c91ba8bfc7c8648fcca9c517a0e5a60f05b3d892fe9d2dbbfb7449560f71646ec6cb332bcad3392ec196552e3bf9ef2df47904215fbe6ff SHA512 c1e2fafd9a78c6e35f66ad493415a374a22c3518b56ea65f2eb63cd899e77fe420af53c118cf6b6d25f4ec9a733c177397146d06c60d3deacbac9e19874101e6 +DIST tailscale-0.6.1.tar.gz 7168 BLAKE2B 67361fb156ccb1c43db88e31c5cf7677b3e883ff5a17c9bfa4806c8f8d72ae676c08bcbdb71582d60307e8689166df780bb9fb040c6a138f78098eebb65a82fb SHA512 951167bcade7fc913c61ccaf84e0ddcd58eb84e360656d0c94c2592d811fb23387cb50b2941c21837edb8baccd25171e7c1c05549fecef1f79143cfd8cca5434 +EBUILD tailscale-0.6.0.ebuild 915 BLAKE2B 4b13ab2e8bca00783efc11b43f438b19c3dae2623fafd3089ac63bf1a57cabc06298cf6896e0f8e1aa1dee4804ffadf1fb7ce1ed288b1451f9722b845c85ca7c SHA512 7c7319ed0b8fead125fcb18c2e80602df28cbc05b8cbe620c54123e8e4731be9870846d9e096189568461f8928cc93704eda00d0eb5cefe22adf25a91adee886 +EBUILD tailscale-0.6.1.ebuild 836 BLAKE2B f2f0e7afb64fcddf918d4bccbed855aa26b07a19a92e429e1b67c304717a42e7647f3897ec96b74919441e56849b9de87a82f12dace0e57e2c5b597147f13ccd SHA512 fbd78bc6a98f8c3fed2ad8c9508da108aafae3ba1f187d36cc2d9f4caca2dd5514d55dfbbd452a30e732e75612cd34343b69dbfea1c0f37346d2ab111b800ce2 MISC metadata.xml 521 BLAKE2B 0d31885275f9c40b789f481da1da768d84fd0a2b9391cc60a27abba8c5abb776c63775d8756cf68a1296a557f1ec5fee673726b4df29ff51d81c1001a7f9404d SHA512 1111404fc710889d11131b88f9efeb26517e53e9bfa4554f4c0d32f297a647e54fa672fe0f9ca780c0362ef0f72783165b319c0bbb9a857ce934be978b5ef62b diff --git a/dev-python/tailscale/tailscale-0.6.0.ebuild b/dev-python/tailscale/tailscale-0.6.0.ebuild index 69bc5aa73..e1f63a1f0 100644 --- a/dev-python/tailscale/tailscale-0.6.0.ebuild +++ b/dev-python/tailscale/tailscale-0.6.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{11..12} ) +PYTHON_COMPAT=( python3_{11..13} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 pypi diff --git a/dev-python/tailscale/tailscale-0.6.1.ebuild b/dev-python/tailscale/tailscale-0.6.1.ebuild new file mode 100644 index 000000000..f018119f8 --- /dev/null +++ b/dev-python/tailscale/tailscale-0.6.1.ebuild @@ -0,0 +1,31 @@ +# 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 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-cov[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest