add pyotgw-0.5_beta0

This commit is contained in:
2019-10-05 10:18:24 +02:00
parent e76b56efce
commit 89aba530e3
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST pyotgw-0.5_beta0.tar.gz 28492 BLAKE2B 73e775aee0ab4b0f1ae4bff85fd26d08fd3175c308e0fc2071babdcf0ea9c6d4a1f48916ca2398084bb801563b2c705283a3b133ec3ad60f33eba09d6c6158a6 SHA512 7dc3ab0e82abe95bb319bafab1dfb24ea85c2fe436cfb065f18397e6fc123dc7bc6121af187f25d9ba41c3325798ba1b5e21f6e6abbff5324d36544f2d5fbed9
EBUILD pyotgw-0.5_beta0.ebuild 824 BLAKE2B 2b5e18174bf269f015333fe8edb5d9dfafe5c21934c29248156bf00cebe92952ecd438f3bddde1660329d10f2a75c6c7885ce588dc263df49ffdefc52f121f62 SHA512 ae640997f3c2d984deffdcc7a6aa51333792a67d0e3ab0007d2a1759f10130a4762df2ce95f3e11f8cf9c60ddc7aace3405e3c869219c0f3dcf3da481f4cd0b5
MISC metadata.xml 462 BLAKE2B 426ebe41c6983b4e7995556bedaf55544bf6ac2ef94ec5aced12998cb4d5e57eadccd32a3e0b76dd4afb3ef7d045f6160bd06dc76fdbdbe32d0d3aeb61c80864 SHA512 22a422846e617c6ad48fe4bfeb9c3af940f4d00999d48d82fb14c9b60f64456193eb6df6a83ec9672a3672e9c2f1a815c8063ad11c2234638dfabc292ece127b

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">pyotgw</remote-id>
<maintainer status="unknown">
<email>milan@network23.nl</email>
<name>Milan van Nugteren</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,34 @@
# 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
MY_P="${PN}-${PV/_beta/b}"
DESCRIPTION="A library to interface with the opentherm gateway through serial or network connection."
HOMEPAGE="https://github.com/mvn23/pyotgw https://pypi.org/project/pyotgw/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="GPLv3+"
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}]
)"
S="${WORKDIR}/${MY_P}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}