dev-python/zamg: drop 0.2.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 18:19:19 +01:00 committed by Andreas Billmeier
parent 71dfa29395
commit f94bd78620
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 37 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 1564 Ebuilds in total, 1553 of them have in total 1570 (42 different) licenses assigned.
There are 1563 Ebuilds in total, 1552 of them have in total 1569 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|899|
|MIT|898|
|Apache-2.0|336|
|GPL-3|96|
|BSD|86|

View File

@ -1,7 +1,5 @@
DIST zamg-0.2.2.tar.gz 7992 BLAKE2B f50d8deffd1710822526a3671c98ee33098e32f0536241802e4176e844f6c9d67711775fc961ca9e41620eb5eeb0c5117acf506e0b50540355c725c2db6df6e9 SHA512 55e3c09435ab44d2ff4c37ff48a36ed8459927fec810517e13cf1479a60980a7f70b1abd36222c782a6a15151948b23535f99a0d5eea45203255437268da2d4e
DIST zamg-0.3.0.tar.gz 7058 BLAKE2B a17b205ca7a83b64703188c53bc1ba510a1447d13ce630481d9d211e686f5847a2fae5a55ba50af9b4836bfe638784c1577a2f31360e946beb9b5dd0fa48036e SHA512 5d5a3c26d922b33195abb385a7bc03c207625b44283d52f76cd09a3e4be9d39d7974a273498d56324c8806ebadcac26bf156067de713b8e289621f79478e0381
DIST zamg-0.3.3.tar.gz 7073 BLAKE2B 8e349b1b8273b44e26beb477be262eb427932e372fb357da794000535319b58ec643b01c208c4f9b19b8c18ed88dcf179857097a27d086b8fce59447a6acf1e1 SHA512 18c6bedbece8d7957242c99d55222e86314d4f9da6a506c52353d87e3a4c99dc59b2f518290e394c39580e8330e4b383b9aa3ea744e20b6c13ef2d0f8a417b06
EBUILD zamg-0.2.2.ebuild 784 BLAKE2B e06ac8e392f8d1fe83763f77cb84bb300ab156fa3cbe80ca60f6d24003b8ccaf14db64f6b0b9c25563f37d41907a025b166aec184b8b8114995bf65305917eb5 SHA512 f566070332ba8379ae06bf7e52cf4467eaed5d45df7ed87f740e58c829e09fa7598884b1595ed94f24f8d8be19886a9066778948af0a87487320d7c64094b1e2
EBUILD zamg-0.3.0.ebuild 784 BLAKE2B e06ac8e392f8d1fe83763f77cb84bb300ab156fa3cbe80ca60f6d24003b8ccaf14db64f6b0b9c25563f37d41907a025b166aec184b8b8114995bf65305917eb5 SHA512 f566070332ba8379ae06bf7e52cf4467eaed5d45df7ed87f740e58c829e09fa7598884b1595ed94f24f8d8be19886a9066778948af0a87487320d7c64094b1e2
EBUILD zamg-0.3.3.ebuild 784 BLAKE2B e06ac8e392f8d1fe83763f77cb84bb300ab156fa3cbe80ca60f6d24003b8ccaf14db64f6b0b9c25563f37d41907a025b166aec184b8b8114995bf65305917eb5 SHA512 f566070332ba8379ae06bf7e52cf4467eaed5d45df7ed87f740e58c829e09fa7598884b1595ed94f24f8d8be19886a9066778948af0a87487320d7c64094b1e2
MISC metadata.xml 512 BLAKE2B 6b2212f40aa70d58f44a3e09b59b4e1aa3358235a52a10a742bb9bd5a75abd0ddeded3a70c3dd914a1d9f48a3f9567280a0533e605d91853f4640e590a3afdd8 SHA512 38a1bc15c3f16f969ef20e106dd2bafcb5f7be7f191f79cec864c6622edf6105f5678b8f2cf6ddd0b3fc1c3c8a9f7becab265dd993d135fe0e76a010439e120e

View File

@ -1,33 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for ZAMG weather data."
HOMEPAGE="https://github.com/killer0071234/python-zamg https://pypi.org/project/zamg/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/aresponses[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest