bump melnor-bluetooth-0.0.20

This commit is contained in:
Andreas Billmeier 2022-10-06 00:34:10 +02:00 committed by Andreas Billmeier
parent 92c5b5a169
commit 16ea433e9f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 44 additions and 2 deletions

View File

@ -538,11 +538,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 1916 Ebuilds in total, 1909 of them have in total 1921 (35 different) licenses assigned.
There are 1917 Ebuilds in total, 1910 of them have in total 1922 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1156|
|MIT|1157|
|Apache-2.0|363|
|GPL-3|119|
|BSD|106|

View File

@ -1,3 +1,5 @@
DIST melnor-bluetooth-0.0.15.tar.gz 9646 BLAKE2B 8957f7b39af54135f42b69645f3bf19af0b72cc34450f5dc282450385188e93260ac4a3563a931dcab4bbef560769939bea02df6b5e34386d75e7695ab5e5975 SHA512 17b04407fb8f5c92c2e52d1d6f4f80e09d043e52f6d44e9a912eab7afa179aa9d2e9163d31165e716c601bb68e2e7e31c1f531092d0232b6c653f71427df5b98
DIST melnor-bluetooth-0.0.20.tar.gz 10127 BLAKE2B b250433d45680156366300e69597d68748c19844532d4e91600232799c4e58a6bead6277dee92725eb7d191271f8929562338c0d6758d0d9cf8ae3cf6b0e2457 SHA512 53ea1ca1ae6e947ae86964cb73bb2e1dc3c013d418f40dd5571ece8d89a3581a7e03d02c7b7bf2d33aab93470831c16c61ad747908b19d7a71eade548a1331b2
EBUILD melnor-bluetooth-0.0.15.ebuild 1023 BLAKE2B 91dd184a5ef9c8040962fb8100050aa0f46081bc80fa606628c439f25971fa7ee9eaf47b957d6ac04245e305801cc40cc9c1fa5783d4eff007475b5c2d01ffbc SHA512 36c13e12ed6c442021de48e09fc8e9a83950714642919273cb80f3bf4675f389423e534bc2fe48c8e069fbb76c20560c3e6f3a99d02c6cb75ca02f619bb82bb1
EBUILD melnor-bluetooth-0.0.20.ebuild 1023 BLAKE2B 91dd184a5ef9c8040962fb8100050aa0f46081bc80fa606628c439f25971fa7ee9eaf47b957d6ac04245e305801cc40cc9c1fa5783d4eff007475b5c2d01ffbc SHA512 36c13e12ed6c442021de48e09fc8e9a83950714642919273cb80f3bf4675f389423e534bc2fe48c8e069fbb76c20560c3e6f3a99d02c6cb75ca02f619bb82bb1
MISC metadata.xml 470 BLAKE2B b39737ad473d8491b4f7b174a077965bce87c36a1ccc28bd29e1c680206a17a7fb5c72b39cae34e1a6eca9c653f482c382a8ae36b9b847ce615f5ebf6380fdbd SHA512 0ba70c5da2fdb79efb7d7d3a84b09c54f3fe6de0b22e6ca099de0424044a8cf1a68029c96bc134cb5858bb5c8edcc48d3174ecefe9c8b41b5c13b99d67458df4

View File

@ -0,0 +1,40 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="A small python library for discovery and interacting with Melnor, Eden, etc Bluetooth water timers."
HOMEPAGE=" https://pypi.org/project/melnor-bluetooth/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/bleak-0.14.2[${PYTHON_USEDEP}]
>=dev-python/bleak-retry-connector-1.11.0[${PYTHON_USEDEP}]
>=dev-python/tzdata-2022.1[${PYTHON_USEDEP}]
>=dev-python/tzlocal-4.1[${PYTHON_USEDEP}]
>=dev-python/aioconsole-0.4.1[${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
}
distutils_enable_tests pytest