dev-python/forecast-solar: add 3.1.0

Closes: #3208
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 16:15:02 +02:00
parent b6ab189e06
commit 0836e8fbfd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 37 additions and 5 deletions

View File

@ -617,11 +617,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 1977 Ebuilds in total, 1966 of them have in total 1985 (42 different) licenses assigned.
There are 1978 Ebuilds in total, 1967 of them have in total 1986 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1119|
|MIT|1120|
|Apache-2.0|447|
|GPL-3|129|
|BSD|112|

View File

@ -1,3 +1,5 @@
DIST forecast_solar-3.0.0.tar.gz 8135 BLAKE2B 3d96f09153e99a94964f3a8bb858648ff583f333bd83421a250ba9b58148dd24933168a35250f9844e267a853080c044683d39c447415e774b6da753e1be7ad9 SHA512 a16685a8e49e749b3e6e86903631f393fdb369210b5d84f0d3cf70c134396d6603b814fa8c7a594057fc71a25d1b6fa6611af3c51e288b7c77fd4b619d5da770
EBUILD forecast-solar-3.0.0.ebuild 870 BLAKE2B 8e86de5e9783def589b953ecb24396cfa38d03ede45beb2cd952b4b7c9e58a6df2b579d7daf1ff6b4b25c21094644eb742c093e0f8df498882558e9afd9adfcd SHA512 a6eed805d24bd778ad6be2bb121344fcfac4c4ae31ae7f7140282de23e24161099b84a113ff383d2b23cf70aa40a461686413b37aeb6be986b848ea5c14ffed5
DIST forecast_solar-3.1.0.tar.gz 10823 BLAKE2B 28382aedd7c1786a55d956a1ef8a4414200ab41a81ffff30f764c9621b6710e4419d65ac5a5d3036e4946b52b40cac22337155434c7228357e09fcaed41c563c SHA512 8090b80dfbd9ed7ef9efdd494a86feab7538e83dac7eb28cd2c7bea686ddcf55b2b9eb19ddde126ce5396946f4e7d8687ed247fc8389d29b56f0a3a44606b1bc
EBUILD forecast-solar-3.0.0.ebuild 870 BLAKE2B f041d6a241c5eeb06e7a4a965198a8bb385c1c6559191dc05024d127a4e4b9857f8feed5ef9a7709fb6e655f7e9cf0fa9cba70cc2c15c1a486c02fe7924c61e0 SHA512 368371c0f92ed7811b5aada748d92d31eacdf405d6efba26d02d7e56071141729fc87e105900a0e046534e711e5b33204a10a4370b3735a65d6d54ae8594d6a5
EBUILD forecast-solar-3.1.0.ebuild 768 BLAKE2B 16de07c03d9947a969fa03bd36dd5b9a6306e3f49ba099f3f5375fc497502af062805d1c5dc8418473fdd8f2003d28ccda9515e241aad8a43211494d7365de54 SHA512 e6535bd4740154dd41c6f69f493ea6f4ccca1b7c150183d823658431ab09e108650fd9edb13fc04259cdc290208b9ee7043f04f4c1965f344d11e92db4f1d0a5
MISC metadata.xml 536 BLAKE2B d00bc019415c907a49c9ab12a1c4735b31feb7a77ce8a8d227947cab6aee0d6109c6ce2543688d54f4e573b90c60fb2bab216bb6d02643748cb31c8fad3e2292 SHA512 a3084fa4c3f2ce26f1828744110e9ca03c730aa51d243d7c02024e4d5adbece7f1d6b33b65e01d60136743b89db8b177af58fae83eab157982dd2e05d453804f

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

View File

@ -0,0 +1,30 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..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}]"
# 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