pyhomeworks-0.0.6 aded

This commit is contained in:
Andreas Billmeier 2019-11-23 09:28:39 +01:00
parent 7860ea4f34
commit 9a51c53222
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add pyhomeworks-0.0.6
* add HAP-python-2.6.0 and tlslite-ng-0.7.5
* add hlk-sw16-0.0.7

View File

@ -0,0 +1,3 @@
DIST pyhomeworks-0.0.6.tar.gz 3118 BLAKE2B c47f8f23998c2f716c167f10469d07c2fbf90e635cf6a21d1f8f5c09057246e354606359d9ac492f457487812367125e1b3825756bc54b397d832219c923b21f SHA512 76f2ea064bd22f19ca69647db68213c6c6f975d05a0021faa33911ac1590ae33a40899ad8b3b5e6421f2ab48b83c590432a6739cbc37c74e46cac4e34316c8a4
EBUILD pyhomeworks-0.0.6.ebuild 690 BLAKE2B efc4117ebfa1e9dc0c91fccc107f3cfaf50361d216a149336659e9d13543933d284ea1b891be1c7542237fc136a32b0e63a9882a4b220126ec4656ef35578e9e SHA512 df0fedea7b8f58d1369bf0b0ed39147cd0b14588e69e2a02c269fd9503057e94695804110529a5b550a23894811a8705a16019189682f3b8181436146a276be9
MISC metadata.xml 461 BLAKE2B 0bdfc1b4294b7eb28218deae77562af22c1040effca6efc3d21225ddf6cbb7556d444502421c057376d74ebaefd5e6863483c7d40ca78948f2107ae946bde625 SHA512 1a3d16aa77d4b5d472dc4a39498ae9c5d063468db415611b09be2fa52e0975f12ee5372cd5d0f807d31d03a5740e1c4365a18c0f2b46b333092e052accb6c802

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">pyhomeworks</remote-id>
<maintainer status="unknown">
<email>michael@dubno.com</email>
<name>Michael Dubno</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# 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="Lutron Homeworks Series 4 and 8 interface over Ethernet"
HOMEPAGE="https://github.com/dubnom/pyhomeworks https://pypi.org/project/pyhomeworks/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
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}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}