dev-python/adb-shell: rework, remove olds

This commit is contained in:
Andreas Billmeier 2022-10-15 13:10:30 +02:00 committed by Andreas Billmeier
parent fe430e10bd
commit 3649330379
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 5 additions and 84 deletions

View File

@ -538,12 +538,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 1709 Ebuilds in total, 1702 of them have in total 1714 (35 different) licenses assigned.
There are 1707 Ebuilds in total, 1700 of them have in total 1712 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1021|
|Apache-2.0|329|
|Apache-2.0|327|
|GPL-3|103|
|BSD|98|
|LGPL-3|26|

View File

@ -1,6 +1,3 @@
DIST adb-shell-0.4.2.tar.gz 42194 BLAKE2B aa7e012150973b736fef60f47ed88116c936d484506828d09ee8f278e2f5c136855cf2b87902d0c737d735a2dec8f41cd67c489e97030a9c949c1825bd40137e SHA512 257fbc9476a3ba56fa455ef205411da24a24e2c5a8afa899242739a7998bde5fae17c91eda03e0f60d03b0120d20d6cda0eeb47e1247b606e9ac17595119cf60
DIST adb-shell-0.4.3.tar.gz 43940 BLAKE2B be32884e9d0f5e6cc12edacaede37c49e8165e95adf73a54cd3e69ed036cb55eced2f727ec9e757e81db1ee3928697f9fa8ca0bd4fe74164c17745ef65a85d11 SHA512 f6c1618d1cf2f8e3771c6675920971f44e1fe2d5db06e5d23bb3519002693f5b4a32dee7f5a07b25415bca03afce6329043b277d29eb30a9baf77f911d4a73b8
EBUILD adb-shell-0.4.2-r1.ebuild 1060 BLAKE2B 6a2360da24b3df0d804b110a368633a4c6d382b49c85fcbd9987a0443cd96f2110ecb507b12c7a7a0d217a8d94e5078e2f368fefb163c8e08677e26ddcab308b SHA512 1adb14d6f1620e1e64fb20d8b796d2aaa4d95bc591746f85c990ae0785c3cae25bfb8416988cf4a83486c4498ef7d2e12b5332d8f90e713dbd7a195f919cfa76
EBUILD adb-shell-0.4.2.ebuild 1010 BLAKE2B 3c8fd61d046ec685c4464447d75680cc31a8d8998b66b34c89dd1680b84f78c6c5590772e9e33162556576f43ee1939d3503005e415491a3e5a29743d0f03eb6 SHA512 cdf606b753aab6bb88f2c5c47b1a27da9b31b1d9a8bac75074466d375b6a7cef20a81991a5380bccd82d9826b7880518f5e7b9937cfa5eb7b1a0ec5b748c25d1
EBUILD adb-shell-0.4.3.ebuild 1060 BLAKE2B 6a2360da24b3df0d804b110a368633a4c6d382b49c85fcbd9987a0443cd96f2110ecb507b12c7a7a0d217a8d94e5078e2f368fefb163c8e08677e26ddcab308b SHA512 1adb14d6f1620e1e64fb20d8b796d2aaa4d95bc591746f85c990ae0785c3cae25bfb8416988cf4a83486c4498ef7d2e12b5332d8f90e713dbd7a195f919cfa76
EBUILD adb-shell-0.4.3.ebuild 1091 BLAKE2B c049bc59f1b1096ec2464d544b8a8f9e2c283186da605460d8175397906b6c9bc5e28bd4adca580948cdb4e37951f0f7b9d17abf79e1a0722dd9c63d1431ea79 SHA512 30ab05837e6684476cf80fb63ffbc89c17a893b094533a497d6cf0de971012e648d16b4f48c90fa0f38a541dd80ed2bdf4808a5b80929f88e4150e0310dc1635
MISC metadata.xml 467 BLAKE2B 574911fb0e27e21325e713b4b0b483536ad1492156771a1697cf620f4fd535ef8c0bce8c60f3f7ce99cce656067476c52fd1d815d4a1ac3e364cddd3770b8cbb SHA512 4115068f65ad55e12cf1827ed162b8f2a820a1ec7f7ce767604e2d0c71abf20a128fd1705a70b314da8b0b7b7aa368800a683169fcbb46b661bcb41343ce3d99

View File

@ -1,39 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="A Python implementation of ADB with shell and FileSync functionality."
HOMEPAGE="https://github.com/JeffLIrion/adb_shell https://pypi.org/project/adb-shell/"
MY_P=${PN/-/_}-${PV}
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/${MY_P}
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="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -1,39 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="A Python implementation of ADB with shell and FileSync functionality."
HOMEPAGE="https://github.com/JeffLIrion/adb_shell https://pypi.org/project/adb-shell/"
MY_P=${PN/-/_}-${PV}
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/${MY_P}
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/rsa[${PYTHON_USEDEP}]
usb? ( >=dev-python/libusb1-1.0.16[${PYTHON_USEDEP}] )"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -37,3 +37,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest