dev-python/apple_weatherkit: drop 1.0.4

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-09 19:19:49 +02:00
parent ee44676f28
commit 6d65105641
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 41 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 1992 Ebuilds in total, 1981 of them have in total 2000 (42 different) licenses assigned.
There are 1991 Ebuilds in total, 1980 of them have in total 1999 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1125|
|MIT|1124|
|Apache-2.0|455|
|GPL-3|130|
|BSD|112|

View File

@ -1,5 +1,3 @@
DIST apple_weatherkit-1.0.4.tar.gz 3048 BLAKE2B 245f97bdfb3d8de3355a0a71228bf298d1c47de579fd941b1b2e83e7b0e15467b34dc49f449e3651d6332db8ca10149dd32b9e6141cdf22b26eb8b4d0cd33815 SHA512 7e907ee56d23020b0439424f9d60ca76a9aff2662d6b99ed162ff3481b2045e66e02323662069f5d123aee6b0d1ef5c05ee53df33e4eeaf786359dfb69afdb6b
DIST apple_weatherkit-1.1.2.tar.gz 3232 BLAKE2B a94fad2cec68ad035380603bcbb1176afc29ceb8d924809ed1c2d3b119d5936033a50edb0f5dec5e5342b3cfca50b1362f9315b64e01f0aae10b09a7a0c5b65b SHA512 74f1ef478686822d379a8ae6dab580f3d0b8719d6db992ed29d4be7266960b480804062f80117434c31130fa8fd070cccfd88dc17605dddd3de6765fa63f29e8
EBUILD apple_weatherkit-1.0.4.ebuild 796 BLAKE2B 6eb58e5e6415025e1841299b87e48faf370ff2bac442504a2c22e76ea15c543fc9aa6e1ed6521e606089dacd137a1fb1c5ddd63468cf086b08df60d3b81a5fce SHA512 c93f237f92a946f4f20d4669da903a3eb82678b990bbc9e1bf1f8fe2bbe4be7175318c1e035cbfe6d2845be17d7bcd4b7cb55b46dcc08382fdbd7cdcadd4d26c
EBUILD apple_weatherkit-1.1.2.ebuild 737 BLAKE2B 676954fdc1c5443aa221f0cebd327fa4d582e1514ff249c37cc848696bebc328fc400551ee900d016fa0954de4ff37024da67a42e3f1a484e1d2753d8f998d85 SHA512 6c15da2c917f93407927f32e1da5fde6e033a5d62437e8b31d5ff283ffc4408b529de682630d20b3f356dd95898cdae5192e022c9745918a66f4bfc4df91db91
EBUILD apple_weatherkit-1.1.2.ebuild 737 BLAKE2B bee16086298ef2f4e1e48170d68251e58b3827bce5c81ff8278a8a4a462f99917da1fddab270325b7d3d1ef4137d6b86af1e471c97edca2cd3db510428fa655b SHA512 4a1853bf5cbf756290be355b01be927cb3c6d60168ef20c037d9dc8231027fc541cc3cbd46dc7767f57ddf4b52d0a06a19076d9bca98aec72ded56e565e432e5
MISC metadata.xml 521 BLAKE2B 1a6df805792383b9009c07de3d9f187e9aec8cd1496b4e2815fc315b114a234bd07b595e3db3bdc183c0c95f5eace33efcccfae6d564d0cbe4d7ee26964d9a2d SHA512 2327f0aaa6f41c9c7be3a345b4899d4425fa183ad179c3753d1ffbd27f4ba83ef89dbba1a658e38a10a582809e593010561783746063ea6fdbbda077feb775a0

View File

@ -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 Apple WeatherKit API"
HOMEPAGE="https://github.com/tjhorner/python-weatherkit https://pypi.org/project/apple_weatherkit/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.5[${PYTHON_USEDEP}]
>=dev-python/idna-2.0[${PYTHON_USEDEP}]
>=dev-python/multidict-4.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=poetry
inherit distutils-r1 pypi