update sensorpush-ble-1.5.2

This commit is contained in:
2022-08-16 20:43:10 +02:00
committed by Andreas Billmeier
parent 9ab071ad7c
commit f26b25ccca
3 changed files with 40 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 1851 Ebuilds in total, 1844 of them have in total 1856 (35 different) licenses assigned.
There are 1852 Ebuilds in total, 1845 of them have in total 1857 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1121|
|MIT|1122|
|Apache-2.0|344|
|GPL-3|111|
|BSD|104|

View File

@@ -1,3 +1,5 @@
DIST sensorpush-ble-1.5.1.tar.gz 6192 BLAKE2B 44e1313fd1bb6dbdf6f405850429e731c1a8a0cbba6fb19567c97a22c0e0c351f85bc60c4d07fa8cddc06fcc1c69e3dcab623f6d2f24a1e6fcff4259b602fcc7 SHA512 47729714788bcf73e5f2f2623a6fd9d2fcd4bac45a599d1bd8b2a8a21dda4930c31b444deb77ce6303d4550a673796ff8fc23ef76e7d13bd279f33ba6a61396c
DIST sensorpush-ble-1.5.2.tar.gz 6211 BLAKE2B 47cbac06226344ee7eeef2dffa9e3aa11bd23d5c1f10b3900e3d06e6cb0b079c20c8172f4f199eb1f61ff50c62c395d3e6837e6d7594ecf7898a47019ee9b0c7 SHA512 68fe672f7d9f94a949784d0bca1cd164874aab54642f2877bfc639e294dd47b167986903619965abb34aadde2dd981afcd2f99cde1f87b5370e23aee62db14d8
EBUILD sensorpush-ble-1.5.1.ebuild 855 BLAKE2B f69d22fcbc015233e5d5da78dd68b789cbbc9a767e119db41a4d8fcdbeefc682deea3767ec76743a9e62dc399bf14144047483f5372431a3ff5acc5a652c893d SHA512 35de99090117003d3b9ab24fcb329fdf1b76b997c9588fc922a39297f3472b5d28900ec67a6999ea1d8638f5eede1df548db4bd05e41a1b4d7084b3db13dfd02
EBUILD sensorpush-ble-1.5.2.ebuild 855 BLAKE2B 5f630ac6fc76eb9676b8775075a55ab5b794325a3673b99398daf4fda68e7b2e07fe6efe2bb93550e57b828ac1e057a6bb3676f8674b32ef1da5d8815a35d5b3 SHA512 b882845da84f7320b7646562fce91ada068d52ce3cfe0913e422b08f0b95cad8d7e1ff37c481b1bcea110f220c3f78ed296edf6707d5c40de736de46ee1f437b
MISC metadata.xml 456 BLAKE2B 2e6bb234bd59fbdc7d9901d124fd527006851be66df2dee55255ebae7aee9b93fdf42ded697a6899c60f079f1aa86a55420980c3677b5e7d6cce410062dbe25f SHA512 655d71992e8bce5d9e0173c3863b50c7e0a59cd409adb5dd3bc75c4f39557d4b767bf8dd5c91bebd53f5cafcd151aff8a540637775d22d11170870b46d211072

View File

@@ -0,0 +1,36 @@
# 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 SensorPush BLE devices"
HOMEPAGE="https://github.com/bluetooth-devices/sensorpush-ble https://pypi.org/project/sensorpush-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.6.0[${PYTHON_USEDEP}]
>=dev-python/sensor-state-data-2.0.2[${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