update pyobihai-1.3.2

This commit is contained in:
2022-03-04 05:57:58 +01:00
committed by Andreas Billmeier
parent c7ce00af24
commit 94a6ce04ba
3 changed files with 39 additions and 5 deletions

View File

@@ -1,3 +1,5 @@
DIST pyobihai-1.3.1.tar.gz 2883 BLAKE2B 8c76c8fa5227d032c359c2215b8c69386c267f501ada76122966fa658f58de316a71a6c8fe537bb4f8cbad78cdd54de1054fe00a9f1d5890348865a07e56c3ae SHA512 8d817a4c79cfd240c7e6b4f0378104459c58171ea5069e906289fe688b782969a5856f80fd92b09b9c1eba6bb364296fde883b6e87aa7908873866f75898fa07
EBUILD pyobihai-1.3.1.ebuild 680 BLAKE2B a9a8fd7e707bd6e38d3a7c378fe078a3b7520dafbe735270b36083eab98627cde3c5aa74dbbf51d37fd5043db427377bf83a445b9a0911df2ba9baeec56a846d SHA512 a631afbdffd4b70ddde9aff2f1e266056e57625257510daaa477261ff05e147ee8fad234d99f513dddbb881e8f35fc37cdba0a19f121001e559dd6dee53d6b27
DIST pyobihai-1.3.2.tar.gz 2712 BLAKE2B 7262e1cb73ac95d9f78f1f24549116c43be9ca22ed71c2097fde81a8b4ed781c300d959420ae71e8e9e882bb6d7b92959800fb39bf847ecd7e771616cfb0ceb4 SHA512 c0cd6c1d2696d8ffd2e126322976cc41ef7e55ff092c24287694fbc4b519badf712244a23a18b3aa380a839e01f036519c56ffb9b9cd1566640e19156fc84f57
EBUILD pyobihai-1.3.1.ebuild 716 BLAKE2B 73b1b609586c870f9e496e134ced9abe3fdbb0e131ab18f6491244726129cef2d19b78c32e3feb235bfbf0c082e1b93ff9c8499680609e79b2b0e0340d1c57ae SHA512 5f45c671770a953374370bdf62b5c728bf4d34d231ccf2998cb53069db4b33131d796222d63d834ce5c96e67999a7b59f482898491c033738d99fef4ac7af06a
EBUILD pyobihai-1.3.2.ebuild 716 BLAKE2B 73b1b609586c870f9e496e134ced9abe3fdbb0e131ab18f6491244726129cef2d19b78c32e3feb235bfbf0c082e1b93ff9c8499680609e79b2b0e0340d1c57ae SHA512 5f45c671770a953374370bdf62b5c728bf4d34d231ccf2998cb53069db4b33131d796222d63d834ce5c96e67999a7b59f482898491c033738d99fef4ac7af06a
MISC metadata.xml 455 BLAKE2B f9cc6614d84a6c9f96cc2a473a07a7b4bc1759b9ce7885cd5c1e20419242372d0d02856ab98ee967f18aa1151698c7359c0aff0a0f1a2b8336c88f93eb22bec5 SHA512 f0624bb0ed73103451afb47f7ea7d9a07997d81ca5652d9640c8791cf889f6d395e28e9aae12795b58a15ac0e54d1c58c2d257515f47c6d2c928568cb90cce3a

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..9} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -18,7 +18,7 @@ IUSE="test"
DOCS="README.md"
RDEPEND=""
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
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
}