diff --git a/README.md b/README.md index 08b9025ff..91c2c0243 100644 --- a/README.md +++ b/README.md @@ -606,11 +606,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 2245 Ebuilds in total, 2231 of them have in total 2268 (42 different) licenses assigned. +There are 2246 Ebuilds in total, 2232 of them have in total 2269 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1271| +|MIT|1272| |Apache-2.0|524| |GPL-3|140| |BSD|122| diff --git a/dev-python/nyt-games/Manifest b/dev-python/nyt-games/Manifest index 7ea6d9c66..9bd0ef005 100644 --- a/dev-python/nyt-games/Manifest +++ b/dev-python/nyt-games/Manifest @@ -1,3 +1,5 @@ DIST nyt_games-0.4.3.tar.gz 6538 BLAKE2B 50eeaa8e4b5efe3972f6274218355044fd5fc909025b8310d1b096762c5bada4ab3e9da6799e8fd94f4ec5d8843b59f2c18b3c5e43d1a2d1dae04311344b0ac9 SHA512 78c98312b1cae8cf733842f0e318ea47f3c7babec60bd494a46f4577dad13b0f4fb527c913725146a0b4adfb2cf51772cf268adfc918bb5287f0575b803bfaf7 +DIST nyt_games-0.4.4.tar.gz 6563 BLAKE2B 561845059d2b0a0edac165dc737ae43f19ccb110f1b90658aa19d707ea5450066d5d129e84cef1e64d5b63e592d9e95056c75b6fff99dd589f56b69698009c30 SHA512 229c234f8b2c3c9f95cfe9a89cdcc7be38972067d5f1d236914516255f4a59cc0c378216b26fcf4a5dbe696c3140c939b7d5b448a085d2a592952eeba336227c EBUILD nyt-games-0.4.3.ebuild 754 BLAKE2B 7ba458ef8b4aebfc9054461bb4a9f73fdde1cebdcd9067144b58390e9f75ec0b33abec550dd916146198cc5948e9d2e3a5814fb0b305d53935fe69e427063842 SHA512 d09cce906c92a7fdf41be2991cd11a6677257aea08bfbbf46d481db7ef4acdc3d203d591ce9ccd9e909eb2b341ce51c29a9fa9f5e38463cd16d04998f31eec1c +EBUILD nyt-games-0.4.4.ebuild 754 BLAKE2B 7ba458ef8b4aebfc9054461bb4a9f73fdde1cebdcd9067144b58390e9f75ec0b33abec550dd916146198cc5948e9d2e3a5814fb0b305d53935fe69e427063842 SHA512 d09cce906c92a7fdf41be2991cd11a6677257aea08bfbbf46d481db7ef4acdc3d203d591ce9ccd9e909eb2b341ce51c29a9fa9f5e38463cd16d04998f31eec1c MISC metadata.xml 527 BLAKE2B 9217d8776f3a8a0a09c9ecf6a39d80c3f8bc4b97ce73138d6a39f9d175f3e3fb998a6b62ffb9b92592083b20ee483780fedc7e3b96e69b2d30a08844bc169d0a SHA512 c5628d8b0a4e7baf0ed60c5282cbb8f100e6cb22f4dbd6953c284c63254e77ab5cf3090b6a4b6f1b82f4bbb40ad247638b8c792b7e2a2cbb2439c1aa6241f161 diff --git a/dev-python/nyt-games/nyt-games-0.4.4.ebuild b/dev-python/nyt-games/nyt-games-0.4.4.ebuild new file mode 100644 index 000000000..974e9d060 --- /dev/null +++ b/dev-python/nyt-games/nyt-games-0.4.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +DESCRIPTION="Asynchronous Python client for NYT games." +HOMEPAGE="https://github.com/joostlek/python-nyt-games https://pypi.org/project/nyt-games/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}] + >=dev-python/yarl-1.6.0[${PYTHON_USEDEP}] + >=dev-python/mashumaro-3.11[${PYTHON_USEDEP}] + >=dev-python/orjson-3.9.0[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest