dev-python/tailscale: drop 0.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 21:06:03 +02:00
parent fd268b9d3a
commit bbdad003b7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 3 additions and 39 deletions

View File

@ -1,5 +1,3 @@
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
EBUILD tailscale-0.6.0.ebuild 915 BLAKE2B 40f4b9c1c33ac74e8c91ba8bfc7c8648fcca9c517a0e5a60f05b3d892fe9d2dbbfb7449560f71646ec6cb332bcad3392ec196552e3bf9ef2df47904215fbe6ff SHA512 c1e2fafd9a78c6e35f66ad493415a374a22c3518b56ea65f2eb63cd899e77fe420af53c118cf6b6d25f4ec9a733c177397146d06c60d3deacbac9e19874101e6
MISC metadata.xml 521 BLAKE2B 0d31885275f9c40b789f481da1da768d84fd0a2b9391cc60a27abba8c5abb776c63775d8756cf68a1296a557f1ec5fee673726b4df29ff51d81c1001a7f9404d SHA512 1111404fc710889d11131b88f9efeb26517e53e9bfa4554f4c0d32f297a647e54fa672fe0f9ca780c0362ef0f72783165b319c0bbb9a857ce934be978b5ef62b

View File

@ -1,34 +0,0 @@
# 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/pydantic-1.8.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
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

View File

@ -1,8 +1,8 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi