28 lines
910 B
Bash
28 lines
910 B
Bash
# 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=setuptools
|
|
inherit distutils-r1 pypi
|
|
DESCRIPTION="A Python implementation of ADB with shell and FileSync functionality."
|
|
HOMEPAGE="https://github.com/JeffLIrion/adb_shell https://pypi.org/project/adb-shell/"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 x86"
|
|
IUSE="async test usb"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DOCS="README.rst"
|
|
|
|
RDEPEND="
|
|
async? ( >=dev-python/aiofiles-0.4.0[${PYTHON_USEDEP}]
|
|
$(python_gen_cond_dep 'dev-python/async-timeout[${PYTHON_USEDEP}]' python3_10) )
|
|
dev-python/cryptography[${PYTHON_USEDEP}]
|
|
|| ( dev-python/pyasn1[${PYTHON_USEDEP}] dev-python/pysnmp-pyasn1[${PYTHON_USEDEP}] )
|
|
dev-python/rsa[${PYTHON_USEDEP}]
|
|
usb? ( >=dev-python/libusb1-1.0.16[${PYTHON_USEDEP}] )"
|
|
|
|
distutils_enable_tests pytest
|