dev-python/pyecoforest: drop 0.3.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 18:31:54 +02:00
parent 0147252b6d
commit 1a0ff2d047
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 6 additions and 42 deletions

View File

@ -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 1880 Ebuilds in total, 1869 of them have in total 1889 (42 different) licenses assigned.
There are 1877 Ebuilds in total, 1866 of them have in total 1886 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1066|
|Apache-2.0|417|
|MIT|1064|
|Apache-2.0|416|
|GPL-3|126|
|BSD|106|
|LGPL-3|26|

View File

@ -1,5 +1,3 @@
DIST pyecoforest-0.3.0.tar.gz 9878 BLAKE2B c453b85f5c841d28b43e743e45bcdcbd40cf8fbd8ae6cfc05b499130f7e68fa21460f929eabedda565b46108688f5d2b025794509bfe36718d39ac87df20d041 SHA512 50be04ac1c76202844804a2d193d76ab7b0eee05f53f1aaff2ee6a505b4543933181db415ef53f39e449d925f6bf2063a951f5c73c998cc8b29e6cda5080815b
DIST pyecoforest-0.4.0.tar.gz 10134 BLAKE2B be5bc0af577fa32cea84ee1533b87703be9254a20f4fc0ea2800b17efcd99e962edbfdd9a99be1ecc6561fdf1785e4b2c96f7b60f21d15534879ab7e26122ec7 SHA512 b836cace3b5858c54897e0cde3d146e117b3464be06538e88ffdc9269fa65930921a561ab976dcc707929280cde0872673b89ac4de4b8211b662cbcfbf1ec404
EBUILD pyecoforest-0.3.0.ebuild 766 BLAKE2B bd568d3b9518f92dfa311cf656875be4842d9e5da8fc5a4f5f2f17643303126a797c64c261c4e54c49bfb9225ef3da16a7a861c038037b062528bd319fe759e9 SHA512 7ce68b86e41b1c3ea368be746835c7539c066e9aee95ee690716397020968c215488e8833f8c005d4172c237dd3ddcbc738920d459dc07933dd5f4aeb1d1e21b
EBUILD pyecoforest-0.4.0.ebuild 766 BLAKE2B bd568d3b9518f92dfa311cf656875be4842d9e5da8fc5a4f5f2f17643303126a797c64c261c4e54c49bfb9225ef3da16a7a861c038037b062528bd319fe759e9 SHA512 7ce68b86e41b1c3ea368be746835c7539c066e9aee95ee690716397020968c215488e8833f8c005d4172c237dd3ddcbc738920d459dc07933dd5f4aeb1d1e21b
EBUILD pyecoforest-0.4.0.ebuild 766 BLAKE2B 734ec2235160d42ea7b114db6ea1e91b1527d2bd7e76c640ab8401763aa4f8412d636df91a471acc851f7ce7723eb8e6604260dc27cd4a81142dc25a04373f0a SHA512 78dd97b1bf8c69f7cec158a7e45909ef62d0d20a90e309b0f82053d94f23fa21d178bb1dcd5c8621c94995f65cd669ad436b7eca43c5aa9df382a0e41d25dfcb
MISC metadata.xml 523 BLAKE2B 37b4ac15d4a18ed632ba391f5f3e18c42b38fe46fdbd547dba6e56a8d460d5223381da5e3aa463bd47c65107d87051018d44a18f6e255fd45de0f06c4f435141 SHA512 46ea3ae3ce3fddedcf1655cc776b8acbd717b1663c4dada8c4bebb8c12d366e20119423d0806a4a5180c65b8a64abf2b29e3a2ce46c44bbd425ec9eeb7b48da7

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 library for ecoforest local device."
HOMEPAGE="https://github.com/pjanuario/pyecoforest https://pypi.org/project/pyecoforest/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/httpx[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/respx[${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