bump qingping-ble-0.7.0

This commit is contained in:
Andreas Billmeier 2022-09-20 07:40:08 +02:00 committed by Andreas Billmeier
parent 34c60c9dc9
commit e23797ea17
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 1890 Ebuilds in total, 1883 of them have in total 1895 (35 different) licenses assigned.
There are 1891 Ebuilds in total, 1884 of them have in total 1896 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1141|
|MIT|1142|
|Apache-2.0|358|
|GPL-3|116|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST qingping-ble-0.6.0.tar.gz 6586 BLAKE2B 7f9ca4fa22371e0b9cd6880fe8443dfbc786aebd25a18898a8ee4bc87596bb02114ea6b89f9428ff24d4124914801335478412cf69afae521238eb0ca58ff477 SHA512 787456c44b657cdcfbcc08e5f574ab776cc243a60897672692bdf91a2ad0d9a019e6666c991559fdbf760df0a82b6ff1050f76500a20cf97203f8b2f7a8b4c55
DIST qingping-ble-0.7.0.tar.gz 6495 BLAKE2B 9a1e8cfea36951105a8a3dd2b935a99b05e69e13463ce7a9c993937c81523bb6232f40ba68e261ab9a9dc566b4aa47ecda5068d75ae426474a64604b043c9540 SHA512 ffd16dfd60f4befb863848b8439a098d2c3d5bb05922f2aea8546e6b1a55392ad15fb167c44e59d340a090aa706483cfc8acece1b928ef599e655389eaa4d185
EBUILD qingping-ble-0.6.0.ebuild 939 BLAKE2B 2afec5e3af8c121a3a599bd13f54c34d8118eff89a096ff893ebad4c06c3d583c466dd90630a12ef53c0e6d529ae27556008d017086a3937a5aecd9ef8d498b0 SHA512 34a27c360fd30c8f17313328f7ceb977a3d2a287489a25efa58905bb783113fed0a35ab0891f6346dd0367ab2c845dde22b61233dd23685cbc1f848d351e81db
EBUILD qingping-ble-0.7.0.ebuild 939 BLAKE2B 2afec5e3af8c121a3a599bd13f54c34d8118eff89a096ff893ebad4c06c3d583c466dd90630a12ef53c0e6d529ae27556008d017086a3937a5aecd9ef8d498b0 SHA512 34a27c360fd30c8f17313328f7ceb977a3d2a287489a25efa58905bb783113fed0a35ab0891f6346dd0367ab2c845dde22b61233dd23685cbc1f848d351e81db
MISC metadata.xml 454 BLAKE2B c1d5b15445cfd24652313896c70eb27f838eb72d37b0baa22dc4250801910942a247f3ef939a19accf16df1055556d7d2cfc8ef31f6a10c8ceb5c447444601aa SHA512 fc70b8840ac7f4ce5a2ce759fe4cf0a99484f9612282711aa93ccc3ef0cf8e07588ce83784f20039d0c5a60a3a719f9b2be88dde26ac139aa27699dcad2c2794

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="Qingping BLE support"
HOMEPAGE="https://github.com/bluetooth-devices/qingping-ble https://pypi.org/project/qingping-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.1.2[${PYTHON_USEDEP}]
>=dev-python/bluetooth-sensor-state-data-1.5.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