dev-python/homeconnect: rework, remove olds

This commit is contained in:
Andreas Billmeier 2022-10-15 10:29:23 +02:00 committed by Andreas Billmeier
parent 5ad7c58091
commit f867d1ccd1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 76 deletions

View File

@ -538,11 +538,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 1779 Ebuilds in total, 1772 of them have in total 1784 (35 different) licenses assigned.
There are 1777 Ebuilds in total, 1770 of them have in total 1782 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1058|
|MIT|1056|
|Apache-2.0|344|
|GPL-3|111|
|BSD|101|

View File

@ -1,7 +1,3 @@
DIST homeconnect-0.7.0.tar.gz 8139 BLAKE2B 1f7e7acd3b3180c84638571f837696530a72cc29d906535475c02e1c6d912dd2bdd2e8fb5199b4550f1eb6ada193645e1c73a079ae3448a4e0bd6f3f9221695a SHA512 42a62989c2a5bef2bd40e84e3425308d956674fbb7b69b3ad4ba07eec64293ed2148f1b2f14f180f6999227c45c6de6348252c3e50b7c0b5aec9ccac1f00bdbc
DIST homeconnect-0.7.1.tar.gz 8016 BLAKE2B df438176532bcbbfbb5f48facbb9888b4726e20da31df22d5504f1ae73c92557c351afc004534b782f29a82b80378fa2d667d9662ef620839999e8adbc9a514a SHA512 a74f4981bdb8c7106d2129b0dd637ac00084fc18ba8f960077ddf6615c49d346fcb3dc2696a81aaf4971ee3f8d25bcd60771161a08b1df40b88ac88aee9bed33
DIST homeconnect-0.7.2.tar.gz 8123 BLAKE2B d11f4fdcebc4d91c9d81707352af2d19814f1aa7e4cbda46514baf02d0f48dff0a40c4a0eabf6518641f3e31fc4384abc380178a8d0038a8be3a5799fa2df09d SHA512 49134749ae63dca2192702c4a74eaef81d1955bb353d5f246347a3085df77a8fb0d8cb353c661d567a1736da1c6c04e81e080fbb26592187c24af0398949117b
EBUILD homeconnect-0.7.0.ebuild 792 BLAKE2B 9318e3367bf80a829bed15d66af2ca1966e2338961879e0f3d1dbe85e676f7223627cdc1bf03be2e3e18fb648b3b5c7fe38d4f9421e0966f3680175ed44ef9f6 SHA512 0d3b1b148d13186336e7d462c36963392b3f935c6eed5515a4f18cff6ba4afade48671ad4b60bde8a60a3f7ce1490970ee9ef829372623fecf2bb7e95e82cac0
EBUILD homeconnect-0.7.1.ebuild 823 BLAKE2B e3f96000d88d632cc10ba7901e35dd855f7efccebdf5deef623609d63ae23d3b0966ec5e390aa70ceb40cfceb5ac29dc2d5546626f6c8c7bf2c2fde6d7960938 SHA512 921edf7b2ff57147f2bab142d069884e21d6aff096f815afc5b546712d39f588eac3fca875fc0c5513d044cc3f2c5353e64c81054462eed24fb775a625f959a3
EBUILD homeconnect-0.7.2.ebuild 823 BLAKE2B e3f96000d88d632cc10ba7901e35dd855f7efccebdf5deef623609d63ae23d3b0966ec5e390aa70ceb40cfceb5ac29dc2d5546626f6c8c7bf2c2fde6d7960938 SHA512 921edf7b2ff57147f2bab142d069884e21d6aff096f815afc5b546712d39f588eac3fca875fc0c5513d044cc3f2c5353e64c81054462eed24fb775a625f959a3
MISC metadata.xml 458 BLAKE2B fa7b32908c10cd00ebaa2dc2a0840480a9bf9cc8b4675fe468bf5fab5d192693f5e964ccbe9ab6fe76564b808d68953574b2e0f368ea5ae2ff0da60ba8fd84c7 SHA512 9fd68dd6a4318a932fcf876ddbe278ab0c904dfe519bfad3c623d0846509b7b8a8a5ee4722b14406042378e5c3dd7f6342df40f898f28dbd2651710ca30482f9

View File

@ -1,34 +0,0 @@
# 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="Python client for the BSH Home Connect REST API"
HOMEPAGE="https://github.com/DavidMStraub/homeconnect https://pypi.org/project/homeconnect/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${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
}

View File

@ -1,36 +0,0 @@
# 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="Python client for the BSH Home Connect REST API"
HOMEPAGE="https://github.com/DavidMStraub/homeconnect https://pypi.org/project/homeconnect/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${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