bump pyobihai-1.2.0

This commit is contained in:
Andreas Billmeier 2019-11-16 11:12:18 +01:00
parent c3b9eb3d35
commit 56cdbb27c4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* bump pylint-2.4.4
* bump astroid-2.3.3
* add pyombi-0.1.{5,10}
* bump pyobihai-1.2.0
2019-11-15
* add aiobotocore-0.10.1

View File

@ -1,3 +1,5 @@
DIST pyobihai-1.1.0.tar.gz 2349 BLAKE2B 019e52f0eba859cd7555f82891baef9333333554e8dd0f9d43d29f5ebaeab2a0830d8c045dbb57ae1f7a188069c805628dc4875c27259d817af0b2b5e2f378a4 SHA512 625486170ac5c7e924a43e5bb972184ac52c243be5925eee448bed74e29257194ebae53b05f75e6d81c107a9ad6208f36791350aa9682984c5a0e4a1b54db33f
DIST pyobihai-1.2.0.tar.gz 2472 BLAKE2B d1a8ff86b431c2bca0ad978ad67e17539d6679c65aa6a93af62d85c74b986d95b566741e3df012ae321157da1241d6cbda3addb3c0745112fcce3b1487a66835 SHA512 08b96debff393460485eaa7b53cdfb8d18fcda33cf9633c686189a0ee9038b0fb8282e56b4f7d741a1df0000356a8028c70d91371fbbb4e99360ae434bd7761f
EBUILD pyobihai-1.1.0.ebuild 661 BLAKE2B 5608b900cd009aa4acc01da5c489e7756b82c90a5ddb77236ebfd5b78426eafb4c176d79610a8e2df164e34b8665dbb4fe43c3b4365715e0d9f78135f66c829e SHA512 62020826c132a385194a629f94dfd3ed7da2e717e1b26b05c375c41704e43bf3634eb3d66fccb5709e8e436b839a0fdce79d7b0a04a30561a3c322af7094d584
EBUILD pyobihai-1.2.0.ebuild 659 BLAKE2B 3afd8989491762ac02d309e5931d9c843fd2280b134190b4fdd4fe1900384a5d40983b3aeffa5baf29c60b716a09cbbf378593c39382706e6734835a4d435f04 SHA512 7b7f46c3c123725c5b975a546e6c4a01c31d97c72352829d5f0e15fd19c6daadfd2e0911854d1c5f70b32b088155b7519a2fc7c521ee2da91e8b58d76dbb621d
MISC metadata.xml 462 BLAKE2B 8d558a3be16d0ab7fb1c87936d468e771d944a97c7314923fa785a883232eb26b0307f774079cf02be48a219eb1618dd345046b568ed826ee721d5dbea4b046e SHA512 24e4a9ffd54397cc638779934c12a9f01bb97e3e07e63ce7b8b305b0453ed35ec7a4a657e9ecc652923f348022a04b04c3c5ff8af0912358fb72c9fc5bd7a5e0

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="A Python wrapper for Obihai"
HOMEPAGE="https://github.com/dshokouhi/pyobihai https://pypi.org/project/pyobihai/"
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
}