blebox-uniapi-1.3.3 fix RequiredUseDefaults

This commit is contained in:
Andreas Billmeier 2022-03-18 20:32:27 +01:00 committed by Andreas Billmeier
parent ccffa8176c
commit 9a1dc45048
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 42 deletions

View File

@ -496,12 +496,12 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1818 Ebuilds in total, 1810 of them have in total 1819 (33 different) licenses assigned.
There are 1817 Ebuilds in total, 1809 of them have in total 1818 (33 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1089|
|Apache-2.0|345|
|Apache-2.0|344|
|BSD|107|
|GPL-3|107|
|LGPL-3|27|

View File

@ -1,5 +1,3 @@
DIST blebox-uniapi-1.3.2.tar.gz 34337 BLAKE2B bbcd87ef975b17becc1c8252bbc95d6afae553765d5871dd0bebccd87a1e39d7861a8a84edfccbc08a8ba970f6d4a0fcaa686525fa176ba9f5929125b584dbeb SHA512 3bd54a7eb354ef1ad4c7b94fb9a01cf7111b8454cb3ef941b69b8556d674bb6df6a732184d9876d5e8e5cf1d03a55beb3103a7bdc01f15d567da87b111fb9e62
DIST blebox-uniapi-1.3.3.tar.gz 34886 BLAKE2B ca40c0933948f5e84f9cec52a0d5b6dde0fc552e223624a5337e8d21c8681011db5e73f424fcc49e07921f790a395997d8cab3e76d2ded17122a7272ce61cff8 SHA512 ee72cc3f6afd7f631468dae52e50541ace119657e091d3efb08378c13c372ce997f5fb9339dc941358c72dc49b6e64ec4aa21b00f88619d90b73bb7d41e5a5be
EBUILD blebox-uniapi-1.3.2.ebuild 897 BLAKE2B 146d36d076974abeb489e2a66a42711f84407510fede2ccf0ac6cdf2741ee35521b24bfaaeaa8b2d9fc3cc5171030fc669dae968cd7349adc20053590a24fd18 SHA512 e2a0f240cdc2aac86134b7559def2d245ab7ab50decde984c2e61abf16ef122d6d4342b03c6077d47dca113cce24d4161080f268c72b4289e163a3e06a3b6234
EBUILD blebox-uniapi-1.3.3.ebuild 912 BLAKE2B 835e1f0f27656ae66e2722ef5da47b8ae6728f23704073d5976263d4dd0262461876314c271706e039b45ba139e7675dd7a9f5e3c7fd7bd308d5a4c0e5c0299a SHA512 0364bdbcf33f5e4fe4cfd9e9b16a2e63c095041e400de59519b05b405a4c0f5cc50f391f26e85db195cd60b45cc4ce134ba201f01b46b87b6a5ec152575f9089
EBUILD blebox-uniapi-1.3.3.ebuild 910 BLAKE2B 19a40c23b9149f3c3d44b9b48d74e0937fb86c905080110479351b9566287c5e5c7268ea5babc95c8b34bf517f16c2e566148a66540547d2eda7ff1b1a7e9418 SHA512 10d1e647d049b44b565736b7dc702a07a7e1b79037bfa988f44e61ef2fd6f58d6ffebcbd254e27c862a292778f72fdae222ad1c361a77b5de80555fb21d1533f
MISC metadata.xml 466 BLAKE2B 28e1ab1e148324d4fb674d63378e1fd8fa71617c53344f3d4d7deefa894c946deb62c06d5cdf8b21412816def36be8885ebf268dcfa3b374214effc0c88e90e3 SHA512 6d512a3efb955096a17bc876b09a5f5fa93890d072450858ef2febfb69fd5c9a105605023b016083e308ce3f0f9d27db72b594efa072815e8caa890a9fb4107a

View File

@ -1,35 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python API for accessing BleBox smart home devices"
HOMEPAGE="https://github.com/gadgetmobile/blebox_uniapi https://pypi.org/project/blebox-uniapi/"
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 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/semver-2.9.1[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )