add nuimo-0.3.6

This commit is contained in:
Andreas Billmeier 2019-11-23 20:53:34 +01:00
parent 315d42ce67
commit 0d85ec8ce1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add nuimo-0.3.6
* add nsw-fuel-api-client-1.0.10
* add py-noaa-1.0
* add pyrail-0.0.3

View File

@ -0,0 +1,3 @@
DIST nuimo-0.3.6.tar.gz 5857 BLAKE2B eb66d27d15f80095cc81a6c5142df1b2c23cf529bdae74bf323d1661f983494cdde7718f4249958deca49646641446990a5eb24cf23dc4939316eafa90d2f560 SHA512 59076623aa8a26370de4933ee77dd4c0ab3e46eaeacd5a70f2d9ff22e52c42262a3e87e250d88c8e05e68dd88a4beaffc5fb24fbaf11a7c38a1fcb3aed065e33
EBUILD nuimo-0.3.6.ebuild 708 BLAKE2B 216d386253578bc7c7ef8fe6ad8d29aaf952b9b476e0b1a41ab5eeebcd6465ef31362cf6156981e64833bdf2a3e1e769804b81f48f9d0eb75f2f86785846733b SHA512 41fd40c8d018584c96ce342923aa1552cb28516a5d068d4c51c672312d0e9f6aecbaa55bfb7b8f1ad07b7e4564b1e6961c67a00f1975e0bdbf1068a8a0dc17c9
MISC metadata.xml 455 BLAKE2B 241191d39f1891aa87dbde14a2e0a92ee361d0cd61e7268953a9dfbc21bfd739baabaf9a00d05500deaeb3c727fde52b038b0b2bac123534926a72ea83bce44d SHA512 5cceb60bace5217417623b0ff7a72634679524d9a02bf0633b6b522234390b54f531165dd111dbd463a5b98d7cd4f793184e4f68d4bda561ac9d28f3b921ca1a

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">nuimo</remote-id>
<maintainer status="unknown">
<email>developers@senic.com</email>
<name>Senic GmbH</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="Nuimo SDK for Python on Linux"
HOMEPAGE="https://github.com/getsenic/nuimo-linux-python https://pypi.org/project/nuimo/"
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=">=dev-python/gatt-0.2.4[${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
}