dev-python/ihcsdk: add 2.8.5

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-04-09 11:30:24 +02:00 committed by Andreas Billmeier
parent de67d66eaf
commit 43af300f97
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 2 deletions

View File

@ -576,13 +576,13 @@ 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 1822 Ebuilds in total, 1811 of them have in total 1827 (36 different) licenses assigned.
There are 1823 Ebuilds in total, 1812 of them have in total 1828 (36 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1066|
|Apache-2.0|392|
|GPL-3|115|
|GPL-3|116|
|BSD|96|
|LGPL-3|26|
|GPL-2|24|

View File

@ -1,3 +1,5 @@
DIST ihcsdk-2.7.6.tar.gz 23679 BLAKE2B 149b9a28abea75ccde404dc5332c7a8c1b0d65f1c90d5cf284f2d7f79b067d96b9a7d0a672de41d86b758c7ac26d938ada01d188b2dac548f61de4d957494b06 SHA512 efe9f21a0234a24b5d798957779fbb1c7201f0ad8381ecfc564f09965e30d4209c0346a77fbca0b384da1b4e53949ddcb0075c5d8083a70f667430ba8f408a04
DIST ihcsdk-2.8.5.tar.gz 25165 BLAKE2B cf0149ef54206375357341c8479faef47bff7301e8130acf7505779edd5d284fa522d9dd07acf9a7e8c8159b92e00bbffdcf6a81a9ee8d2b6b6be81adc4f2898 SHA512 be10ad02ca37d624e0ec9b55724c9da554af4b4d1f3f1054f5fce50e9a8477238217bbaeb8e0d651583ff943bfd14dc3b366ed0094cf265b5d49f408c55d9a97
EBUILD ihcsdk-2.7.6.ebuild 715 BLAKE2B 8d9f63c13abefee4ef0392059f2a106fdc99bb047a5788fbaa7924086071d84229b7a25be823995f3eafbaa4e7b960aacae2e266032721ebd8f3dc2c8cf2bbcd SHA512 2398fbf564e88a6e4ae8974671dd40b439ff41779d724e88fd8091f6d386c3b79e58b2ec3449025f03e7f1f369e93b305b9b985176b59a7185fd8f8814f01089
EBUILD ihcsdk-2.8.5.ebuild 659 BLAKE2B dd287ffbdbe5256fb01ff500879878261b027a3b6b4aa2efd35b419921f5a77d501f13ca08005ba84daccdb82377ca9eb42b2b821096a2a8453a1865d20d8c3a SHA512 1bf7b0483f77218fa9e44f45b27ceafbc97dc69a508c6c191eee4c1109cc2e06ed132d0d30927d74be4f8d5f013a3273de9203a2d0abe42506433f545b7e0254
MISC metadata.xml 388 BLAKE2B 5f192b86344d9a462ce90b387bcd3de5a12fa23975af92807ecd448ca89eadb58634a8450db00ae0afcca9a87c7b1583bb39ccf0dd532107949b8b7921aa6219 SHA512 6edfbdd97097c309acce9bce1581ce8a851e63e31765ff4d93464d816673ca5db2cc4c9540f2f5e136e07d6bcb750af272ad992de137f12a269e053df93f147d

View File

@ -0,0 +1,32 @@
# 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 pypi
DESCRIPTION="IHC Python SDK"
HOMEPAGE="https://github.com/dingusdk/PythonIhcSdk https://pypi.org/project/ihcsdk/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="readme.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest