add numato-gpio-0.7.1

This commit is contained in:
Andreas Billmeier 2020-04-30 23:01:50 +02:00
parent 93030ea690
commit a314508bf8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -14,6 +14,7 @@
* bump python-synology-0.7.3
* bump tuyaha-0.0.6
* bump nexia-0.9.3
* add numato-gpio-0.7.1
2020-04-27
* esphome-9999 re-add beta flags

View File

@ -0,0 +1,3 @@
DIST numato-gpio-0.7.1.tar.gz 6866 BLAKE2B a63634e6a75d3bc330c360b748e0eba79d26a3555b794c9d47e7b125ff0226087832f2a4b5135eb66790aeeff90e386aface2aefe1063688028bb71ade1cd6ee SHA512 a39dc4cdc08714a2c65477b503e13996ad8547de4d69d518571e9449ff9cdc55cb7ff22c976edaa72f91ad29cc42d4fa41e56dfc1f02fa3e016a517114e62fa3
EBUILD numato-gpio-0.7.1.ebuild 723 BLAKE2B 7cea59bfd749291971ef8f742aab743050748e5f10d5af0d5c400d1c37651ee587289b2da71687f801f120e884850521cfc956c50a23d3f00d905596cf56df0c SHA512 11007eb05fcf0d0480ddb9cec8cdd722ee59f013c36112fd09698b852efea9815551a6f0870d0fda690759c294db69542e9b51ced9638f53e3496375b080f35b
MISC metadata.xml 452 BLAKE2B b160beff69295ad0dfd0701bfefe3801262444db3d8879dac8d0070762513dda36a1f4c4b67d7e2b6f8e650a0735b290e3c0439e7d0cf7a21f22e51d28e108ee SHA512 4db250e87841ff4e113f4528a6bef181a48579322528e9588eeec6ac71241cb34eb926326dad385b9cd1e0a9567fd41fcd3e93747b96eaa5ad74b2a326eaefb2

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">numato-gpio</remote-id>
<maintainer status="unknown">
<email>code@clssn.de</email>
<name>Henning Classen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python API for Numato GPIO Expanders"
HOMEPAGE="https://github.com/clssn/numato-gpio https://pypi.org/project/numato-gpio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/pyserial-3.1.1[${PYTHON_USEDEP}]"
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
}