bump bump roombapy-1.4.1

This commit is contained in:
Andreas Billmeier 2019-11-18 18:53:00 +01:00
parent 0523de13cb
commit d1e4add415
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* bump libpyvivotek
* bump sphinx-2.1.2
* bump frontend-20191118.0
* bump roombapy-1.4.1
2019-11-17 add new use flags
* axis: communicating with devices from Axis Communications

View File

@ -1,3 +1,5 @@
DIST roombapy-1.3.1.tar.gz 125411 BLAKE2B ed68f1ac614f8514c46383ed45848a48b9affec2fc2e07532e45e00db7b4420497b3f4f3a0a85b44a297b9129a017fd8c10e4aff5bec02ffba1744c25c3e01a9 SHA512 851292f7b96fdbd54928df769d2e62113109a618bac0004f016077520b05da241c465ee6af7fdbc1172e756beb8b41ef3123cc02e4d151d57bef22ce69cdc9c0
DIST roombapy-1.4.1.tar.gz 125488 BLAKE2B dcf10314a691832a257a98b96d0bdae47f0502ae4279b0899c6cc4fbb7cce336ae8cac5be0aec94854377e9e23ff415853024f2f2403ea89a1e4bbf1e927f5d6 SHA512 ff5d6a24513f444ecf06708209f7d638e139dec6b145380d741916840cd87b07ab59fcb53c0ce09d7bbd36c9bed3dd390b70380a723084b0aa3b16c0e66de87b
EBUILD roombapy-1.3.1.ebuild 1200 BLAKE2B b5d3027f6f88ca7f938c460e310caea35efb8fb6032931169d8cf6bc1d900ee673b740b9c5df515a731f585189661b5023e39ba570afc672f2f9cf1621144d32 SHA512 721fd2850b5976992edcfdec1c643baf539b143b3661f3c06a6e931a2b63cb27b13c4b1288f0d83927f36cba1794c67d0fc387a5ee8e6fad98f43e9d095b25b4
EBUILD roombapy-1.4.1.ebuild 1200 BLAKE2B b5d3027f6f88ca7f938c460e310caea35efb8fb6032931169d8cf6bc1d900ee673b740b9c5df515a731f585189661b5023e39ba570afc672f2f9cf1621144d32 SHA512 721fd2850b5976992edcfdec1c643baf539b143b3661f3c06a6e931a2b63cb27b13c4b1288f0d83927f36cba1794c67d0fc387a5ee8e6fad98f43e9d095b25b4
MISC metadata.xml 639 BLAKE2B 0f49226c13428d056f5e0caa5422eeefa19a904ddc65e3878515165931c4b9ff19c0cb067c880a7d9f9ccb52ce34531081f5d3d36e40cf244241ad29f7393fac SHA512 ff4baa24c2d7766239adae4e78ed014894310bfca7492ab84af9c1d3f86165ae50ce49aeb7696ec6ef74cf3e64842d082ff957f767688cfc7ff3ee273515bc81

View File

@ -0,0 +1,39 @@
# 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="Python program and library to control Wi-Fi enabled iRobot Roomba vacuum cleaners"
HOMEPAGE="https://github.com/pschmitt/roombapy https://pypi.org/project/roombapy/"
SRC_URI="https://github.com/pschmitt/roombapy/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test +opencv pillow mqtt"
RDEPEND=">=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
>=dev-python/olefile-0.44[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
mqtt? ( dev-python/paho-mqtt[${PYTHON_USEDEP}] )
>=dev-python/pyparsing-2.2.0[${PYTHON_USEDEP}]
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]
opencv? ( =media-libs/opencv-3.4.1-r7[${PYTHON_USEDEP}]
>=dev-python/numpy-1.12.1[${PYTHON_USEDEP}] )
pillow? ( >=dev-python/pillow-4.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
}