dev-python/nuheat: add 1.0.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-04 09:17:58 +01:00 committed by Andreas Billmeier
parent eb3c2537d0
commit decc898cf6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 2 deletions

View File

@ -573,11 +573,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 1796 Ebuilds in total, 1785 of them have in total 1789 (34 different) licenses assigned.
There are 1797 Ebuilds in total, 1786 of them have in total 1790 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1044|
|MIT|1045|
|Apache-2.0|390|
|GPL-3|112|
|BSD|94|

View File

@ -1,5 +1,7 @@
DIST nuheat-0.3.0.tar.gz 5087 BLAKE2B 830385e6ee5666e701b7c1e03403d2ccb3595ebc78738872e9ecd8baec712287b8afff4878da463567335645bb8abfb91289cf84404fcc72be3c19ec05c37367 SHA512 bfe9dd5e4396df15364d121b7f07b022cb01a3771c4e16357b8b03a30098497b9094dd6a37dd3645969d02bab802b7f79cfa9d21bb18dc3102c3dbd6e9bc064a
DIST nuheat-1.0.0.tar.gz 8016 BLAKE2B 1c72a397b54cb9b45c25d6f448944a9e7e1d98ee2145e44cbdc9fdc9243c709a4008ff76dee81d47398ad5ea3ffb9520dbf79dedef611a435ff1233df566dc5e SHA512 dbf13b6f1572336aa30f754c997c5e08d1945d9d02898742ba93c16748fec0539adc1da064addc5ac98f3efb9ccb2062ce48d631ce3ba758058a3c9c9816ac54
DIST nuheat-1.0.1.tar.gz 9498 BLAKE2B e475701ca7447ad94f0c63fce043e02bc1c6e1edf047a96f6c7040177ae74561219db2e0a51ead776f260bf63a8634230f17e52ef95ab97b5a219e43397cbc73 SHA512 ba3846a2cf2229c8cb929cdc931a48b368b4ae51ad0449203bf8d22671296d387d3edbf91690a2b062226e44e3f30fc8e5f37bfedf8f492f142b678a1f8d20d4
EBUILD nuheat-0.3.0.ebuild 702 BLAKE2B f24fa61489efa39bb88a762bd7f6982a7a7f26d1082ffc0fe469a43b4f89dd781148fb470dfbca7324cbe99891b12094b256557c5764240e7c51abfe4f605419 SHA512 00dafe866c3fe614c38a3cf9b52e8fbd9263052629164cc2fab2db4dd699b89cf4db5416f1d5d275837f4e736011f57d14cbc267ba08497aca117fa6310a1818
EBUILD nuheat-1.0.0.ebuild 750 BLAKE2B ddc900561ee64a14470be39d981c09ef6704abdfc971f097c2de7be2df63c03e41a40e9e4429bf7366e199d34a9f31048ac7f6249b69e2815562b92be4a5401c SHA512 97eba9894e2ed0e59fc9e9d952e44e81bf4d85fff0fcb88e4680a2c248589ff689847ae5ff1a70c447ba8dfae90244fe20aa65256d4f068e28f8014b211a91ce
EBUILD nuheat-1.0.1.ebuild 791 BLAKE2B 55630a386cf43b7410984e3dcd7108cefc6b506c43125852ddb79bcdfbdb95e1100b32a17cee8ed0a8a906c36fe320926b3b93be572fd399dd0fd523f539be98 SHA512 b46b161794a2099253ed9eb5673f4b380068293ee0e51cf3aff7d9d5679ec4eeac28e9439276edb194168c8aff015fcdf8893ec25d0f92f01f7d434c0cf9eb39
MISC metadata.xml 507 BLAKE2B b3b9ce9c1438446f710543032ded69b33da01b03ccfa010ed31242409a1c94da7a2a2eb9a01dea942f22adfe524c2470e82a87736e7c6607c08d53dbc825cdee SHA512 414afc9017661bf8aab4c737d5d69ea2df9c50b37ac4f236c16cada1179b9e49d8113009efbd06f909cc587f2e922dda799a7dba820ff0d196dde3322210b101

View File

@ -0,0 +1,34 @@
# 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
DESCRIPTION="Control of connected NuHeat Signature radiant floor thermostats."
HOMEPAGE="https://github.com/broox/python-nuheat https://pypi.org/project/nuheat/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/responses[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest