cleanup pytraccar-0.9.0, PYTHON_COMPAT

This commit is contained in:
Andreas Billmeier 2021-09-02 17:00:19 +02:00 committed by Andreas Billmeier
parent 1acb7610ca
commit 71259510b4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,3 @@
DIST pytraccar-0.9.0.tar.gz 5616 BLAKE2B 487b544aa3912ef3863f7e76e33229478fccd60bdcf634a46137119a5d25215ea072de6fe7396c134c7995bdb28941295a34b2486df270051325186b23f380cf SHA512 12712e7073c8a16adaa23a8d8d98a03e885838b1dde840c2ba1ae9b699df1efb50f1c2f821f9b5109c60c93466b52fad1b0ff395dad250c88367fed9b1ed8cab
EBUILD pytraccar-0.9.0.ebuild 856 BLAKE2B 924b6fc12d262f282e095d3b9dc9383927c17a26bf237129a080b1ee62b3031eb55be3d8eedafb4e3878fe0a8f81c31c91ee115eddc6b47d6e056ad45b50c3f0 SHA512 ac4156fc79dcbbe9c6febb909979c92ad9d3b084e29a57b669d9b482f03552fea4d25723dcf8d3a9b535c81268414dca0d355de2d91284dcd9399b8361e44a3c
EBUILD pytraccar-0.9.0.ebuild 1076 BLAKE2B 06e150af4ef6dd101a5a4921c9e01fd554025c32dc9ead50403ec908a33b23b0ae95da8805ef05171bf6f03797ef7ffaa12994c16d9a727f5192702308a4f2f2 SHA512 1f30d7bce04d6d4f3a80ef54443c4b1249db2cbb45d596369459b42a8159210d6b7abcb99a5730cf2ff643a6d1d950b76eadc136fd78aa20e6a8a42499befa3d
MISC metadata.xml 454 BLAKE2B b1be78abd46f53316a99314f406db75afc3d02399aea87b5abba757bee8dd3de984bba42afea8a87845d7e2061f57fea7f48d04166aa76a449da3cd214c19a8d SHA512 9953047ec1e8b355c04c3383bc6a5f7dd7e790720b1730b609623230c8f82e7af81d0aa0b3945b36c84fa44bb7f7132f1bef988fa51377b3fa02540739003fa0

View File

@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@ -16,12 +16,18 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
DOCS="README.md"
RDEPEND="dev-python/pytest-runner[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/aresponses[${PYTHON_USEDEP}]
)"
src_prepare() {