bump bthome-ble-1.0.0

This commit is contained in:
Andreas Billmeier 2022-09-06 06:29:12 +02:00 committed by Andreas Billmeier
parent 28de77785a
commit 6f5cbdef8e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 43 additions and 2 deletions

View File

@ -523,11 +523,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 1870 Ebuilds in total, 1863 of them have in total 1875 (35 different) licenses assigned.
There are 1871 Ebuilds in total, 1864 of them have in total 1876 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1132|
|MIT|1133|
|Apache-2.0|347|
|GPL-3|115|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST bthome-ble-0.5.2.tar.gz 11026 BLAKE2B 7b46676e31f31ba3c0cba5ee1227eb094af2cf2e2bfe74877fae29527b00c2009a0efc54ef8ce112aec03aff914e9502fb907d662111ba340b48907326b1e4c7 SHA512 36e6f5a9d7305225504f7422e4140b082bfced61da9afbdde354196aa91b2e7f81495d779037b4ff83fe318face01c5b72804cb85d4c87563169a1c0171ebcc4
DIST bthome-ble-1.0.0.tar.gz 10906 BLAKE2B e191b313ba62ec7a3bffce9f226b23e82a311621dafd9ecb488632dcfd9e0855a61a3ff750e6b66f49293140e30190642d376a9b38eb360a9dea20471cdc684f SHA512 0d9097f6f7507874fd6c3f993aaa8f363f91a04afeeecf68a693940d890a7600846d10d4d32d5f4c3663c3a9b5d1c8a5cb0bcae005e53c72cce007c5424c5ecb
EBUILD bthome-ble-0.5.2.ebuild 944 BLAKE2B 93a6fb78b265a8a8c7f7d6629b0cf91d3806139ca3229db395d44aaba52a505895e356f700c15e0e14507269a93eae7b3b1caa6f324bc93ec99c36b133e5b039 SHA512 9acc554050215346a2c00b80d08f5296745f42ba01d4b17958e9afd082bacab6ad455b94742925a967f107c7bab9e6d8ae1912be045ae1d20f5e498a4c282778
EBUILD bthome-ble-1.0.0.ebuild 986 BLAKE2B ceace08334240257ad598cbde079152523a53032bd6c98565dd8fbca27e641a6599d3566a523a38cebd9274814587e768a2a778a1a2627d86efb3f3dc14bae9d SHA512 accefd12ba90a69e0aa97c737f53efd568eb91e9503a3765481d153aac21b408582ac6249092e0ad8ee06cc1c66b3797fa6a811c0379b1e24ecddbf700faed73
MISC metadata.xml 453 BLAKE2B 45fc6c8c182b3dfb8796a9bb9df38ae02fc076f571ee525381b43ec1ef974aa304bd97e29753394c43c569d67b5994072628c44205b73013f2aa053afae8297e SHA512 1011c33f6f1e28b9ccf480202abedd33e2837ffae9b7ad7cf58fbebd29abd98ef664e6fc3a7e89dcd99842d8f8ed3fb16d4ff81b34c29effcefedb921abb85e2

View File

@ -0,0 +1,39 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="BThome BLE support"
HOMEPAGE="https://github.com/bluetooth-devices/bthome-ble https://pypi.org/project/bthome-ble/"
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/bluetooth-sensor-state-data-1.5.0[${PYTHON_USEDEP}]
>=dev-python/pycryptodomex-3.15.0[${PYTHON_USEDEP}]
>=dev-python/sensor-state-data-2.5.0[${PYTHON_USEDEP}]
>=dev-python/bluetooth-data-tools-0.1.2[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest