dev-python/systembridgeconnector: add 3.10.0

Closes: #2495
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 14:03:21 +01:00 committed by Andreas Billmeier
parent bdb3090bef
commit 9a648baf24
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 43 additions and 5 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 1718 Ebuilds in total, 1707 of them have in total 1727 (43 different) licenses assigned.
There are 1719 Ebuilds in total, 1708 of them have in total 1728 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1003|
|MIT|1004|
|Apache-2.0|363|
|GPL-3|98|
|BSD|96|

View File

@ -1,3 +1,5 @@
DIST systembridgeconnector-3.10.0.tar.gz 11534 BLAKE2B cc673fb93f25becfbe3375dbd877dcbe84167d13b5b02e6a9ef66e6bfe6206b37025e7ea88603ea1c18529221421c6c4473bb147f5dc55e6015a9da1b49c0883 SHA512 5b8e392a098901e51381021b4c3af4fb8d3f129b53f73be1881fa1704c9d866b24a6206ba97134584edd492a00a147d961713d531f5d2235a8684b3f36f1a196
DIST systembridgeconnector-3.8.4.tar.gz 13910 BLAKE2B 2a5079a747ba8cb40c602462717e4d8639676fcd012efcfe7588a7c98589dbef12bcd9deed410bb2516a0ba81b0df018617676276e806de628a6d1ed4ae91636 SHA512 d69683aed0e464ea2e228412b9969a0a64a41f6d0f0adcefb864d4873491de49624dc99742ffcb3c19e51ffaea76b667a25a3c3368405b9f0d99776e257b9dff
EBUILD systembridgeconnector-3.10.0.ebuild 832 BLAKE2B 30e01e1dfa729fafba4ca41f5b998d9d01d09aaaa19365cff795cf4f79b146eee52c0a2cab3fc3b246aab70cd6a2dc2b526b7f64d9beb27521f47b3ce59fd7b8 SHA512 0a344641417d2137983143f68c33fd9bcc1e229713247d09c7bf60bbaa50df9845c775974aae5e51607c23dc9189db3add3b50f934d7bfdbeab2c697f57faea8
EBUILD systembridgeconnector-3.8.4.ebuild 901 BLAKE2B 70c9df6486728ac663993e3c7e63b5ec65049192914335ddd80f73c555b8613f1f7bbf822dd970a0bb8b606928fd30f07853ac175e5c54ac0f834c853fd6c6fd SHA512 88d7a54a8a24564150e060cf1bf1720ce9492db4cfe6ff0216f160509a74b7ae2d7ef9d50d5d8407a09f802e96dfa90d1fdd646845becf394f99c51928d9dc7c
MISC metadata.xml 535 BLAKE2B 939a731717f88ae096fccfcf8139a2a0af798d5426d1dc0ff5d7de864fcdcbedf99394fc548f0b81b7bc0af2d0f064ef330e9824de7b629669d62982bbcd913a SHA512 7aed780a74a6354b81371e84bccc87e93e64d04336cd551f5a5b36e9b1015e1b0d34c7e0f1ddf6e1e0f83da7183f1f801a7072c15815a0d294285a87c2cbb8d1
MISC metadata.xml 543 BLAKE2B 89948be75450a6b9acc131dd2f73286ff7916512ab3af158b50836a4f4d22c95f2ba5b23331d5d53d2b4f541074a6dceed5054861e91ab3c0c39b1590715a053 SHA512 ec074aec45492fe4cf8db0e125ae8976ad5b1ea6e4a66fdb8ef07cf6e4513bb94f8b41906649e6eabc7ab00e5c8c83c4d8256a253343acd5adddd4f655d5963e

View File

@ -7,9 +7,9 @@
</maintainer>
<upstream>
<remote-id type="pypi">systembridgeconnector</remote-id>
<remote-id type="github">timmo001/system-bridge</remote-id>
<remote-id type="github">timmo001/system-bridge-connector</remote-id>
<maintainer status="unknown">
<email>contact@timmo.xyz</email>
<email>aidan@timmo.dev</email>
<name>Aidan Timson (Timmo)</name>
</maintainer>
</upstream>

View File

@ -0,0 +1,36 @@
# 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="System Bridge Connector"
HOMEPAGE="https://github.com/timmo001/system-bridge https://pypi.org/project/systembridgeconnector/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
>=dev-python/incremental-22.10.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
src_prepare() {
echo -e "aiohttp\nincremental>=22.10.0\n" > requirements.txt
echo -e "incremental>=22.10.0" > requirements_setup.txt
eapply_user
}
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest