add tilt-ble-0.2.3

This commit is contained in:
Andreas Billmeier 2022-10-06 08:37:04 +02:00 committed by Andreas Billmeier
parent 9968a3dcf4
commit 468c8aa37a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 57 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 1922 Ebuilds in total, 1915 of them have in total 1927 (35 different) licenses assigned.
There are 1923 Ebuilds in total, 1916 of them have in total 1928 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1157|
|MIT|1158|
|Apache-2.0|362|
|GPL-3|121|
|BSD|106|

View File

@ -0,0 +1,3 @@
DIST tilt-ble-0.2.3.tar.gz 5837 BLAKE2B 3cd7332faaba4a30f718db9f4a616f3f53f4ea531f23a8551b6d21d19bb827bb1b71825090085c52ba44038b4d499408742ede5ddf307b2fcb2863f24ab270db SHA512 63a85eae65996f1fc902ba464d5525f61cb1bd5fb5b3c6e87bb29b6febb8af16b3246dc617a81e92b5e0f5cf48526582342e15de9b6342b7e53a513dde4f6c4e
EBUILD tilt-ble-0.2.3.ebuild 900 BLAKE2B f9c429b347198d2ec330f11ff80992eca0bdff3f120f39674686350dfdd56596d69d01f28b296470c7403d45721448c84ee34d6468db38877234e4c37c4e7e6b SHA512 41b05d5700a287ba5e630962259406504e9e78f7c00343f2c61bd2e75651575508465e159b276c0019727acb9a117d5e841659bb847f4745f026172d00445e14
MISC metadata.xml 464 BLAKE2B a1cb1a3cdb9e18aad0ce9e327d97f5493e1b7c2af6e8049719d8db26bc97aae188e8ffe1531121e5eab25ccb98d88600b8c2db088e6859edd3b271a71244b657 SHA512 1f5077033d563ec4b526f90560cee43602c822f59b0b84c2cc24bef0ad428bde3ba8601f9f948ecf5de959c5ba714d14c1d34f9b74b0057231f8194fee62261c

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">tilt-ble</remote-id>
<maintainer status="unknown">
<email>thompson.p.alex@gmail.com</email>
<name>Alexander Thompson</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,37 @@
# 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 Tilt BLE devices"
HOMEPAGE="https://github.com/Bluetooth-Devices/tilt-ble https://pypi.org/project/tilt-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/home-assistant-bluetooth-1.3.0[${PYTHON_USEDEP}]
>=dev-python/sensor-state-data-2.6.0[${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}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest