bump demetriek-0.2.4

This commit is contained in:
Andreas Billmeier 2022-09-20 07:34:43 +02:00 committed by Andreas Billmeier
parent 22d509e209
commit 2fb5e7c2e4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 48 additions and 2 deletions

View File

@ -523,11 +523,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 1889 Ebuilds in total, 1882 of them have in total 1894 (35 different) licenses assigned.
There are 1890 Ebuilds in total, 1883 of them have in total 1895 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1140|
|MIT|1141|
|Apache-2.0|358|
|GPL-3|116|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST demetriek-0.2.2.tar.gz 13926 BLAKE2B ea942663b2096563a9168117c2c9996c8267a56c845246e68afc888f329afa0c99b355cce8ca304298257c87699e359d7a78ebc98a4e9dc18eb022fc24d299c3 SHA512 2792b29e48a9bd0152f03686253d97555487e1f7e77109a56781142e41e2d1e7c26843d7d38f83c6196542ad1d3dfb38ea17d6380e0c70c0b4f424d3528d9181
DIST demetriek-0.2.4.tar.gz 13829 BLAKE2B c88d0b5d2d82f24c6d416c658cd355e4f536787eb03b6bdaab7e0343400f3aee90c5abc804922380e310ab30798b6a2f9a7ab7d4dff748694875ba203da2eea8 SHA512 c2e86fa48dd678c9c59775e5c78bd791f5257a6a7937c7369bd236c6b71859e6db3b9a5f2289a96e912ea45a45fc337751d313639874f439d0d0a55430b9b8aa
EBUILD demetriek-0.2.2.ebuild 1171 BLAKE2B 83f29516db7ce457fb95c0ba4b468219eaed2d0519ed16c74a552c831efdcb89ef6cfa4123fd4807e0c64074eb4f04e682ac4153d05eb3d8026ec0075f78a5cd SHA512 6d4f0c8deed2ee2775e701b13261a7cce4b92f70e52a8b446657b299f88d48f0478dbf9358d48a0dcd872137cd1e09fdc53f742cdcc6ea7ad40ff344a81d60f6
EBUILD demetriek-0.2.4.ebuild 1171 BLAKE2B 83f29516db7ce457fb95c0ba4b468219eaed2d0519ed16c74a552c831efdcb89ef6cfa4123fd4807e0c64074eb4f04e682ac4153d05eb3d8026ec0075f78a5cd SHA512 6d4f0c8deed2ee2775e701b13261a7cce4b92f70e52a8b446657b299f88d48f0478dbf9358d48a0dcd872137cd1e09fdc53f742cdcc6ea7ad40ff344a81d60f6
MISC metadata.xml 456 BLAKE2B c00297c5ad08ccd4d3fd7133aaee20fddcca8b56ed8ee8562b3a31da7ec70899ac79e53f8ec68c8ba79d16456f43e40fbb9c0dc2b11c854f945461bd3a68c69d SHA512 d3e29c6f37233d1aa65bd2d44ecbe9e01d273bb8ea6b4f7a0c2b1bc502090e575dc5cf26937a1b1191162899f84b6207559e5a473ccd588278e60ef84d7bb0d5

View File

@ -0,0 +1,44 @@
# 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 LaMetric TIME devices"
HOMEPAGE="https://github.com/frenck/python-demetriek https://pypi.org/project/demetriek/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/awesomeversion-21.10.1[${PYTHON_USEDEP}]
>=dev-python/backoff-1.9.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/aresponses[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-util/yamllint[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest