add rfk101py-0.0.1

This commit is contained in:
2019-11-23 09:54:43 +01:00
parent c4582f2c30
commit e3977e0a4e
4 changed files with 50 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
2019-11-22
* add rfk101py-0.0.1
* add pyicloud-0.9.1
* add pyialarm-0.3
* add Hydrawiser-0.1.1

View File

@@ -0,0 +1,3 @@
DIST rfk101py-0.0.1.tar.gz 2434 BLAKE2B 08d88f1f0153dfc9501a63d407f8171890094ccd1b3aaa2bd9123b61e510549dfacda1524295b1c4ca91f6693c43ab4ff8497f0b1501888f78b91c87d741fde7 SHA512 48340d646ef67f79be5203d6aeabeb6673b84159c4b1887b7f14d66a027a97402267047d77055ff98e886dd778174a2029060da9535dd313e500e3d291ea7fb5
EBUILD rfk101py-0.0.1.ebuild 671 BLAKE2B 45eb0d31123a19e480eb81538e38ccd65c5fceaca1d85b958d5e60138e176f769e7295d251abbf43f0a2c8a210f4dcb6755bc94057f10010c6485457e792d763 SHA512 5166a164ab6bee9f90ddfbb3686c7e6b5c94a4d60ce91a84fdd9d5329f6d865609036ec8187a3a89c47283e5ef1a3f0312c539f3bca8dfe1efbd6d8731f55ca6
MISC metadata.xml 458 BLAKE2B 6015c4beb12fdd3b11ec0a308ec02391e4d86292421081e3a88dd47f3611037b7cba7369e8799016e00572bbc7599fc8d5d413877014c37e9fca5675e7f75a42 SHA512 1674341c71c10b61ec65c6bdf1137e09850891e293267fb13a83a365cc971ed4f439dbae2bb76097b43f037e5ea09149de93be728ea9d9c5bb2a15a61e6e5391

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">rfk101py</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="RFK101 Proximity card reader over Ethernet"
HOMEPAGE="https://github.com/dubnom/rfk101py https://pypi.org/project/rfk101py/"
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
}