add moehlenhoff-alpha2-1.1.2

This commit is contained in:
2022-02-26 11:55:02 +01:00
committed by Andreas Billmeier
parent 47f4725d02
commit 11a33136ee
3 changed files with 52 additions and 0 deletions

View File

@@ -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

View File

@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">moehlenhoff-alpha2</remote-id>
<maintainer status="unknown">
<email>oss@janschneider.net</email>
<name>Jan Schneider</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -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
}