dev-python/airthings-ble: update 0.5.3
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -573,12 +573,12 @@ 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 1528 Ebuilds in total, 1521 of them have in total 1529 (34 different) licenses assigned.
|
||||
There are 1529 Ebuilds in total, 1522 of them have in total 1530 (34 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|889|
|
||||
|Apache-2.0|312|
|
||||
|Apache-2.0|313|
|
||||
|GPL-3|96|
|
||||
|BSD|91|
|
||||
|LGPL-3|21|
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
DIST airthings-ble-0.5.2.tar.gz 7134 BLAKE2B 210e99922eb84e877622b3b8adb8375a150b9a48442ee8e414b01d3c86591de4d1a577288e7e4a7bdb9d597ce69a81ed4856be42bdb44d21d0be65fed10c60fe SHA512 014ec651ef9fd3e02cff6b712c64f0a7f81d61245864146a56c8ce07b658f3e5102068873f7747d3ad366cf45627364158409d5beec08b8fd4ac81fa1e2b329e
|
||||
EBUILD airthings-ble-0.5.2.ebuild 724 BLAKE2B 2e6e8327e25ff5cb485ba0da7b9e57ff632e2d3a072d1d5f15abbbc5731c002fd22688cafe951cd4161ccf08b696571297761c7d3d7780a567d8ff579e97a83b SHA512 f067937ff55f56cad31d224036b26523ce525957706057b6b479b912e2581c78a7a19977dc659d409c506d3f76d608cbac4a6a5e75de508c26e9129c42d2deca
|
||||
DIST airthings-ble-0.5.3.tar.gz 7162 BLAKE2B 90808b596a251c207dfb2c47796d6dce4bf077b1655f3d4d7c0f99799b4ed5cec1732e23c3be0e750abe7108e95ea1439e17537488d4f0db03aaf1ba3188c256 SHA512 efd2534fe430216b10eb1bfc96a0b9539a3a21ad865bff35ecb5344ff288670e2bd510ca64592f687f6502c5cea53facb6ca49b4e8453c101b5df25860d7afbb
|
||||
EBUILD airthings-ble-0.5.2.ebuild 752 BLAKE2B 7b49f0a85963921c80cd4b8c8bd69f4fefbbd8d6bbcb516b78f22fdd197e3205c16983aac1a5c04f5572bb1ca9cab11f4177fe1946fb8e78c353fc275cab5934 SHA512 18d612508d772f61b91d8c867989127cccc88b6b0877fe05f95ea4886974a856e148a250c71186124017cc4b63a9cfaacb2b70aeb463a08a376d83a2befeedb4
|
||||
EBUILD airthings-ble-0.5.3.ebuild 825 BLAKE2B 5b9208d242819330f66a550da8b54a9f52e08fb3e2c2846de9db05e9e05cefe7e1934cbc10a4b9ce4451e2bbf611cfb1c37935c91aa9549145881e87c4838f4a SHA512 60752b3c55726eb13e9359fa6d78d12fbf3d0b857f31f6d75687b6f1f6c686796bbe9a8ad6077bdcbe5a35733cea9321177aff2f3e845443ce066f7abb617508
|
||||
MISC metadata.xml 332 BLAKE2B 92bf8c8ee1b92c96661a11f0ff4b8737566f456ed89b6cd1402fbc22e92588645d717d2380e88816ee2bdf766e2bf7ca7aa624b0b37608004a27ef45201e879e SHA512 bc8df7c7ec0e4d9c9402f6b6eec8b7533919c2439b91330e3be6fbea829904eb04120d66e454e828866454ad3802074b0c16f1fe329765c627377bb28a98ecef
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
# 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="Manage Airthings BLE devices"
|
||||
HOMEPAGE="https://github.com/vincegio/airthings-ble https://pypi.org/project/airthings-ble/"
|
||||
MY_PN=${PN//-/_}
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/bleak-0.15.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/bleak-retry-connector-1.8.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user