bump thermobeacon-ble-0.3.2

This commit is contained in:
Andreas Billmeier 2022-09-20 08:06:36 +02:00 committed by Andreas Billmeier
parent 3722255d12
commit 7a7d5064e8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 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 1892 Ebuilds in total, 1885 of them have in total 1897 (35 different) licenses assigned.
There are 1893 Ebuilds in total, 1886 of them have in total 1898 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1142|
|MIT|1143|
|Apache-2.0|358|
|GPL-3|117|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST thermobeacon-ble-0.3.1.tar.gz 6105 BLAKE2B 74c23a4a573f49d8daa067c33d7531ffa521297a56a82abaf471edf745a12bffa15e6d961ea87f4e6cb43a707b8f7f7876e32a8992b9c023bf2d151b2ef687e2 SHA512 123b815360195db17b922454a6edd4a8922673674d5b31cfa236a228398bd9e2f376cf70579d37c5276451c1069e8de731aa4c810479a17d05d0579415ec514f
DIST thermobeacon-ble-0.3.2.tar.gz 6081 BLAKE2B b9db83e5186acb806b2d663373f17bfd2ff378d7b7f8d7d66b33cbfcd778ca1b954949fa8cf130e997d51771b58f073dbfd69c081e56ce0f2a0974d5e174c873 SHA512 8e629c438c1833b5fd45cc015b5bd958c65408aea3e7153ab9a24b6ce9fab052c6bd5a5955d3e0c54bd75542d53b0fe4b2cf6ecfdb9de5615f9bd25225f4c46a
EBUILD thermobeacon-ble-0.3.1.ebuild 916 BLAKE2B 5c5e53fac71fbf4f12fddd4017e9de788196ff17709f6a677fb381d307c04820c9da2f4077fefdedb54969869f177ffdc9d7f9f79e2450dcf465f9cdea7e7bb6 SHA512 b319a5349c2e0ce08d79e33911e0867c1cca6fe8be53ca0b00438a0e399e785e189724626f8bf26aa1c81dadeaa1a22d03e3d95ec5d15688679c79241950860b
EBUILD thermobeacon-ble-0.3.2.ebuild 958 BLAKE2B 4e11f173d2832119f59e667c67bbecaa93c0bf3619f4d488f771a414d08a63dd05b488ebcb86b2ce4e76a362c2346a7b99b900607bc6932d5aa7e4bd9c79bc1e SHA512 7280af8626116bd1f1098c1bf109e0804bc668d68ebcd8295c5609867c1c678d39ddf4d952d3e6886d2345d61f82ce040dcad35ec77d22eb090ae674184ce2c7
MISC metadata.xml 458 BLAKE2B 24c768eadc25045c306feb80d34c553a237d001821666184a3ba058a7a42d675152f062e32064a9c7f6c84465ed458620b974fb8a250cff313f2e24ac1c1acf5 SHA512 78fd51c7bb4123fee5ab4199e3c92d47b4da0fe0d10cb16f3adba06849cc4a24e1b7d655ed329d1ce8e1d7e3fef9f451377bb101ed16fe1cb56e4b1851330915

View File

@ -0,0 +1,38 @@
# 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="Parser for Thermobeacon devices"
HOMEPAGE="https://github.com/bluetooth-devices/thermobeacon-ble https://pypi.org/project/thermobeacon-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-data-tools-0.1.2[${PYTHON_USEDEP}]
>=dev-python/sensor-state-data-2.3.2[${PYTHON_USEDEP}]
>=dev-python/bluetooth-sensor-state-data-1.6.0[${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