update yalexs-ble-1.8.1

This commit is contained in:
Andreas Billmeier 2022-09-13 07:33:06 +02:00 committed by Andreas Billmeier
parent 1d3df456a8
commit 16dc12e56f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 43 additions and 2 deletions

View File

@ -523,13 +523,13 @@ 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 1884 Ebuilds in total, 1877 of them have in total 1889 (35 different) licenses assigned.
There are 1885 Ebuilds in total, 1878 of them have in total 1890 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1138|
|Apache-2.0|356|
|GPL-3|115|
|GPL-3|116|
|BSD|104|
|LGPL-3|29|
|GPL-2|25|

View File

@ -1,3 +1,5 @@
DIST yalexs-ble-1.6.4.tar.gz 28233 BLAKE2B 4a1113b0e879dd047199351dbf85ea429d51df8559c475a60fff88c8131c1ba2f8ef316b24a65102e6b7523702dfe2810058c45144520565a5c9a84e8542ea71 SHA512 aea59d19c36f084597109ffe15ecdfd45980e407df347a834773cf039749bf1847b105a4e3d1b0d3cd85098b76217c3e2abcb78358e73597357f784ea7427059
DIST yalexs-ble-1.8.1.tar.gz 28229 BLAKE2B 85f1f7a5644af40ee855fd97b2f5f22c5e6ac84290be6f661efd9596d6201e9eab9476c52e9e6c05211079c2dd4d6dbeabfc2664952490a3f29978a8d3cdb3af SHA512 228216d6e4424e0cf744e6bf9aae2aa21dda995fb8e662cd8dee08e16794a9924863da8716ab2a7fe6d64f35e8b250cb76f514abdb841e508a3e0c3c7f32ec3a
EBUILD yalexs-ble-1.6.4.ebuild 963 BLAKE2B 1b8ffccec5890de0f6a324e0d489ed47f0e1ef87f6894c332e55771a5326e5e30e0d80523f7c48a7bc88c86072e9347a21d7ec2122b8d0cfe9356a0f45304b0e SHA512 c87490c576abdeab4255505e3360e936c4f7d6af6fad349ba7a701d599eb52d549c181a1a7c9ffac5455d3ad6371c09f37bd9d0d3c8771190504e92fadd46acf
EBUILD yalexs-ble-1.8.1.ebuild 963 BLAKE2B 4529c685e2ab58e5aee00a7c2389f1d804a207627ab403d3a69306eb9cd65a38b9051dc9a32107afb033e041147f7490c44f00f9d794e4fe7eaa0368b9850667 SHA512 a1f432328f92d6be55f7db83bddc9ce08fa240452695d92d21320c10727c5d2398c9fb8729fbf51063f7678fa1bfa47205be32e4cb13e94e0ab3719f23685ed8
MISC metadata.xml 452 BLAKE2B e45333c3ef92995c8fb60a18f6e72510e1fa01dfa5fd766548f371d526b4905f9b975602a22f80d22de3a9b8e1a8760b3f0ef67444c03106c2d2a143598d6aaf SHA512 30654b5de14efdcfc41028d21e325113a011dea7bd95cb1c2ad12d3bd403b86929fe667182e8246391351d3f37ac7719579874e71cbef32c1376701b5d10aebf

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} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Bluetooth control of Yale and August locks"
HOMEPAGE="https://github.com/bdraco/yalexs-ble https://pypi.org/project/yalexs-ble/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/bleak-0.14.3[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.15.0[${PYTHON_USEDEP}]
>=dev-python/bleak-retry-connector-1.14.0[${PYTHON_USEDEP}]
>=dev-python/async-timeout-4.0.1[${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