dev-python/PyViCare: rework, remove olds

This commit is contained in:
Andreas Billmeier 2022-10-15 13:12:23 +02:00 committed by Andreas Billmeier
parent 72ed954b75
commit 95a7b7ad16
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 45 deletions

View File

@ -538,12 +538,12 @@ 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 1705 Ebuilds in total, 1698 of them have in total 1710 (35 different) licenses assigned.
There are 1704 Ebuilds in total, 1697 of them have in total 1709 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1021|
|Apache-2.0|327|
|Apache-2.0|326|
|GPL-3|101|
|BSD|98|
|LGPL-3|26|

View File

@ -1,7 +1,5 @@
DIST PyViCare-2.16.2.tar.gz 24394 BLAKE2B 2b17f72dfe32bccbd857826b164fb762fac5ca029f24a2500744049745eece7037f76c07012510fe967f09d8c682aeff157cd477034c834790ac872057742333 SHA512 a0640bb027c654370c7d31c8673f1300e005b96b439fcf5854f27961993204e5c612c1e7491559a7055e397ddcdd720436d9ea886be981023010b2e38262ae7a
DIST PyViCare-2.16.4.tar.gz 24430 BLAKE2B 8702b6c7c650b0fcf1f886ea5be0487976b6ba7d628612054a07de95ff6e36f454d261be6ef37475f66ad8fefad5f1237ce3596b2811299bab7a3f8e1319681b SHA512 747cd44a1fa611dcf50183e509d265363131d84f60ce332a9489a7d07b61025023096735c5b2338e3663bc5472e2b0b4104a6be48686574ce345f4565fad7060
DIST PyViCare-2.17.0.tar.gz 24451 BLAKE2B 9346847e7ff4c8c281903e675ee8c39b6388816f5e372040ecf1b83acf2574f8ad6b7a661ac50644c4c820330da87ff8e0e7e220d45135465b7b0c145a61828a SHA512 03bcef468afac1eb1b897f59bb767a8b8b89382908628d59711785e8e81aedde270d5dfd256761f657f85e2a3419ed3cf0134850ba1b930fd32e3d0bf3e1d70b
EBUILD PyViCare-2.16.2.ebuild 925 BLAKE2B 79ca2c6ce2d8f1303f09bb57b94237d06bc00dd1b4d2615d0efcfea7386e70afea73a3eb82558bcb75d3345ee25337429356f378da43d259e0a103a143ed4d78 SHA512 573b928cea21d5138d74d2dfa4349891b929fb71d86dddeda9ccc64895649e2522b41919ef8194be9e7e8dbaaff2476cb7e09b41f6eec9d788e2ffc1e43abff7
EBUILD PyViCare-2.16.4.ebuild 925 BLAKE2B 79ca2c6ce2d8f1303f09bb57b94237d06bc00dd1b4d2615d0efcfea7386e70afea73a3eb82558bcb75d3345ee25337429356f378da43d259e0a103a143ed4d78 SHA512 573b928cea21d5138d74d2dfa4349891b929fb71d86dddeda9ccc64895649e2522b41919ef8194be9e7e8dbaaff2476cb7e09b41f6eec9d788e2ffc1e43abff7
EBUILD PyViCare-2.17.0.ebuild 925 BLAKE2B 79ca2c6ce2d8f1303f09bb57b94237d06bc00dd1b4d2615d0efcfea7386e70afea73a3eb82558bcb75d3345ee25337429356f378da43d259e0a103a143ed4d78 SHA512 573b928cea21d5138d74d2dfa4349891b929fb71d86dddeda9ccc64895649e2522b41919ef8194be9e7e8dbaaff2476cb7e09b41f6eec9d788e2ffc1e43abff7
MISC metadata.xml 459 BLAKE2B f4ad5b2d86e598398850e89524f5b2a536c08972d3226f8db225145dde7cb82b802ca5fb80c75e9766a342712e6f1c3010383e16627f83a26305a56b406563e4 SHA512 5d25d5aa24cb2a8e6bfd840c80b70823687dec39181220f5fe53b74822b98434d0c0b6f7cec8b1ef15ad229aa291bde5a31c10591c4107da052fbea98da6823c

View File

@ -1,41 +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="Library to communicate with the Viessmann ViCare API"
HOMEPAGE="https://github.com/somm15/PyViCare https://pypi.org/project/PyViCare/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/requests-oauthlib-1.1.0[${PYTHON_USEDEP}]
dev-python/pkce[${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
}
src_prepare() {
sed -i "s/setuptools-git-versioning<1.8.0//g" -i setup.py || die
eapply_user
}
distutils_enable_tests pytest