update openevsewifi-1.1.2

This commit is contained in:
Andreas Billmeier 2022-10-06 07:26:13 +02:00 committed by Andreas Billmeier
parent 6422b523b8
commit d4457d1a70
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 44 additions and 5 deletions

View File

@ -538,11 +538,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 1919 Ebuilds in total, 1912 of them have in total 1924 (35 different) licenses assigned.
There are 1920 Ebuilds in total, 1913 of them have in total 1925 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1154|
|MIT|1155|
|Apache-2.0|363|
|GPL-3|121|
|BSD|106|

View File

@ -1,3 +1,5 @@
DIST openevsewifi-1.1.0.tar.gz 5758 BLAKE2B 3c611c041e9c2fec03201b6fe1d148d70f28e56772312839fc6ecbd4fa735780ee58973bddc860c75f814c939feaef36fee7c64448e1ba4fafebd1f4a7cb2afb SHA512 f6028edb35b8969433cccc7f45cbd8d595f3eb258773974e294e301125b17980a2016bd0c29625e64c408d24e30076677c4db5289d94d590c28cc5e6e947303d
EBUILD openevsewifi-1.1.0.ebuild 863 BLAKE2B 11a6fd5a0c8f9b9bec2d4d3d343240050741401685cab4d26f37b2bd1061fb57e874c64279ac6763f1457673635e9ac13cf55da241f00979f1776690549a3b3f SHA512 ecd00bf9b6c0bb299caabc67e222bb222f7e117164091c02351ed2423def79b093f246f31647c9fa44fe944bcb15483d1a1885d0e1ed0ba0c8a38705f6043dff
DIST openevsewifi-1.1.2.tar.gz 5705 BLAKE2B 5554488b8f16d6781093308a8d9fff3f88c7693d2633e350d70df2d9a1b6c26415f230aed1d9e35ba3809d7cb684cdf9b28364678ebadfb703e311576495b5a5 SHA512 3e1941a99eb533032ad0a3bb49ce7fb44080765b3265efcf937bf14bf21ffff45ca859ab358dffafde75306195585952b48ea5725baf9838c2b902cc9e8d8e04
EBUILD openevsewifi-1.1.0.ebuild 835 BLAKE2B 5914771988e084c974b4b462164538df1d6fa8fc5c325d88e3a46c22474d5242c349dcba27e45b00c5705de22f4c928a7679237bae4b0e968c1cfc2235ee99d2 SHA512 638e1b158ebc8f825f9969f280b0c5ad4bb45d27832301e1770d287e5784a5e36435aee9773c8b0b451ebe3c4332b34b3b97763b075932f4643a7a0acaa76bc1
EBUILD openevsewifi-1.1.2.ebuild 920 BLAKE2B b1c04fb5d6c8fa4663f276e064677175d50240cfa82e5422961b2c7915ef86328289d300e8842f91c616401936acceb0de6dd34e967b1d85fa39a23caf432cf7 SHA512 aa276717b023196f741360400c862624a308feed38a84ba067928d2e5df575eeca90ac0206f089dccef095fa84a0a44949506296c8a72e9ca14cc304840d923b
MISC metadata.xml 457 BLAKE2B 418ac5ea8b031203709d2d69ad2c6ca343755309671c403b43889359c2b3db8e25ad30c685600af7c980548c90c402f2ed24bddeb416f79cb1df52968b0a7f0f SHA512 4b48b531f46e798d7be7a49cb6d6d2b5d43108161d3f7d84cad39a25521e3d1c8d20b2bf7ecff874bfdc63fae89d12819d511e48a2c4399da9e5d513c51faefd

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,37 @@
# 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="A python library for communicating with the ESP8266-based wifi module from OpenEVSE"
HOMEPAGE="https://github.com/miniconfig/python-openevse-wifi https://pypi.org/project/openevsewifi/"
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-2.23.0[${PYTHON_USEDEP}]
>=dev-python/deprecated-1.2.10[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest