dev-python/homematicip: rework, remove olds

This commit is contained in:
2022-10-15 10:28:53 +02:00
committed by Andreas Billmeier
parent dbd683c1d2
commit 5ad7c58091
4 changed files with 2 additions and 84 deletions

View File

@@ -538,13 +538,13 @@ 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 1781 Ebuilds in total, 1774 of them have in total 1786 (35 different) licenses assigned.
There are 1779 Ebuilds in total, 1772 of them have in total 1784 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1058|
|Apache-2.0|344|
|GPL-3|113|
|GPL-3|111|
|BSD|101|
|LGPL-3|26|
|GPL-2|23|

View File

@@ -1,7 +1,3 @@
DIST homematicip-1.0.2.tar.gz 125959 BLAKE2B 2c121a553fa8a2f478914bc8dbb208ee8c39aaa9cd22d5b39e90a38be2589b850bc25ba1c316718f8f8be40db57a11c7c00146465468c1a53bddd156897643b8 SHA512 4a9815a2c32f8cad10323959da0fdb07f244a8f6b2ed0421dd1440559fe93ec32031a4d054bc07559eb5d762a74dc5fb6c63c14984d8cbe58d66e26aa438007c
DIST homematicip-1.0.4.tar.gz 126211 BLAKE2B 4441e34e759680da9d580b8f02f92a8a4e86c6950bd5efbf3db7537627ce08ddeb3fb9d28b15ed03c17c599680f11c3608fcb577c05b9606f60fe5a9a5b316aa SHA512 00357701008510c98256ec03f4d186cb8d55382072acf94fb18d2e01a41b2a2a1dd87ad669c9c77ee7b56a38c861611ccb98611499725c3c89f16c59c7f631fa
DIST homematicip-1.0.7.tar.gz 127790 BLAKE2B d8d38cb199d27bc47028f633a0b15b2cab8091849561e74f3c1388f7e590292e89e9549aea6ec08163bd2ab700bbf720032e54af54c7282b1ec8d329664522d9 SHA512 fde6d234f63c17fef3cd42fe6c1b024968002b3ac65a86af5dd2d3b062cda6a66d4d1d6641a52aa2ae8efe83de5b3966d1a3197ba5e111d7d3c05f07a50af2d4
EBUILD homematicip-1.0.2.ebuild 1002 BLAKE2B 06f73067f20492c57ec2ae568f8064640f09377a0edebc44663ad1276bcab460d341ebeaede4998c854dbc64d7e5dafdf7c331dab5d4cb8495bb2cd24b503de3 SHA512 1b1381b89a7e92a3ac0e3f247ad5b4b022a7d7b283c4b76902cde2445b210a7307146571ceac87ca757f83595aceb8ab903c74462f2db87b30a884de5d82c1ec
EBUILD homematicip-1.0.4.ebuild 1025 BLAKE2B 9389753b8888bc81077ea94b6893db87de909b413ba8c0ba47fcc1d30262d6e4d2a8e5c7028a1f2a0a2fe43bbaf61c87d14b09ddafe312c066088a7a7ed94647 SHA512 24771a9360001c1f57818db1632eb15ec0e5034791718d4709314519c4403815bfb87381dee0583284df7c8df3b9be9c72a713db472dab94dff6a213146f6b24
EBUILD homematicip-1.0.7.ebuild 1025 BLAKE2B 9389753b8888bc81077ea94b6893db87de909b413ba8c0ba47fcc1d30262d6e4d2a8e5c7028a1f2a0a2fe43bbaf61c87d14b09ddafe312c066088a7a7ed94647 SHA512 24771a9360001c1f57818db1632eb15ec0e5034791718d4709314519c4403815bfb87381dee0583284df7c8df3b9be9c72a713db472dab94dff6a213146f6b24
MISC metadata.xml 455 BLAKE2B 43fe0ff218d8d60193aeffdc4e6b6981819618e208ac9a2eff1f6cb88c8393d492b082175fabafe449793e46312e444bac9bb94cfb3b950d5cc9d7072097c4a3 SHA512 ca605da32ba2c98ccd0e7827522341540ea09c426210b01d9b2c2366faa0d1f48ee0763e84c7fd7221fa21bfa1d750ad5e94320adf6022a23f875243d7cdca47

View File

@@ -1,38 +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="An API for the homematicip cloud"
HOMEPAGE="https://github.com/coreGreenberet/homematicip-rest-api https://pypi.org/project/homematicip/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.24.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-0.57.0[${PYTHON_USEDEP}]
>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
>=dev-python/async-timeout-3.0.1[${PYTHON_USEDEP}]
>=dev-python/aenum-2.2.4[${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,40 +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="An API for the homematicip cloud"
HOMEPAGE="https://github.com/hahn-th/homematicip-rest-api https://pypi.org/project/homematicip/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.24.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-1.0.0[${PYTHON_USEDEP}]
>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
>=dev-python/async-timeout-3.0.1[${PYTHON_USEDEP}]
>=dev-python/aenum-2.2.4[${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