add proliphix-0.5.0

This commit is contained in:
Andreas Billmeier 2019-11-23 22:17:27 +01:00
parent 5d4efb5c2c
commit 02f2662f55
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add proliphix-0.5.0
* add prezzibenzina-py-1.1.4
* add pocketcasts-0.1
* add plumlightpad-0.0.11

View File

@ -0,0 +1,3 @@
DIST proliphix-0.5.0.tar.gz 17274 BLAKE2B 316cc05cb5d63ae02a6e10db9bfd29e328d07ab8aa81b57d8ea4136369c92229cefe9faf0b1e0f8eca9cac63d95cffb88485d4eb03c181ec60b42d06f78eaae7 SHA512 a552cebd6b1f94484d3e480780c1c7d5d3fbcfae36d7f00a6f954c47f54f116e7e116bd9a0ac30faa9f9443e35a7362592d3974652f08396a8aac3308d5a0f41
EBUILD proliphix-0.5.0.ebuild 754 BLAKE2B b1a70a63155e838a26900eff837032acb3ec3ac75b7a708d9877957898f2a6a12311dc6e94627084282548bdbd6787df565c8ef2ac2f7ce04f19956070df551e SHA512 74a82bc4db53ea50db85b12a4340fc648caa62e4024369ea1ad24b7e105e1ef20852ffc6cceda2f65495a64ecbe9ffe650c2fa471cfcc8597494799696cb28c3
MISC metadata.xml 453 BLAKE2B bd8168da30aa999089389bbfb0f59cf95a22f2828a044eee11da82991dde568a4021f686f31e888a200510083516129e9cc4eb92124959f9dee1da644a12cf6d SHA512 c3b6e3f1d3ba883a6a9c6b56b295383aa1244c3b15c99595275bb5a3d60c4837cadbdaa27d0c4b8fcb9b759e9edb988a5bc58dea34c6404718ce94dec0580c50

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">proliphix</remote-id>
<maintainer status="unknown">
<email>sean@dague.net</email>
<name>Sean Dague</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="API for Proliphix nt10e network thermostat."
HOMEPAGE="https://github.com/sdague/proliphix https://pypi.org/project/proliphix/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}