diff --git a/README.md b/README.md index 5a4b397fb..82cfb394e 100644 --- a/README.md +++ b/README.md @@ -606,12 +606,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 1885 Ebuilds in total, 1874 of them have in total 1896 (42 different) licenses assigned. +There are 1885 Ebuilds in total, 1874 of them have in total 1897 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1078| -|Apache-2.0|423| +|Apache-2.0|424| |GPL-3|110| |BSD|109| |LGPL-3|25| diff --git a/dev-python/voluptuous-openapi/Manifest b/dev-python/voluptuous-openapi/Manifest new file mode 100644 index 000000000..520906bc7 --- /dev/null +++ b/dev-python/voluptuous-openapi/Manifest @@ -0,0 +1,3 @@ +DIST voluptuous_openapi-0.0.4.tar.gz 9285 BLAKE2B 27cf890d6aa01ff4629a28664ab7c504d522cdaf23ae7b8e71c54b0a5e12a11348e37ed3fa27355cc861fcb51d209306b5e6e28425ae6cdaecd3c4e44511fba9 SHA512 aca42cc0d6c60e605cb0d2efa06c4ab0b08f7974190423fb4b9c7ac17b2d01021525d38c2b8bcfff4d022ba4f4e91974d3a193803ba38d3fd2c0723a9f6ce4d4 +EBUILD voluptuous-openapi-0.0.4.ebuild 545 BLAKE2B 418443a6dfa530b4f34f739f080e533635eef3b3b1f61e7f8cee0804d45ce1eef8c21ff3cb7241e79618b72f5727b4b9ec9e6203ebeef4eed2b5b016de952ce3 SHA512 a006719e6f4e5eb582808eac90f095a30917d0a30b1071eb1c368dc20e140db1d662afddec8b5d8b7ed18045d94a318b0a18fc1a45c465f5b4b18d3700e33208 +MISC metadata.xml 532 BLAKE2B 45ccbe971969e791bc6dbb7fb62db3b09f877256b810cbf57587ea7ed659084fd3c5f67df1f1d03b544e63832fe4c330f7367cf1fd3c93cdc4c1eedab8542d58 SHA512 1a4cdd850f688b905c8a012388f7c8db74d2abbc6c3875e000d39ac6ca1c93cac5617668e6e72b726374dd8e8e9fb4b75580e6db2347a01e0c36c7398fd18f37 diff --git a/dev-python/voluptuous-openapi/metadata.xml b/dev-python/voluptuous-openapi/metadata.xml new file mode 100644 index 000000000..db1cd7672 --- /dev/null +++ b/dev-python/voluptuous-openapi/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + voluptuous-openapi + Shulyaka/voluptuous-openapi + + Shulyaka@gmail.com + Denis Shulyaka + + + diff --git a/dev-python/voluptuous-openapi/voluptuous-openapi-0.0.4.ebuild b/dev-python/voluptuous-openapi/voluptuous-openapi-0.0.4.ebuild new file mode 100644 index 000000000..6ee156332 --- /dev/null +++ b/dev-python/voluptuous-openapi/voluptuous-openapi-0.0.4.ebuild @@ -0,0 +1,21 @@ +# 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=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Convert voluptuous schemas to OpenAPI Schema object" +HOMEPAGE="http://github.com/Shulyaka/voluptuous-openapi https://pypi.org/project/voluptuous-openapi/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/voluptuous[${PYTHON_USEDEP}]"