dev-python/pyeconet: drop 0.1.20

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 18:32:58 +02:00
parent 1a0ff2d047
commit 09d35c5bb4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 6 additions and 40 deletions

View File

@ -617,12 +617,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 1877 Ebuilds in total, 1866 of them have in total 1886 (42 different) licenses assigned.
There are 1873 Ebuilds in total, 1862 of them have in total 1882 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1064|
|Apache-2.0|416|
|MIT|1062|
|Apache-2.0|414|
|GPL-3|126|
|BSD|106|
|LGPL-3|26|

View File

@ -1,5 +1,3 @@
DIST pyeconet-0.1.20.tar.gz 12450 BLAKE2B 71a5b6bf6a85314342b28dfea238b53e085648bff755f0919c9fe162d28f050c4a57712ce2077b63ac37fccb2fa3ad61e3eff30c69a635e994508d2a75858b44 SHA512 99efc3ec7cd26b48a834f885b90588b7ce4c575d372b24328b2904577ecac3c6d180bcdab839effc3e667d22f7738d2f7a181fec7c5d3b177c4c8a2f55ad9342
DIST pyeconet-0.1.22.tar.gz 12567 BLAKE2B 42cbd3a53d29da1122607ea1f22c1c021f1a18c4db6ee2000df6ae05f8b37ded3c107c99fab437b4cee7a557b53efebafc420867fda62626c69bffa7b086070f SHA512 25f519c454d402eea9065e77edae4b4dcc700818a79664def709f1f39f55152f51553e4adffc9eac5580b7a30a77614285d583026d941b70bab585a1f44ee3ad
EBUILD pyeconet-0.1.20.ebuild 693 BLAKE2B f83ee4740b66d648cb8942c5d6b2a8ca133fab63418bc19a4741485aecbd8aea3c95242f2d1c6e09acc81b9afe1d5705ded9ca6b19762bccf86538d979c76a31 SHA512 8990aefc0a50d27d230f3bfd0140682f4e76f93b5f2a1cc1c9fd8c72c7e5bb3bfbee99ad219791d384f84701a95db63a191d3d689ad9508af56a8abc860e620e
EBUILD pyeconet-0.1.22.ebuild 693 BLAKE2B f83ee4740b66d648cb8942c5d6b2a8ca133fab63418bc19a4741485aecbd8aea3c95242f2d1c6e09acc81b9afe1d5705ded9ca6b19762bccf86538d979c76a31 SHA512 8990aefc0a50d27d230f3bfd0140682f4e76f93b5f2a1cc1c9fd8c72c7e5bb3bfbee99ad219791d384f84701a95db63a191d3d689ad9508af56a8abc860e620e
EBUILD pyeconet-0.1.22.ebuild 693 BLAKE2B 6de5818dd7d71be8bd2faefa82b71a0e8c35d8fc761ad08aea9ea1217eb4e1dff3e3ca9b43eafb76dd0edba39c3914cf55f0b6566fdb698f8be318eab9063b41 SHA512 6bdca8fbdf7ba617ed7d1c7efce9889a7e52a5ac46a8ca84cd2f105b6c13ba5b1da713c1bda3ebe830e180b10375145c3109b6016b0d6f2b4967bf15720754c5
MISC metadata.xml 387 BLAKE2B a1a37b7814a773a4e1358488de97fed1adae65e1cd5b70673314ffc4af9d830161aa75dcd306a666af959b8bc7fec946b115e7ec2309ec4b9e8660f0895dc1ca SHA512 fa1279aa2a3fe935f62efa8501c867c25d82ac023b4b3321db06f78c5e0d419d55226d630c4176401079b50646c13081d0037a31df1d31b1725b02f2de8ee3dc

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="Interface to the unofficial EcoNet API"
HOMEPAGE="https://github.com/w1ll1am23/pyeconet https://pypi.org/project/pyeconet/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.6.0[${PYTHON_USEDEP}]
>=dev-python/paho-mqtt-1.5.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi