diff --git a/README.md b/README.md index 91a6e977d..45b168b4d 100644 --- a/README.md +++ b/README.md @@ -523,12 +523,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 1882 Ebuilds in total, 1875 of them have in total 1887 (35 different) licenses assigned. +There are 1883 Ebuilds in total, 1876 of them have in total 1888 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1137| -|Apache-2.0|355| +|Apache-2.0|356| |GPL-3|115| |BSD|104| |LGPL-3|29| diff --git a/dev-python/aioecowitt/Manifest b/dev-python/aioecowitt/Manifest index 26ddf8267..5a0a3b02a 100644 --- a/dev-python/aioecowitt/Manifest +++ b/dev-python/aioecowitt/Manifest @@ -1,3 +1,5 @@ DIST aioecowitt-2022.8.3.tar.gz 15741 BLAKE2B f5959d877cd4ba3694ee9e0639690bd0d239ba8520b4de6f95677db4a220553c7507baa3387dde6d91b7c693b412ac1107d9f713e8840fbb53ed1ac95667e398 SHA512 97eaabc659f05269cfb82bdfa80b8649832a3dad57f81cf1b32dddde3ad581a7b905e4cbcb4348b7bbcf16000ececfc4e446f9028ad743cd71613f1f5987a37a +DIST aioecowitt-2022.9.1.tar.gz 13575 BLAKE2B a57b2a610e6292913facad89a53c9064de963d6dff9912618ea21f35e768ec188f3a51fae6909d2ce3c68835ecb6cbb2858375047e92aea6c6527fe71a5fcd62 SHA512 a301566e8e52fedb180074f4efcef08c7b2878ee7125d5090b3a414b90222e48792b31d7d69e9d3497f3c49e330bc5c7136e4bc3384d5251ff90372fb1bf5f8e EBUILD aioecowitt-2022.8.3.ebuild 968 BLAKE2B 8397a60a93d92571b3df9875918ebb63c91f74754528acf378424c17cdd28ce114a250cbae479b1c8154e272e8ea6873695c78a6bfe2702ea972d80b5e25ed40 SHA512 57220fb8b7adcb5824a61b4e2d5be36e73a514143fb7507dadcd43d44d1bd54fd3436e130dfe14af3dc0ce531f3326a8bc37575308281e4312a0962065dd2e25 +EBUILD aioecowitt-2022.9.1.ebuild 822 BLAKE2B 4ee26ab53c5c9ff5e7278e70f91be81ec4e6641699b24d2e7d397077f6549f35398253544cd9edb620190b115cecdab7f33e96bb0614d1f07889d00057342241 SHA512 92abc872ad7d5e57aee8f49a7593cda74b1e2d1a187ca8161ba2471f8f52b814e47b3f773c6953e5db1ceed8ae0c796ac7cc6f88c91c7618053834eada08f309 MISC metadata.xml 465 BLAKE2B 568aa7dc844725edde876ea3678f47fdb3a407b8a4b3632e6136f0945437e49182eaa6b34e5c70239efc1c83e6338e27ce5ce81409cc079ce3f3f85d1be08de2 SHA512 356d53c50aa8f6a46a22b187d5018b14884b3f8c7cad52388f29dc1a9414b9817920b1518951cb125f48e01e97cb8ea4ae0520402114c5eebb1eb0adc23c299f diff --git a/dev-python/aioecowitt/aioecowitt-2022.9.1.ebuild b/dev-python/aioecowitt/aioecowitt-2022.9.1.ebuild new file mode 100644 index 000000000..58ae66ac7 --- /dev/null +++ b/dev-python/aioecowitt/aioecowitt-2022.9.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python wrapper for EcoWitt Protocol" +HOMEPAGE="https://github.com/home-assistant-libs/aioecowitt https://pypi.org/project/aioecowitt/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] + >=dev-python/meteocalc-1.1.0[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest