dev-python/home-assistant-bluetooth: add 1.6.0
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
1443aac9d5
commit
0f10308579
@ -548,12 +548,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 1486 Ebuilds in total, 1479 of them have in total 1488 (34 different) licenses assigned.
|
||||
There are 1488 Ebuilds in total, 1481 of them have in total 1490 (34 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|866|
|
||||
|Apache-2.0|300|
|
||||
|MIT|867|
|
||||
|Apache-2.0|301|
|
||||
|GPL-3|93|
|
||||
|BSD|87|
|
||||
|LGPL-3|23|
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST home-assistant-bluetooth-1.3.0.tar.gz 8812 BLAKE2B 3e3ba49ca45ce296d16b557ea66674180acace69a0e6f87c589d449feaee048f43366299715ba168e772718fda00b37ae684786f0b6ae447d6cfa7632b5e1ae4 SHA512 ac6cfc81329493074135772ae66737de7d7793f2916c814fb84600fede856936d4b5fee716826bc6e9fa67957b7dcfa8de099e737e3901862ffa37de405ef0e7
|
||||
DIST home-assistant-bluetooth-1.4.0.tar.gz 8885 BLAKE2B 3d8270c587194b0515af0abd4c379f0683b484c85b9de67533c1e75870b9beb1a007aac15bae2e502ac4d768c32685685163c6800679fe5cf24cc8327f49b785 SHA512 a49fb8432e61587111d02b765cb99e96c9df12558720ec7bcf25be7a010a7331c0d593d7db9bdd766fefc4cf31946d2413e30d1167320628e4f24d5573ae3e43
|
||||
DIST home-assistant-bluetooth-1.6.0.tar.gz 8859 BLAKE2B 982089c4b2aa9479d15de40b58b71478a42303267f83838bb5893cdf3441fc9e4083a1a63a290b9d16fe41e631a1132df693c52d1b8a8b6412e27f5d8d3ff515 SHA512 dba112a13d97ed2f3ef81c997f46eac01e63e81af784b03daf0fbb4f7f1cc4209d691563e5afc67e8ec447ba39ab77ab00a99a0271ce8d758672e77d73a4578d
|
||||
EBUILD home-assistant-bluetooth-1.3.0.ebuild 795 BLAKE2B 5ba760ddc13cb51d7da395022c03e5fd013e7e9d7bd449c66db6a429ce4f9d63ed6f280aec9cae56685208ef85cf994d2484c89918a135d6d4bc05e9094a20f7 SHA512 4ad52958c5d2115c6460e892a971527fe9ea74cbc813f1bfdba0077bbcc1c90271b0fe476cb02f0575521b2ec38feb738f83d07f7ca20955044be9b1402ddc40
|
||||
EBUILD home-assistant-bluetooth-1.4.0.ebuild 795 BLAKE2B 5ba760ddc13cb51d7da395022c03e5fd013e7e9d7bd449c66db6a429ce4f9d63ed6f280aec9cae56685208ef85cf994d2484c89918a135d6d4bc05e9094a20f7 SHA512 4ad52958c5d2115c6460e892a971527fe9ea74cbc813f1bfdba0077bbcc1c90271b0fe476cb02f0575521b2ec38feb738f83d07f7ca20955044be9b1402ddc40
|
||||
EBUILD home-assistant-bluetooth-1.6.0.ebuild 868 BLAKE2B 76a2dc6d320dff9ac1ef0b62a9c1ec0ba89c2e28217884eff86eb00a0ad8fc8637bdde0ea5b3cc233e4bff7e12ce822589dbdad1adb7c8f5f5de59b789a72361 SHA512 1230abc9d1cbd7dca6b237cbb4a7ae5192d75b7834ae61980f471dfdd5917a80fea4c5d40a3363b506ce22dd5ef5778b213d0473fa403c692e4317960a012a50
|
||||
MISC metadata.xml 473 BLAKE2B b59218145c7f6f8811dc31ce82c2ea7d42e6c28c398c16941d4f2532c3ce94a16101a25087be0fd08155cb81f183e5f54a3cda1b8fb34d88813b6fd21d055205 SHA512 77c3c5b6458253b5fbb2e3273bc7ef685df7c7beaa447dad31faf166eb253a93350f3effd3b245c59ba1de4d038a6616e74997a446ec4423c96eff32dc492e0f
|
||||
|
@ -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="Home Assistant Bluetooth Models and Helpers"
|
||||
HOMEPAGE="https://github.com/home-assistant-libs/home-assistant-bluetooth https://pypi.org/project/home-assistant-bluetooth/"
|
||||
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.14.3[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user