cleanup, add new Python Targets, Letter 'A-C' all Integrations

This commit is contained in:
2021-07-16 20:27:23 +02:00
committed by Andreas Billmeier
parent 79cd170b33
commit 34f518b7f4
60 changed files with 99 additions and 501 deletions

View File

@@ -1,5 +1,3 @@
DIST pycomfoconnect-0.3.tar.gz 18897 BLAKE2B 7c369f5fcf24e36f0dcd785a4fcb8f3c95cf9f1e24138b048ec3d01a9868b24185e90e381b52583bce015763c39d9bce47b7e634f9cf6ed7151db9b62476b9fa SHA512 f29b961d4572100ac1d672a59813e99e184e390356b83201b3112f0a887d499d2e4870855ecb858dd952573b5370562714b6f1c3ce3bf66ba382afd93d63c245
DIST pycomfoconnect-0.4.tar.gz 20140 BLAKE2B c288f9974c9d4aa3a5618a16bdd4860316c995e1e3972c51b2fe63cb38da57c0d489219ced961a3523d3b338111a3ad493f17997b5af0141d34460d063dd922f SHA512 c5e42a445b47efd9a3a08d447497b78d4bb14f2fce269cf670fc6d65f5919ba4888b7fff3325c76684139589e58f23db0ea042118616ccb552b9f3d385866382
EBUILD pycomfoconnect-0.3.ebuild 772 BLAKE2B 091ff30dcc8dfcbe03f677ece07d058a73e943592fde87dac147a49f31e13a7b9835c9bfaecd7158a1149b6301d3aaaa70a455bb576f4cb18fb2c3b0b2b2797d SHA512 c0c7478785db12671903581298102d126c1fa5ce82f8747fdcc72646ac4daf1f235dd63e059fbd14b39981f10b4e54fcc67c2c5ed10576ea064a24fde72986bb
EBUILD pycomfoconnect-0.4.ebuild 780 BLAKE2B 7b138491b4585fbe3d60dd2e692561fc2e845db75d2fb7ed58d9a5f3e444aad9af72a507a9bb8c06d1497fd668cd452a31f991aa9ba381239287380c91dd3901 SHA512 f6b31626c728e2ac00e4ba89e709092d64ebd792b84a700e1bc657888dc97ea432a4404dd82036fc9dbad851769f24b8af4bae5280baf9fee0cb7d70cc91c86a
EBUILD pycomfoconnect-0.4.ebuild 781 BLAKE2B effbfd69d198c8debf64ad56282200a8849a54f11be2a049aaa5ad8d8de1b49ed81124a7e351b8887ca3508e2e7322d317dd9bd2ea3431c684e8391bc8ad7f64 SHA512 d22bf58cbcf4b4114c0991165b07608913e1b47637223d66e062f4e8af9addaf66bed42a47b67336fb3a803e2b71d911dbbab69b5d73997b2550694de57c556d
MISC metadata.xml 468 BLAKE2B 3136bb9a62bebf4f922cbdade9ef5dda581bcafc9d12ab11ec15211462b0259559626545b333f2d620b398c3704133ecd507de5ddfe50dbbcccab06911da2434 SHA512 f8593bf5df329c6be5dc7880a0a9d307c78f9e9b92f8c3b0cbd0c3bb90e895da822cd2f87bf8a3e4ae38c4d7d4f15cfcdbeb9bf8eaa8a2f8ab6095ab107775ba

View File

@@ -1,30 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python interface for the Zehnder ComfoConnect LAN C bridge."
HOMEPAGE="https://github.com/michaelarnauts/comfoconnect https://pypi.org/project/pycomfoconnect/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/protobuf-python-3.0.0[${PYTHON_USEDEP}]"
BDEPEND="${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
}

View File

@@ -3,7 +3,7 @@
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1