add temperusb-1.5.3

This commit is contained in:
Andreas Billmeier 2019-11-24 18:11:53 +01:00
parent e92994bd36
commit 5f553f6569
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add tellcore-net-0.4, tellcore-py-1.1.3
* add tellcore-net-0.4, tellcore-py-1.1.3, temperusb-1.5.3
* add pytautulli-0.5.0.ebuild & pytautulli-0.5.1.ebuild
* add tahoma-api-0.0.14, tank_utility-1.4.0
* bump python-tado-0.2.9

View File

@ -0,0 +1,3 @@
DIST temperusb-1.5.3.tar.gz 19983 BLAKE2B 09db940f45f3d75a4d9fc8a0468bbfa1da2e5da5d608d8551dad39927e762d4dc0349bceec020c51aea0ee4a2382cd83648944f7921fe3a7e04d3875b161784a SHA512 99b60956b9923eb342727d500dddc6b14637e57851fa4564a2d8d9df9fd22c85d444d36830cb72d511273d311d782ef4f22a11b91e14620b1a9cb7e0c9de432a
EBUILD temperusb-1.5.3.ebuild 726 BLAKE2B 52c6dc2b67009e3b2ce450d5e764c4572a7fa742df2fa69d0f6f08c9a4ef2c411df6845f96a5e9a81c9277824866cc49e62f7d69f7d8078eb56c29131503fc05 SHA512 1ce15abd7b8c876267b284ab9d4da026d9444b72dbfd87885aeef36c4c2823fcf4b0047604e2499721f30be745dcf532683fa66751568c6f151907190199e410
MISC metadata.xml 475 BLAKE2B ff328c2b68a5fa5a50f021d2426e4f999fb4798f67cd8a27bce7b3b5dc45e1d1b2b9693342cba9fdc8c047d3edd30cb9f3665b54480f239edefad9d0954d612b SHA512 56015cfccfb96dbfc43f6da305e7a39d68689a3f8afb176e6e34e73ba732d73ccc9a9368def37afb7c601780c39d44c221ff0f392f4bc9609e26e417a6cddd67

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">temperusb</remote-id>
<maintainer status="unknown">
<email>autosort-github@philipp.adelt.net</email>
<name>Philipp Adelt</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Reads temperature from TEMPerV1 devices (USB 0c45:7401)"
HOMEPAGE="https://github.com/padelt/temper-python https://pypi.org/project/temperusb/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pyusb[${PYTHON_USEDEP}]"
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
}