dev-python/meteofrance-api: drop 1.2.0
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
ec4879d8fd
commit
2f1491bd55
@ -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 1898 Ebuilds in total, 1887 of them have in total 1907 (42 different) licenses assigned.
|
||||
There are 1893 Ebuilds in total, 1882 of them have in total 1902 (42 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1080|
|
||||
|Apache-2.0|419|
|
||||
|MIT|1076|
|
||||
|Apache-2.0|418|
|
||||
|GPL-3|126|
|
||||
|BSD|108|
|
||||
|LGPL-3|26|
|
||||
|
@ -1,5 +1,3 @@
|
||||
DIST meteofrance_api-1.2.0.tar.gz 17347 BLAKE2B 215efe887469cbacccdfd078bac0d9312b8bf7a20f3bd42f35092f801b8da45386ef98d373f148d115e8e5357e2824d3c33603424b96efa1419115556f0d9e5b SHA512 b2e5f1ab728b6945558c29a221034d895e6aacbb97bc12f0cf5903fd302512094806a587668f21d483fae8020b06a541cd08fa4d2f4469a5b524a0914daa005d
|
||||
DIST meteofrance_api-1.3.0.tar.gz 17827 BLAKE2B f312f3c17c103db4150b495eab53863658b628a6616aca461ccf999ddbed666bb9c60f4da3f03fe8fa513395a009ef32ffbacda42145f9734f7240fb21228138 SHA512 5e11cc3cd1d2db9db84a287c1acac3b695ae83655ea3fb7dbc522e4eef3994a1637f6480b0ea55d27f7e0bc89ff12e140609e0aff5662e28d4b4a6fe58341bed
|
||||
EBUILD meteofrance-api-1.2.0.ebuild 772 BLAKE2B b58c09e5996d56855a2df35ee7eb5119f2658b94ab37f0732df572ae924a686b68a3c5039062f325086de10ce084cf610c58c0e66e98df307daba052c53ca06d SHA512 00a2495cdb1793719af545c1518b921c0d3c45f9b6464a1e90a512dc52f28001bf7b38e54e8d5e517cd4481b00734dadca0ecd282132055856cd917e067664bb
|
||||
EBUILD meteofrance-api-1.3.0.ebuild 820 BLAKE2B 8c44744d0801a84935818b372723d3793ed18e54303b1b0ac4e01e330ea461881d776e260ac366019c604a2e11a6c204ac5047f38b7f840b36e1bedc61346986 SHA512 fa3e53cd2eeb05f7bab40d26e1d8542c84a9de05915e43a992e9ea1c0c4e87bf60575ffbed8531415b1e775a54e53bcadff17aa4343bc1b67cae72c9c617e00d
|
||||
EBUILD meteofrance-api-1.3.0.ebuild 820 BLAKE2B 1ccb51916b2aa5cd910469d4b051ab54048f692bc31658c9b21f7bfbaf322d4f34afd0977080dc287ab77a8c7cc0f0d6bde1d2ae20d07ac7c7a97c1e207867bd SHA512 cc33dc797b5e39bad8059edff8053212d4d0d7cc789bb025e9e05cb3d5953c503bfa6c4bdbee9de44283516415c4fda2f26bfb6ebd885f250ab018441e0d2e11
|
||||
MISC metadata.xml 523 BLAKE2B 467e17f7ccfd26cceb6989d40fa8399ca8211a0b5ec96f4012cd6527e1ec28cdf58ed742d92234086cb330e0db94b5037520f0f0117a1ff2c25a0ca32724fb18 SHA512 5942ef137cf2ffcab4445f204ec3ccfa6025cbd42ee4e17a307aa388d00b1c470b0592f2e23bf7c7f96e36458630fb0be00e15472c8e3ef3dbdd5c3aa052132c
|
||||
|
@ -1,34 +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=poetry
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python client for Meteo-France API."
|
||||
HOMEPAGE="https://github.com/hacf-fr/meteofrance-api https://pypi.org/project/meteofrance-api/"
|
||||
SRC_URI="$(pypi_sdist_url)"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/urllib3-1.26.6[${PYTHON_USEDEP}]
|
||||
>=dev-python/pytz-2020.4[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
@ -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=poetry
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user