From 11a33136ee6e312c29fa1c06953eea5bc2e63c1b Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sat, 26 Feb 2022 11:55:02 +0100 Subject: [PATCH] add moehlenhoff-alpha2-1.1.2 --- dev-python/moehlenhoff-alpha2/Manifest | 3 ++ dev-python/moehlenhoff-alpha2/metadata.xml | 15 ++++++++ .../moehlenhoff-alpha2-1.1.2.ebuild | 34 +++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 dev-python/moehlenhoff-alpha2/Manifest create mode 100644 dev-python/moehlenhoff-alpha2/metadata.xml create mode 100644 dev-python/moehlenhoff-alpha2/moehlenhoff-alpha2-1.1.2.ebuild diff --git a/dev-python/moehlenhoff-alpha2/Manifest b/dev-python/moehlenhoff-alpha2/Manifest new file mode 100644 index 000000000..aad917403 --- /dev/null +++ b/dev-python/moehlenhoff-alpha2/Manifest @@ -0,0 +1,3 @@ +DIST moehlenhoff-alpha2-1.1.2.tar.gz 16150 BLAKE2B bd83515070a06bab0f44caa225989bfc80d0aaaf18ab36707d1264b10d54d742bacc91db8bf1c9877c26e9152dff8358d47b0a190ed80507e2d8d61982813637 SHA512 1f979029fa7c70dd94c455d65cd4b7fc61b714424cf09bec46a654b4b9316d53431a37e21ec99a37540ad530a32e961d495480279c14e60471fc1219b2f9bc65 +EBUILD moehlenhoff-alpha2-1.1.2.ebuild 882 BLAKE2B c99859a3dca19643d006b41557a016888540b79e200bc341cb1428931293d31908035b85222d19f53f6ae41f09f63fd5ee657a5f995e02a72288d4d9a036953e SHA512 3874eb6dfdb88756111166ffd7ae28a0bac1f3dbc35c708e5a7938a33e79bca4a1b6f5297ae8d0403adfeefa0646a0fe54c216197cd966253987f5f7287b78eb +MISC metadata.xml 464 BLAKE2B e82bca37160a1a2355de7c81b2802b8f2e2101e9f3819e0113f12b0741db8193d2569c19670e447345f35adf088652e4ba03bb72bbc6d16f284c6d18e0913011 SHA512 a729c0cff594eb7cd77f787d2abe926e76f217c272342874c5704c73ca4c5e276f783d9edbe41b4b344bf86db0e82048f38cbdbccd992699b73e1f73c29d9ec2 diff --git a/dev-python/moehlenhoff-alpha2/metadata.xml b/dev-python/moehlenhoff-alpha2/metadata.xml new file mode 100644 index 000000000..d0e289841 --- /dev/null +++ b/dev-python/moehlenhoff-alpha2/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + moehlenhoff-alpha2 + + oss@janschneider.net + Jan Schneider + + + diff --git a/dev-python/moehlenhoff-alpha2/moehlenhoff-alpha2-1.1.2.ebuild b/dev-python/moehlenhoff-alpha2/moehlenhoff-alpha2-1.1.2.ebuild new file mode 100644 index 000000000..615c66fac --- /dev/null +++ b/dev-python/moehlenhoff-alpha2/moehlenhoff-alpha2-1.1.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python client for the Moehlenhoff Alpha2 underfloor heating system" +HOMEPAGE="https://github.com/j-a-n/python-moehlenhoff-alpha2 https://pypi.org/project/moehlenhoff-alpha2/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="README.md" + +RDEPEND=">=dev-python/aiohttp-3.7.1[${PYTHON_USEDEP}] + >=dev-python/xmltodict-0.12.0[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}