dev-python/nessclient: add 1.1.2

Closes: #3891
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-10-25 22:34:00 +02:00
parent 4f38537172
commit 693ae7fb5c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 40 additions and 4 deletions

View File

@ -606,7 +606,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 2077 Ebuilds in total, 2066 of them have in total 2094 (42 different) licenses assigned.
There are 2078 Ebuilds in total, 2067 of them have in total 2094 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|

View File

@ -1,3 +1,5 @@
DIST nessclient-1.0.0.tar.gz 16523 BLAKE2B b63eb57118bef386c840aa69a0fc67de8332c521edbc1e1d25e458a30cdf8884e4b1601050274f5e2aca8ea0072a155f9d851077feee7b74d7178d46b7191605 SHA512 f6aa098ef99130eb903bdf3a96f746def53f337b82d72e0e5b65654971e16723952057d2f259c2ecdb580a3b63019bd3220cb48b059c3b8e26e107c2ec1a6b59
EBUILD nessclient-1.0.0.ebuild 774 BLAKE2B f62f7d12ba8e27dcd7fa552de0adbd6c2217b72a0de2566c7110c40312baf8f0b99c653e7c912df300be04d3fa91150c01659d44cbcfba841783e9960310739a SHA512 90ad271f32afeb7daf920cd9afcb27d934e5e0d6dfe3195940e1e3ed8f38b58e7c801867715e6998164c100a8b4d31f35368483ca5a6b0bf48680579d745465e
DIST nessclient-1.1.2.tar.gz 17040 BLAKE2B 180b6e1f96befbc017e3f121bec166c9394b75f3a9255d1f051388109f6db11836fdd209ed808bba2b6d19f7886c398ed84cbfc2e3657151e83d796a21345fef SHA512 7ea3ec21cc232f9dbed4fcf41f92c89b1f0fbdcbdbdd50f15d9dc9df3e4111e57e6010860fb30200bab8ab0350051e2da9a5c2e7437b73060d6cf92c7b5434e1
EBUILD nessclient-1.0.0.ebuild 774 BLAKE2B 3eab8cbb1978dfee70ba6f2f68d1fa2b346ee371ff2e74499e48472778bb0fd4178b4961026dfa1af38cd0cf82b891e9fb1ebb88dc85e221fa9c7df776fdca92 SHA512 9e8b5b4fd93e905718e9c39ff9ab65a1c82f7e3abfba0e83ba6d9cdfe03f0d84d75d25aa4a0ebb5b7fc2f8951de8cc57ee1208de1c907e1cd2f921c6c0a23304
EBUILD nessclient-1.1.2.ebuild 821 BLAKE2B 4040a92c3576a6b58511a7b3114b1a707a8e0d509d3688e40ecc71b246439747f345b7cca0d71c8e6a5e5f58d081c4105ca7d612ab0530c432f71cd2d1f5e992 SHA512 066cdd03d57f652045d3cd9dfae3b4aae8f3b5b3c59e28f463c9ff739479befbb8cc2a34cfc015f965583e10f7c200771ce2cf4dd3701d35553d3c3864f6f227
MISC metadata.xml 512 BLAKE2B 211adc1489c016a9b8d3e865d033369ed02cd3f5c23bed73961ce129bdccb3c99d742ae7f38a294396d9bae40fbc4c557c959c1773155eea64e5c261632acfac SHA512 e67c2b53151d3e953751f866de73b66ece39e51655551c46ec6f8a7708c0148ae53efd823ba4441a060a19a9e02a34e2f66767ebd83417bcfd9ac82dbd134cba

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi

View File

@ -0,0 +1,34 @@
# 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="Implementation/abstraction of the Ness D8x / D16x Serial Interface ASCII protocol"
HOMEPAGE="https://github.com/nickw444/nessclient https://pypi.org/project/nessclient/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/justbackoff[${PYTHON_USEDEP}]
dev-python/pyserial-asyncio[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/asynctest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest