diff --git a/README.md b/README.md index d96fc45c0..1a7ee3a97 100644 --- a/README.md +++ b/README.md @@ -617,13 +617,13 @@ 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 2004 Ebuilds in total, 1993 of them have in total 2012 (42 different) licenses assigned. +There are 2005 Ebuilds in total, 1994 of them have in total 2013 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1135| |Apache-2.0|459| -|GPL-3|129| +|GPL-3|130| |BSD|113| |LGPL-3|26| |GPL-2|21| diff --git a/dev-python/fyta-cli/Manifest b/dev-python/fyta-cli/Manifest index 532b5fef9..58a1887bb 100644 --- a/dev-python/fyta-cli/Manifest +++ b/dev-python/fyta-cli/Manifest @@ -1,3 +1,5 @@ +DIST fyta_cli-0.3.3.tar.gz 17259 BLAKE2B e5eae9574f80a125560cbdf2f87fc494072c147cd848e06d262a4f0aa06f29ff40364709359a3c59b2c1817d0ad81e5991162e251461db0c8facab7cbd2e99c3 SHA512 0cf7dfe2994245b4027ac13a506e9c1af9e0cb0f3d73188493eefc2f64b7380052a400023701e4a9fca49ae752a3fb613b5cf7b5bd6785921137b224af3502f0 DIST fyta_cli-0.3.5.tar.gz 17456 BLAKE2B 836e3ca5aa89318a02edb7c6ef75b1a78b1bdff9b5d075da1c2f9a41fbf64ddc61e8c77e60d6b07e9d50eed21ba480f00a55a50c8bb950c61af98bd672c97a60 SHA512 7374adf87c37b234515cfed864855f8a52befc0a83b7eddf4dac4dba7c728cd0d202c0cd163a5f1f700efda4bdbece101772356bbad4399fe451acbcb011af1f +EBUILD fyta-cli-0.3.3.ebuild 540 BLAKE2B 042ea27b0818486a90a4842e31d1b27573fc9c623e3dc3d69a2db7446e0a3f0d7614f9ef245ee49beb8f23955161f5028dfe3b263331ba6b9a814c4647aa132f SHA512 85444e21aec0e2b67fc92d367db77513798ad7facd5cdaa035e9eb0ef46926564a536c195d4a640e6267eb9c41b50228b86cad345fa82de63161abcfd81d3c36 EBUILD fyta-cli-0.3.5.ebuild 540 BLAKE2B 042ea27b0818486a90a4842e31d1b27573fc9c623e3dc3d69a2db7446e0a3f0d7614f9ef245ee49beb8f23955161f5028dfe3b263331ba6b9a814c4647aa132f SHA512 85444e21aec0e2b67fc92d367db77513798ad7facd5cdaa035e9eb0ef46926564a536c195d4a640e6267eb9c41b50228b86cad345fa82de63161abcfd81d3c36 MISC metadata.xml 536 BLAKE2B 833dbc5dd9d45f41975ea90e484618423d31db44c7424e962fc80724d20d1876ccb8d32edc02ff264c79038e152830957d35201fac4511de2b3b24454dff859b SHA512 2c3bd1550856cfa909470dabb0bc9d0b7b6adb11c35a25479bb85e945a2d18e2d2c237d87250e67b76c4f813fc6ccf9cb663c6b5b8593758dc6c46554e97e4e2 diff --git a/dev-python/fyta-cli/fyta-cli-0.3.3.ebuild b/dev-python/fyta-cli/fyta-cli-0.3.3.ebuild new file mode 100644 index 000000000..929ec06a3 --- /dev/null +++ b/dev-python/fyta-cli/fyta-cli-0.3.3.ebuild @@ -0,0 +1,23 @@ +# 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=hatchling +inherit distutils-r1 pypi + +DESCRIPTION="Python library to access the FYTA API" +HOMEPAGE="https://github.com/dontinelli/fyta_cli.git https://pypi.org/project/fyta-cli/" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest