diff --git a/README.md b/README.md index a3b3d184b..7670ce666 100644 --- a/README.md +++ b/README.md @@ -612,7 +612,7 @@ 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 1569 Ebuilds in total, 1558 of them have in total 1575 (42 different) licenses assigned. +There are 1568 Ebuilds in total, 1557 of them have in total 1574 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| @@ -633,10 +633,10 @@ There are 1569 Ebuilds in total, 1558 of them have in total 1575 (42 different) |EPL-1.0|4| |ZPL|3| |LGPL-2.1+|3| -|public-domain|3| |PSF-2|3| |AGPL-3+|2| |LGPL-2+|2| +|public-domain|2| |BSD-4|2| |LGPL-2|2| |CC0-1.0|2| diff --git a/dev-python/volvooncall/Manifest b/dev-python/volvooncall/Manifest index 807e3c18c..df2dd077b 100644 --- a/dev-python/volvooncall/Manifest +++ b/dev-python/volvooncall/Manifest @@ -1,5 +1,3 @@ -DIST volvooncall-0.10.2.tar.gz 16321 BLAKE2B d3a3bd21bc6904b4060740bf9dc2691ba785708944beb7700138edd24a51f5347913a561b3256c6f2d66c8ba5a5edb1305933aff5b9f3dfe0b67f94c3bbef04a SHA512 f1c9e6d5648d418fd07e77530729a0615941ab954d2108d6f72ac3c95a86eee4a1d428f3c97e6ba4accfe3eb9b4d8cee4f0040d34d8f5daa1a298e3dc058f051 DIST volvooncall-0.10.3.tar.gz 16333 BLAKE2B c861468a41f5551681c19fadd712003e2ff5176c15acd10307ee1980088faad41405fe39d41f982d19282899041f8687779954b8bb7fee268c9a9db35074c02d SHA512 9d6938f42372061d5469713a2b0561802b4c1526ca2f19dfbfe96a8338ac865f125c4b3a773035fd24a5fde0794785fac1e1b896d80657a2ac4520be031708d6 -EBUILD volvooncall-0.10.2.ebuild 828 BLAKE2B 6b49255e935425343df05aa548292ea3f62efa9f5fb42728fadcfd61b794d3ef3115b20368834eae7863aeb738ff557fce4eadd1b71c1603258bdc7894d98d1f SHA512 592c4eedb9210e81bcab1fdaf043aaafcce10d31cfa29e71ed7f5cb5a81b43108a9caf22e49e35d85613078e04fd1e5d46e4f218791bccf6de34354bb4c648b2 EBUILD volvooncall-0.10.3.ebuild 828 BLAKE2B 6b49255e935425343df05aa548292ea3f62efa9f5fb42728fadcfd61b794d3ef3115b20368834eae7863aeb738ff557fce4eadd1b71c1603258bdc7894d98d1f SHA512 592c4eedb9210e81bcab1fdaf043aaafcce10d31cfa29e71ed7f5cb5a81b43108a9caf22e49e35d85613078e04fd1e5d46e4f218791bccf6de34354bb4c648b2 MISC metadata.xml 523 BLAKE2B 121e34c5d8e1fd94684109203cc3ee84942065c681032ee49986d6ec479c7110c93003f34581a39efe935734d17f861e5ea9467f5bced81eaf3d5606d7ad012b SHA512 5d0fbc59ba8fade3e77efac8238bdf1977a3f103468017db99a885e8fb065a13ff1ea59733a2b711cc50ed47a155728af43d6e757f6811829fdc3d7acde0a614 diff --git a/dev-python/volvooncall/volvooncall-0.10.2.ebuild b/dev-python/volvooncall/volvooncall-0.10.2.ebuild deleted file mode 100644 index f68646279..000000000 --- a/dev-python/volvooncall/volvooncall-0.10.2.ebuild +++ /dev/null @@ -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_{9..11} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 pypi -DESCRIPTION="Communicate with VOC" -HOMEPAGE="https://github.com/molobrakos/volvooncall https://pypi.org/project/volvooncall/" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="console mqtt test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] - console? ( - dev-python/certifi[${PYTHON_USEDEP}] - >=sci-geosciences/geopy-1.14.0[${PYTHON_USEDEP}] ) - mqtt? ( - dev-python/certifi[${PYTHON_USEDEP}] - dev-python/amqtt[${PYTHON_USEDEP}] )" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest