add python-eq3bt-0.1.11

This commit is contained in:
2019-08-17 08:04:12 +02:00
parent da3da8445a
commit c241a304b9
3 changed files with 49 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST python-eq3bt-0.1.11.tar.gz 9498 BLAKE2B ac2f5fc52a4a2232905db4e00f6f078c253fb41870af0d4912a2b543d5da9286f77f1a41cd2b276e34045f97d29aeedacd7d2ddf2d5605b69cc091aaaa66f66d SHA512 0b10e12141c938026297c9b7bd039933ff06921b0ecd897d1de1aa6090ee7e985dc8aab9eeaddce24311d0fc07da5eed4ab615eb3c6eed7c32611fa59d9f2714
EBUILD python-eq3bt-0.1.11.ebuild 724 BLAKE2B caa87fd95ced6ce6d0345fd43127958e7fb4953bf1a10e459cf0d3e5c2e556a4ba0070bee3c800f9f48cab933288e7626200c4b5d5c190711842c78c69567e59 SHA512 390ed32a682b5abd8304c26ed9ce795f4fe2683ba19aa742f7ae314d5cc06ec386a9de0c9c793726f9879d6f3766bcbc6486d6e040ac63a05788b7fd7b7419cc
MISC metadata.xml 457 BLAKE2B dd45a4be538e201a27f430b9c2f07d5f472cf1c2e0e6051eb22c73bc3ec863524657e816a72ceb084a5c8f2ce2e6665c1f5599a6003aa20126090391440ef055 SHA512 bb0802cd1aadc314c745d80b55bb182cdd2e014427a2f04b44d3a84a71fe5f5bcca81862a67d062cb1057857019e7999f9f3bfa8c30cb1f47604f7565fbbb716
+16
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">python-eq3bt</remote-id>
<maintainer status="unknown">
<email>tpr@iki.fi</email>
<name>Teemu Rytilahti</name>
</maintainer>
</upstream>
</pkgmetadata>
@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="EQ3 bluetooth thermostat support library"
HOMEPAGE="https://github.com/rytilahti/python-eq3bt.git https://pypi.org/project/python-eq3bt/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
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
}