dev-python/nessclient: drop 0.10.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:34:27 +01:00 committed by Andreas Billmeier
parent 25f5c04812
commit a393d0fc22
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 37 deletions

View File

@ -612,11 +612,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 1670 Ebuilds in total, 1659 of them have in total 1677 (42 different) licenses assigned.
There are 1669 Ebuilds in total, 1658 of them have in total 1676 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|968|
|MIT|967|
|Apache-2.0|349|
|GPL-3|108|
|BSD|91|

View File

@ -1,5 +1,3 @@
DIST nessclient-0.10.0.tar.gz 16064 BLAKE2B ed31a895388f4390edf6b141954464beea226f7bd921618dd552419fed0bd9eadcbbb5d36936ac400b7e9d85370cded3edff0a1c34c76271e4c4c7a4125d7f69 SHA512 f7106541b7a1b7a2e4faa7a538930681bf010274169b00f73f71dbf2a5633b5beee7419399882c4a78a5a939249f96e8c053d12abb02f923335a2c3a160da6d9
DIST nessclient-1.0.0.tar.gz 16523 BLAKE2B b63eb57118bef386c840aa69a0fc67de8332c521edbc1e1d25e458a30cdf8884e4b1601050274f5e2aca8ea0072a155f9d851077feee7b74d7178d46b7191605 SHA512 f6aa098ef99130eb903bdf3a96f746def53f337b82d72e0e5b65654971e16723952057d2f259c2ecdb580a3b63019bd3220cb48b059c3b8e26e107c2ec1a6b59
EBUILD nessclient-0.10.0.ebuild 774 BLAKE2B f62f7d12ba8e27dcd7fa552de0adbd6c2217b72a0de2566c7110c40312baf8f0b99c653e7c912df300be04d3fa91150c01659d44cbcfba841783e9960310739a SHA512 90ad271f32afeb7daf920cd9afcb27d934e5e0d6dfe3195940e1e3ed8f38b58e7c801867715e6998164c100a8b4d31f35368483ca5a6b0bf48680579d745465e
EBUILD nessclient-1.0.0.ebuild 774 BLAKE2B f62f7d12ba8e27dcd7fa552de0adbd6c2217b72a0de2566c7110c40312baf8f0b99c653e7c912df300be04d3fa91150c01659d44cbcfba841783e9960310739a SHA512 90ad271f32afeb7daf920cd9afcb27d934e5e0d6dfe3195940e1e3ed8f38b58e7c801867715e6998164c100a8b4d31f35368483ca5a6b0bf48680579d745465e
MISC metadata.xml 512 BLAKE2B 211adc1489c016a9b8d3e865d033369ed02cd3f5c23bed73961ce129bdccb3c99d742ae7f38a294396d9bae40fbc4c557c959c1773155eea64e5c261632acfac SHA512 e67c2b53151d3e953751f866de73b66ece39e51655551c46ec6f8a7708c0148ae53efd823ba4441a060a19a9e02a34e2f66767ebd83417bcfd9ac82dbd134cba

View File

@ -1,33 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
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}]"
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