dev-python/vsure: drop 1.8.1, 2.6.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-03 18:36:29 +01:00 committed by Andreas Billmeier
parent 337d8d4828
commit 7197c6d3b7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 69 deletions

View File

@ -612,11 +612,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 1748 Ebuilds in total, 1737 of them have in total 1751 (40 different) licenses assigned.
There are 1746 Ebuilds in total, 1735 of them have in total 1749 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1009|
|MIT|1007|
|Apache-2.0|370|
|GPL-3|103|
|BSD|100|

View File

@ -1,7 +1,3 @@
DIST vsure-1.8.1.tar.gz 10829 BLAKE2B 736264e96c596c584d7329bf7ba3f2cc2639acdc22411124e78fc69a7a7842e492597da94e67277ca8c5788122e51642ac201720d64bdd381516a1d6ce5e0736 SHA512 91321d5166c67a7b77ea2b242c42b573b677937969d8329959f40085bc082e18e8e39bc12383d8a1ed0ed459b90a2bdfb5fa981f38641bbb7a9fded17461b6f9
DIST vsure-2.6.1.tar.gz 12466 BLAKE2B af939a47517719c8f7b661754d9d1b2b7225fabf1c94be86f898e6730b02961b5936206351d64335c6ab58497043ced18ffce39787369db4436ec43f3eda04d0 SHA512 f61c196d7746314cb1dad2cc93e1ccb1dd95545fcadcab916fee9f51a3b146feb73bbc44b5d8012621be771cc9adbc55f9ff8ec101fc07d52110b37a82161e5e
DIST vsure-2.6.6.tar.gz 12210 BLAKE2B 54f1810d9ffaf3231065c541eb3698fb1ec353bc9a2c8aa4bb2b8ba10b023e67fc0cb76c74b7d38e5e98d1b13cb5d887ee937589d3337fbbbb7bc418c2af45f4 SHA512 0373d8b4be9ce639457c2ee570da6363f598b713571802798e30545dad674a7ce4ae8f3484a816cbf57c8c38be553d44a507e45dbceedd7dd03e41e0ec88f4d4
EBUILD vsure-1.8.1.ebuild 675 BLAKE2B 9e9ac507ef692dec11b50b9f35bb75e8c5987ef0e718694c0d8bc95edb0fa9f87124c2fadeec9f51745dfba1bc59415e2e2c91ea5108ea1431562269fdaa9734 SHA512 f48308e838aa6ef3515f2b3095b2831f4b8353eac434d7141dd0d9ece7c7913d25846464e5743b188d5e1d3e8622678c61fab7d56e6e63947cfa9d44d8127c15
EBUILD vsure-2.6.1.ebuild 711 BLAKE2B ee03275bb47b1b1da09fb88c1861583ab045675b984842d0bafcea32b1fb9e44dc0f1cf84834f681b64254e5a39f8c1886d6c3fabadc8dca536b1d63f103a8c0 SHA512 42601678808aa96125aada610c167f8503f1edfe2768a735ec356df22bf3eed41848ebfff1ebf53215ead8a88aa3e91af97348112ed1c8ab81e3fbc3d3dd7a11
EBUILD vsure-2.6.6.ebuild 711 BLAKE2B ee03275bb47b1b1da09fb88c1861583ab045675b984842d0bafcea32b1fb9e44dc0f1cf84834f681b64254e5a39f8c1886d6c3fabadc8dca536b1d63f103a8c0 SHA512 42601678808aa96125aada610c167f8503f1edfe2768a735ec356df22bf3eed41848ebfff1ebf53215ead8a88aa3e91af97348112ed1c8ab81e3fbc3d3dd7a11
MISC metadata.xml 526 BLAKE2B 75f72474d332c3f2215509a9551f02412bc05213e518c50b0ee812ffc881ff8e9c9e13e11d60b3b9726b09deee74d0d78b4ddaa208925da512be74753f5b200c SHA512 4ccd05cdc7bb8c44334c57e937f2ea8d35cef8294e1126a74b431447c529d5c33e2534ac3b785b23e7576cd94c5381c2033ce9b36898d4b5aa5e37cead593185

View File

@ -1,31 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Read and change status of verisure devices through mypages."
HOMEPAGE="https://github.com/persandstrom/python-verisure https://pypi.org/project/vsure/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.20.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,32 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Read and change status of verisure devices through mypages."
HOMEPAGE="https://github.com/persandstrom/python-verisure https://pypi.org/project/vsure/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest