dev-python/adb-shell: drop 0.4.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 16:57:15 +01:00 committed by Andreas Billmeier
parent 83fd8c294b
commit ddf254ab93
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 37 deletions

View File

@ -612,12 +612,12 @@ 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 1765 Ebuilds in total, 1754 of them have in total 1778 (43 different) licenses assigned.
There are 1764 Ebuilds in total, 1753 of them have in total 1777 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1026|
|Apache-2.0|375|
|Apache-2.0|374|
|GPL-3|110|
|BSD|100|
|LGPL-3|24|

View File

@ -1,5 +1,3 @@
DIST adb_shell-0.4.3.tar.gz 43940 BLAKE2B be32884e9d0f5e6cc12edacaede37c49e8165e95adf73a54cd3e69ed036cb55eced2f727ec9e757e81db1ee3928697f9fa8ca0bd4fe74164c17745ef65a85d11 SHA512 f6c1618d1cf2f8e3771c6675920971f44e1fe2d5db06e5d23bb3519002693f5b4a32dee7f5a07b25415bca03afce6329043b277d29eb30a9baf77f911d4a73b8
DIST adb_shell-0.4.4.tar.gz 61822 BLAKE2B d3670ed1aaaa6e907a97ae5206a95b5f6ddec0873b66b690ca877164f619f0c78e25a2ba7d6b2c9dcd1d8f1d1e4600724c5a377a2c3ec8508ef3224b6ff92236 SHA512 6eccab4ce7169e49d12bd1bc32bc5eb8ec28848a00dd3f4a3e89085bfa413e36198d6fdc8f8b7f05332b0c6e0ea7550fdf91632bc42d2a0f71c48bd116d60f96
EBUILD adb-shell-0.4.3.ebuild 910 BLAKE2B c6ad46ee878e6d82da9cdc9ad6d728d15ff2f800cb966017c99581fd631bb4011fe534b9e6d39387a2505e2d195f2cf90f1154edb7c0be6c653ef7706d128a18 SHA512 7a2550591c236e76855ae73986526b2d485a61a4278ed09953468b1d3e9189570052b2336b631e4a8242fc8d0dbe022e52aea184f2b7e60361fdcad9d8767d30
EBUILD adb-shell-0.4.4-r1.ebuild 910 BLAKE2B 86383b596258925ffba2db3fb0d49ea2598a3b7aaac93c0c2b1bb9d5e9024b9e32aa7850cfe6b00ebf7675e0472d1732386887f798484c3a4e791e9618d0d111 SHA512 444e4591c14fa5334fae6bc4bfcbabd9f49aa637c3cdac8475ca27c925b0fb1415bbc00650ac31b379ec82264dd5cac6a859b44e7f8152b072d3aa449539dc9c
MISC metadata.xml 529 BLAKE2B bcd617759d07b5b6d901f76ea98e63e613d3a5fef6cbe1c62b489e7e78c21f4c8ae950d58035b4e2c8999261faa44a62f155c46b00908547cba5c90e7033cf01 SHA512 2b2ef1784cf686ad00032fa3513fd10e3241bdf9711bcc2ec93593a33a0882c819053ed51727c003241c4852f80a8f61f253eb651b61b3535666773065d048e2

View File

@ -1,33 +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=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="test usb"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/aiofiles-0.4.0[${PYTHON_USEDEP}]
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}] )"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest