add pure-python-adb-0.2.2

This commit is contained in:
Andreas Billmeier 2019-11-17 22:32:23 +01:00
parent 12f448caea
commit 2bf6009c37
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 43 additions and 7 deletions

View File

@ -1,11 +1,12 @@
2019-11-17 add new use flags
* axis: communicating with devices from Axis Communications
* bitcoin: displays various details about the Bitcoin network
* blockchain: displays Bitcoin wallet balances from blockchain.info
* enocean: Support for Enocean devices
* hkavr allows you to control Harman Kardon Network Receivers
* influxdb:transfer sensor data to a local InfluxDB database
* maxcube_hack: apply temporary dirty Patch for broken maxcube-api implementation https://github.com/home-assistant/home-assistant/issues/28811
* axis: communicating with devices from Axis Communications
* bitcoin: displays various details about the Bitcoin network
* blockchain: displays Bitcoin wallet balances from blockchain.info
* enocean: Support for Enocean devices
* hkavr allows you to control Harman Kardon Network Receivers
* influxdb:transfer sensor data to a local InfluxDB database
* maxcube_hack: apply temporary dirty Patch for broken maxcube-api implementation https://github.com/home-assistant/home-assistant/issues/28811
* add pure-python-adb-0.2.2
2019-11-16
* bump frontend-20191115.0

View File

@ -1,3 +1,5 @@
DIST pure-python-adb-0.1.6.tar.gz 2651642 BLAKE2B d75bf0452a88c183c9ada1e1b3cb24e772b2990d913fb944d6ffab3f8920731e066b0b5d154f9e02210ea6ab9c962e56bfbe94894413c2cbe45a68f4d521ff36 SHA512 aac9d30ea4c97ffe110f17b5263b6aa44341d26e9842c89ae92af2490460be6af72e0d1ee18ce896a0c7b80355927d79e759a4f106926a67476f51895b41ce92
DIST pure-python-adb-0.2.2.tar.gz 23104 BLAKE2B 0b9fd18727773dea2c94de78b7338e7f6d260cb9feaeb77e79365da086bd615309bc4462bee971fbb6564acb876ebb533c7f46f4f20833ad2e3681f833c0ee3a SHA512 298f45c49316b0f3dff5ae0b89e51ad222cfe6bb10c79bf54114a980a80e41eb7a6a204cb03f43b6360b69751ae75de455f6487155f4e06fdf012756fadbc0da
EBUILD pure-python-adb-0.1.6.ebuild 755 BLAKE2B 4b153b3aa52a7639d7c36d8746e211e3ad5e9ee5de8c1c80a12d359e498e59934d09b80487c4d7a360328023e112159136b2a7c782924a94f8279c94564a58f3 SHA512 de1c1aa2073137268e6592942835f665627f209e9ee9e6c0a9b324d76bf612326507da1155fd8a4820979d082bdaac2c626a4e58e898af14831162e856a2e41b
EBUILD pure-python-adb-0.2.2.ebuild 829 BLAKE2B 54e605bd059b46955ad1e0965bf1c5033e3a68eb2a1ea1288ff2a40edaa69946e3d5d0b95199f8547fcf3e7f5d1ee4c5a8933087e9f529fd9b6337ba54300f2d SHA512 ff06804ddc147a609b80430f7ada3db3d5c870c570efb653ca96ef6a0f097d233a531acafa629134f4abf2a224cca878f27bccf842a2cda87bc8d9300bf6c5a9
MISC metadata.xml 462 BLAKE2B 5cb5f8acd19ae7988bf57268dd2a7ddf2e112e392c053f3456467ec3248df736261959396e0d0b4bf58303630ded3aadbc6cc7e457efb1e02cd1c36a965d9be8 SHA512 69edf4443d4641ed1279b8005e5ea4dcf91bdb20f55e80822411fb8024d58f136b146d4c0a3f0f36d92e4d06a1191c5dce530f3f0324ce8838274e4373de35f8

View File

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Pure python implementation of the adb client"
HOMEPAGE="https://github.com/Swind/pure-python-adb https://pypi.org/project/pure-python-adb/"
#SRC_URI="https://github.com/Swind/pure-python-adb/archive/v${PVR}-dev.tar.gz -> ${P}.tar.gz"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.dev0.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
S="${WORKDIR}/${P}.dev0"
RDEPEND=""
DEPEND="${REDEPEND}
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
}