dev-python/forecast-solar: drop 2.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:20:56 +01:00 committed by Andreas Billmeier
parent 6fd4b11df9
commit 2d098bb201
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 42 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 1697 Ebuilds in total, 1686 of them have in total 1704 (42 different) licenses assigned.
There are 1696 Ebuilds in total, 1685 of them have in total 1703 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|987|
|MIT|986|
|Apache-2.0|355|
|GPL-3|108|
|BSD|93|

View File

@ -1,5 +1,3 @@
DIST forecast_solar-2.2.0.tar.gz 7491 BLAKE2B 133410ae705f3b944de0d05e8cdda7059077e95aa2de2e3d8dc4b88c5631e4fa763b16e93386a2d0b6b914ca26d410b944ce54aa93396bc56eeaeb45f9d026d5 SHA512 7e971c45090580911e4f07b7472309e4438273872cf371ed1e5eeb0295a8cb7ac62e8b6814b8e393a792a6435fef87a5827c3d293e5341f8c997fbad8666d204
DIST forecast_solar-3.0.0.tar.gz 8135 BLAKE2B 3d96f09153e99a94964f3a8bb858648ff583f333bd83421a250ba9b58148dd24933168a35250f9844e267a853080c044683d39c447415e774b6da753e1be7ad9 SHA512 a16685a8e49e749b3e6e86903631f393fdb369210b5d84f0d3cf70c134396d6603b814fa8c7a594057fc71a25d1b6fa6611af3c51e288b7c77fd4b619d5da770
EBUILD forecast-solar-2.2.0.ebuild 870 BLAKE2B 8e86de5e9783def589b953ecb24396cfa38d03ede45beb2cd952b4b7c9e58a6df2b579d7daf1ff6b4b25c21094644eb742c093e0f8df498882558e9afd9adfcd SHA512 a6eed805d24bd778ad6be2bb121344fcfac4c4ae31ae7f7140282de23e24161099b84a113ff383d2b23cf70aa40a461686413b37aeb6be986b848ea5c14ffed5
EBUILD forecast-solar-3.0.0.ebuild 870 BLAKE2B 8e86de5e9783def589b953ecb24396cfa38d03ede45beb2cd952b4b7c9e58a6df2b579d7daf1ff6b4b25c21094644eb742c093e0f8df498882558e9afd9adfcd SHA512 a6eed805d24bd778ad6be2bb121344fcfac4c4ae31ae7f7140282de23e24161099b84a113ff383d2b23cf70aa40a461686413b37aeb6be986b848ea5c14ffed5
MISC metadata.xml 536 BLAKE2B d00bc019415c907a49c9ab12a1c4735b31feb7a77ce8a8d227947cab6aee0d6109c6ce2543688d54f4e573b90c60fb2bab216bb6d02643748cb31c8fad3e2292 SHA512 a3084fa4c3f2ce26f1828744110e9ca03c730aa51d243d7c02024e4d5adbece7f1d6b33b65e01d60136743b89db8b177af58fae83eab157982dd2e05d453804f

View File

@ -1,38 +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="Asynchronous Python client for getting forecast solar information"
HOMEPAGE="https://github.com/klaasnicolaas/forecast_solar https://pypi.org/project/forecast-solar/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/aiodns-3.0.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
# fill empty package version
src_prepare() {
sed 's/os.environ.get("PACKAGE_VERSION")/"'"${PV}"'"/g' -i setup.py || die
eapply_user
}
distutils_enable_tests pytest