dev-python/elmax-api: drop 0.0.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:17:51 +01:00 committed by Andreas Billmeier
parent 7c0d945dfa
commit f7763c1ec8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 43 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 1706 Ebuilds in total, 1695 of them have in total 1713 (42 different) licenses assigned.
There are 1705 Ebuilds in total, 1694 of them have in total 1712 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|993|
|MIT|992|
|Apache-2.0|355|
|GPL-3|108|
|BSD|93|

View File

@ -1,5 +1,3 @@
DIST elmax_api-0.0.2.tar.gz 11638 BLAKE2B fbde4a818599c2f1d6535c356dd3421bcdd09ead54e0d0a12b90a4666ca4fd51ea1dcfc6cfdd35f5f15e7823e86b208b253b12c1df88a80af0bc80f5f983a429 SHA512 4025970d2b95f30bfa583a00ddfbaa4c402db1e82a45407cad7758a4566f36554f099937a9ca98626783a4d66adc11dc1927c1f3c0eeea63f207e1d1033e9040
DIST elmax_api-0.0.4.tar.gz 15871 BLAKE2B 3ceff565d445191bf86b03e1a67b4c603cb7d14b269e76050e73376871cb56d2621d2c958f0ff436af1e2abffc79b0720e6df43808fd52c8fb97a8f3bb75ed57 SHA512 4794ed618612a180032c7bd42838cf7f96687d3636e23f1d879367faf8bd97089f3bc42e3419808b51553a1f9d8bf79e0a7d54cf55dd3f7e7a75bcdc7b06c243
EBUILD elmax-api-0.0.2.ebuild 948 BLAKE2B c17aab342da5841ab9d6d46364b3334760cddc1754a1024eef34810b2ecb16dd0c6dec0a8277923c04c1a6b0974c8f97702856b956666bd5ddcb90454e529457 SHA512 c20aa5cb09e13fe429286b43ba7900126c539447f6cf2ee4b7f3a342da5ed938b6a57dce0dbff2a14e9d83a886f7d8224d81f6d334df218182af05074d90c986
EBUILD elmax-api-0.0.4.ebuild 948 BLAKE2B c17aab342da5841ab9d6d46364b3334760cddc1754a1024eef34810b2ecb16dd0c6dec0a8277923c04c1a6b0974c8f97702856b956666bd5ddcb90454e529457 SHA512 c20aa5cb09e13fe429286b43ba7900126c539447f6cf2ee4b7f3a342da5ed938b6a57dce0dbff2a14e9d83a886f7d8224d81f6d334df218182af05074d90c986
MISC metadata.xml 527 BLAKE2B 8d9e8704401ef1febe5b0e2ced252026672a3705591e93e4afeb493323ae0f7f2b2473f81d3fb9993aee79e7d779593fe3a46b00da73b10fe366d89b4384c4f9 SHA512 09238ac2ed59ef98a20683394bb24c2d348228941c8015836070f929ec137e015e97841d04fc10f12c1a15d268d9a469540944fd6080501525d42bdc17144352

View File

@ -1,39 +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="Asynchronous API Library to work with Elmax devices"
HOMEPAGE="https://github.com/albertogeniola/elmax-api https://pypi.org/project/elmax-api/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/pyjwt-1.7.1[${PYTHON_USEDEP}]
>=dev-python/httpx-0.18.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.3[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
# prevent writing a useless file to /usr
src_prepare() {
sed "s/data_files=\[('.', \['requirements.txt'\])\],/# data_files=\[('.', \['requirements.txt'\])\],/g" -i setup.py || die
eapply_user
}
distutils_enable_tests pytest