bump broadlink-0.18.2
This commit is contained in:
parent
a37c96c19b
commit
5f08a2ff10
@ -524,11 +524,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 1731 Ebuilds in total, 1724 of them have in total 1731 (35 different) licenses assigned.
|
||||
There are 1732 Ebuilds in total, 1725 of them have in total 1732 (35 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1057|
|
||||
|MIT|1058|
|
||||
|Apache-2.0|310|
|
||||
|GPL-3|106|
|
||||
|BSD|96|
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST broadlink-0.18.0.tar.gz 17334 BLAKE2B 4acc90d96b6c89f2d56041be039721249a8a49b8df818580cd003469e29f3e51320544240de739efe5497bbf40d3d1f70edada5a5ffe5580451b33c89a743f91 SHA512 f487c891d0e1e6ab45965bbfa3e2c5a7d6d23bc97c18974fe27ad603715b77040e1ef638e827afc5114254cc34464b50ee1176887af53c3d10736d302035f501
|
||||
DIST broadlink-0.18.1.tar.gz 17384 BLAKE2B 984cbd031368bc09e7c2dfd78688209f080c7f1c5a5e32896459c772e18f9e3efb1065b58d2f1d56cba7bd2829da91a752382ea4e580ba1f84836b56f94489ba SHA512 508c6382b541b9b070923d9c2d41d29b78bf3a73df9954b0a69c812f80c488e3b54cd227c067092f5a743715527915b6628d203b99ca3371c2e56772a20384bf
|
||||
DIST broadlink-0.18.2.tar.gz 17949 BLAKE2B 8f6212594d1027d65458cdf612ef360eaf85dcbefeba1b366d45faeb2fccad9977e0bc2f6dfa2c3a6f9cad95c7561ae54946a4633c174f019bb677cf5b9d5a8c SHA512 7e39ba2f15824890a01aa74331aae5c3034281ae2c923662718ac79bfaf01f04a4dec4cd6d3ac3ac973168d876bf3506ffee814dce366c389623084ed5d6c40f
|
||||
EBUILD broadlink-0.18.0.ebuild 771 BLAKE2B f8ab713b45ca13abc9fc6a756c60299f0f113822b36d2a58be4158fc5b22617b9517afb668b6a9f4431318c2e8eeb4106e7da0a37a751c08a9f5d20581298811 SHA512 deabb5b7d8358a32120e6a6a3c2c06499e5919dfd0822861cfb5cb63b271ab58225d7a7a8fc71dcf886f41c088852956dcf0905add9ac9d9c01308f6793f5be0
|
||||
EBUILD broadlink-0.18.1.ebuild 771 BLAKE2B f8ab713b45ca13abc9fc6a756c60299f0f113822b36d2a58be4158fc5b22617b9517afb668b6a9f4431318c2e8eeb4106e7da0a37a751c08a9f5d20581298811 SHA512 deabb5b7d8358a32120e6a6a3c2c06499e5919dfd0822861cfb5cb63b271ab58225d7a7a8fc71dcf886f41c088852956dcf0905add9ac9d9c01308f6793f5be0
|
||||
EBUILD broadlink-0.18.2.ebuild 802 BLAKE2B eb03a2afe88e9cda82df0c79b38b64dce1cab1a954adabbe54c8d199dec69d082be8a2cd44faf69f4fb2935c47f702856efc76790f887b39640d8685af6f98d1 SHA512 eb85c5ec5e99699a1b25a6b183b0098f0157ed0590b576400fcb5aca5093089139df551a3dfcc66a215ff7bc2e339b3b238535ae8a9a1f82855f09bdc26f6e06
|
||||
MISC metadata.xml 456 BLAKE2B e42190c6f9a66e64f1075ec2521de76d0f3aa1f7df00a14742dedbd71cac262bf8865115a947ec89cc9dd337cbdc52d2cf651159a90ce13d0dd22ebf6257e142 SHA512 20b72d66d1955e609b45dbe20e9a9fafd29f9ec1f263356a81f1e5333b178c9de65772b0b695a550180bea38660fb444866d11c7e32d2ee01764e32d3e1f1cc6
|
||||
|
35
dev-python/broadlink/broadlink-0.18.2.ebuild
Normal file
35
dev-python/broadlink/broadlink-0.18.2.ebuild
Normal file
@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python API for controlling Broadlink devices"
|
||||
HOMEPAGE="https://github.com/mjg59/python-broadlink https://pypi.org/project/broadlink/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/cryptography-3.2[${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
|
Loading…
x
Reference in New Issue
Block a user