dev-python/roombapy: add 1.6.10

Closes: #2640
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-04 13:02:27 +01:00
parent 31627437f2
commit 9b8740c51c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 36 additions and 5 deletions

View File

@ -612,11 +612,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1619 Ebuilds in total, 1608 of them have in total 1623 (42 different) licenses assigned.
There are 1620 Ebuilds in total, 1609 of them have in total 1624 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|930|
|MIT|931|
|Apache-2.0|346|
|GPL-3|103|
|BSD|89|

View File

@ -1,3 +1,5 @@
DIST roombapy-1.6.10.tar.gz 12395 BLAKE2B 6c4f385980b6d46d0a695257c0f95f273a1fab2d24c764ecdcd453e1a230e05ce2d3780b6455819d0b58dc4d4a9774b4dba8cb0271c4c80ac9d509866bf2b4ec SHA512 cfbae889945c7c33ccd9cd133f3a60fe041b573a16317c0682f428ff76943c4ee48743835b02a95a0446c4af70af3ab2e12c04d0541e06c5bb085f2df751d58f
DIST roombapy-1.6.8.tar.gz 12250 BLAKE2B 57c6cf236cad880086cdb56510d5babcca4b1d09e4a23f80d82606a35090dae2965a416dbb3f6336b0f0933c71c58889e2024a3b45a8356bb316ba6846b73866 SHA512 badd8ad381fbd1b8651bf5b8c5f5abc774abcce6dd562b1b9e9381204fa486645a33eea273fed4e63796fe4a3a580bc4b0d2d0f6053f1ecabcbcacec036885d8
EBUILD roombapy-1.6.8.ebuild 776 BLAKE2B 2eac7ffe32927842676f81c5a93dc2658159c212f79e35caf8914d17ae2a46da8449ac3852da39be633d4e15cafe73cd905d596a06b2eadf864eb65a0e6cd34f SHA512 07a3512b536c26defeefbd20f07729053a07d2806b242e0cca2d0062ab4b9db0f1e56e5b266a87b8c1baa96b33327c283063016b91c940ba182975acfa117c92
EBUILD roombapy-1.6.10.ebuild 736 BLAKE2B 1bd7155842f867b849d0fd51e064f14abcfb4e60f54e4b8fc9a069fec90e65eded725a46803fc6c75743fe537865c29f48bac99692df0a6b7971da5a5e8cdff1 SHA512 a62a0a7826cd2893c1c25b6adf09d6fa345740d48627282fa172125951d45c86f99d471c0f16483db31f7aac9dc3303d1a774dc9c316050ba7c1ae46e82a26ee
EBUILD roombapy-1.6.8.ebuild 777 BLAKE2B 3d8d9e4b634deb392be28e63d6bea37b00e4e8dcc83fc427135f9507c4cfe6a66ba6fd6a463fb45d023c2e66a27f0904eb2c79de1e1ce482dfbd6e45181d3702 SHA512 8d16a1cf1ce6457a21d0d4ccd06970016d48a2e742157806381930e6bde4f5750a601c58e4d887e1e07266adde3567b531d6eb9222e172a049913011d0595eeb
MISC metadata.xml 513 BLAKE2B a39116112b6fef963346924a5e68d0034d2eedfec88ee9cec3a9b406a868824072909a8ffe23f73ca0869830c0069c6c250f4a245ea3931492d7a8c8c4cae252 SHA512 ac3e63fa9fa800accf84b403beb835a8c2e216028c682df07fc9c2c19dc65c50f18609475566f7dc99118ac4b730c3b5f197ce5c86d38ef0d953d4c78059d970

View File

@ -0,0 +1,29 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Python program and library to control Wi-Fi enabled iRobot Roombas"
HOMEPAGE="https://github.com/pschmitt/roombapy https://pypi.org/project/roombapy/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test +mqtt"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="mqtt? ( >=dev-python/paho-mqtt-1.5.1[${PYTHON_USEDEP}] )
>=dev-python/orjson-3.8.7[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi