add screenlogicpy-0.2.0

This commit is contained in:
Andreas Billmeier 2021-03-20 08:17:43 +01:00 committed by Andreas Billmeier
parent 58027b595e
commit f4c6dc1167
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* bump bellows-0.23.1
* bump youtube_dl-2021.3.14
* update ha-philipsjs-2.3.2
* add screenlogicpy-0.2.0
2021-03-15
* add a copy (from main repo) of acme-1.11.0, still needed

View File

@ -0,0 +1,3 @@
DIST screenlogicpy-0.2.0.tar.gz 20380 BLAKE2B 6fcaaede07260fa88fcac2579f732537da6b9d9e747d2816ae4fe19bc47e23c1673b6705dfc87d108b29b82e40f0a6759049a9bafc9872bc4fcbe702337a931d SHA512 cbeb479683083aa4f8ad13ace699ba2eaacedfbdaddac095140b9cd6e0d0df94378142f289eb2049bed486621f3fea617d0bb89b6c2078015914ca621e445c86
EBUILD screenlogicpy-0.2.0.ebuild 747 BLAKE2B bd2d728ceb136b41698070469dea1998fee17249a20214dac8ce71bab554f2eb810815b77eefedf216c87a526ed86cb19cdc5fe0897c32bc54711feea7119d2c SHA512 f04a2947c7de414ed1154333955d71ed08af865482b4d0719833d9bdbf700fc495229fad7de35eedeb631f2b4b4f7a5070d86933373b8f5ce75c546087ebc799
MISC metadata.xml 459 BLAKE2B 99248ad35642b96913be8f53e637fde323f3409e3573308dc2f50055560171e0d4a27bc61e87b55faf8a580c6403e503c99af7c437986ce6647132f8023af432 SHA512 ed3a7c57ae486622b04545db068578857178611a3ee883ed88ec10f2c31afbf6aaff3b8dec6ada0755d7e7a26457f952eeb1e9a4b90577600cf81027286a3f59

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">screenlogicpy</remote-id>
<maintainer status="unknown">
<email>kevinworrel@yahoo.com</email>
<name>Kevin Worrel</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Interface for Pentair ScreenLogic connected pool controllers over IP via Python"
HOMEPAGE="https://github.com/dieselrabbit/screenlogicpy https://pypi.org/project/screenlogicpy/"
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=""
BDEPEND="
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
}