dev-python/python-bsblan: new package, add 0.5.5, 0.5.6

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 14:56:31 +01:00 committed by Andreas Billmeier
parent d255fad40d
commit dc4d2e0340
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 90 additions and 2 deletions

View File

@ -548,11 +548,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 1450 Ebuilds in total, 1443 of them have in total 1452 (34 different) licenses assigned.
There are 1452 Ebuilds in total, 1445 of them have in total 1454 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|844|
|MIT|846|
|Apache-2.0|292|
|GPL-3|91|
|BSD|86|

View File

@ -0,0 +1,5 @@
DIST python-bsblan-0.5.5.tar.gz 12136 BLAKE2B 10c5b3a397ee8dbb66ab45b0129ae1ddf41620c527c1a69bcbb93f50f0eb78d88dc66c54860d2efba51ef955b8bfa75f6b84d68472dfd065fa759e30fe4ba064 SHA512 33e2ffebe460052f82c5cb00c74442373abe4ad9e242026260f986ca86426f6e662429dc46daf2c14bf2cb3d77238042072140f0a160efb07eeda24940716d11
DIST python-bsblan-0.5.6.tar.gz 12188 BLAKE2B 780810df7f234847170beee3510c456f560ccfb311747b84983920c4b22b6bf26199d8494bbf5e4039b1463912e24a65e8f4772b86894bfb8ec490f5ff8b517c SHA512 5102cdf825d3b837d3a358c5b070e7d8940d0d3085666e8e988fd7de83f974a32dccb2c11fedaf8dfc7042c7130e6d4a2f9a879d9ef339e0c5c359b6e4ab093a
EBUILD python-bsblan-0.5.5.ebuild 856 BLAKE2B 7416f2b71bfc7890dc646758024f42b373089148f319b7e7181d4379d769f3a1e5e6a291ea4edecca7482b8645cd4914827f0c7f1e781251e7b31357324de965 SHA512 dac724251ffe1112a4f75405cf53a2cb1d9f213c30e26289d8bb359850ccb1f22b8f9ec7034914154aa33bcf54d49fa9ba8d905139a8baf96548637d8ad147e8
EBUILD python-bsblan-0.5.6.ebuild 856 BLAKE2B 7416f2b71bfc7890dc646758024f42b373089148f319b7e7181d4379d769f3a1e5e6a291ea4edecca7482b8645cd4914827f0c7f1e781251e7b31357324de965 SHA512 dac724251ffe1112a4f75405cf53a2cb1d9f213c30e26289d8bb359850ccb1f22b8f9ec7034914154aa33bcf54d49fa9ba8d905139a8baf96548637d8ad147e8
MISC metadata.xml 470 BLAKE2B 5907b129910d979462b2cba8e3d9437199cc12bec667276b630a24b82f4b5465a874256f47a31d064607d8cdcc3304c57b383e8b4b05e76e7795c616fb49df7a SHA512 a803b679962f3b83e3f56d11a8e89d3cffdae3cd6c0d8a669428c502bb0ca4945c17fd97c090cfade3cd42140fea0ad5186c252b1419e88eddff7f9a6f2fb714

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">python-bsblan</remote-id>
<maintainer status="unknown">
<email>liudgervr@gmail.com</email>
<name>Willem-Jan van Rootselaar</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for BSBLAN"
HOMEPAGE="https://github.com/liudger/python-bsblan https://pypi.org/project/python-bsblan/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
>=dev-python/yarl-1.7.2[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -0,0 +1,34 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for BSBLAN"
HOMEPAGE="https://github.com/liudger/python-bsblan https://pypi.org/project/python-bsblan/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
>=dev-python/yarl-1.7.2[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest