update aiotractive-0.5.4

This commit is contained in:
2022-04-30 14:52:19 +02:00
committed by Andreas Billmeier
parent 34f4e16e53
commit a805f9bcd4
4 changed files with 40 additions and 4 deletions

View File

@@ -506,11 +506,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 1692 Ebuilds in total, 1685 of them have in total 1690 (35 different) licenses assigned.
There are 1693 Ebuilds in total, 1686 of them have in total 1691 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1036|
|MIT|1037|
|Apache-2.0|299|
|GPL-3|106|
|BSD|88|

View File

@@ -1,3 +1,5 @@
DIST aiotractive-0.5.2.tar.gz 7850 BLAKE2B 7a66421a1662897b95d3c8a229053a54250f4f8a6399a1dc13e43afc33e209dc66269dbe601e1f36d61929b5ff5c8c706d7fdb1232c408373fcd6059c3f0c7e5 SHA512 84fb0f585c93c828e1a19fda2b8dabc71ba67dec69677246401e9a1478ad214935ea42ac3e1419bbc48d7d2d78740d681ba5d770aba14c62807ba102200f2be7
EBUILD aiotractive-0.5.2.ebuild 821 BLAKE2B 2cae76081c3ccfeb4e35f0130f495fff106e578d2d3f8527864d5388ed929877b3f21c99bb11e92eda6ea31e346423655640721f8767f02dd5d483657504ea9f SHA512 c44ecb68fd198f1ab8a0e06dfe9543c892f7c16df1a58f69582468e4ab208ee69bc47fe46fe488ec708c73f70b7427bb37ae5f83fc86469ebaf50bc672b464b8
DIST aiotractive-0.5.4.tar.gz 7830 BLAKE2B 59514abf755d65c31441ee1f85950adcdc53b4393ae59f78ca21a7a86a00502e2b5ea346866b903fe026c12b99485eb7fb7ba0da7cc5229d8b3c2d8735e0946c SHA512 e8eed82d73c64e946ab2c594019387b34a11911424d0cc08dee2d8eb7ff6ca74aa8b33bc0195895f63af49c6863e8487ac2db5a06da8f5cc8ea47baf9c848e31
EBUILD aiotractive-0.5.2.ebuild 817 BLAKE2B f3da140e232bc3c9e3e49f827bd50f39ab29a63e708d856ad838eb6e6ee85291712d81d1cd3c3732996c29599b0123a019de3a85f4fad3ce9c94b6995a6d6a28 SHA512 c5b369d10677eec42d7811533e0795d972955ea7d14557a67c9997f30af321075d471d99576ad24f0fad6c22727e1c1642f802cacf56e537d93650f6a9513fdb
EBUILD aiotractive-0.5.4.ebuild 817 BLAKE2B d7b7279f378599c2c4fb5b909ebd2d48d1498be64629323af91cb7c1105a34046131b747a1914149d086e3a0bea7b1d342924abff35d0ac7ce092a91b051d9c8 SHA512 32177833e9e792291a2e19d25451fd2ea230dc88e693512e0d91f540d5af3f1ae3668024111d118fea5482e8070d94958792b39561906b61ce3fce3a2a2beadc
MISC metadata.xml 460 BLAKE2B 0c908a4d5979f9bde798211118292ddb1bf68682e90bbdf2d9f86803f4289fcfb81258abfe5851f829afe5ff8dc85ee71c5e40f1cefde349c085c4439705bab5 SHA512 74610d76ddefd9b068595ab46a0bf87317c56167ca917e4c54cdc415f9ad4c0e8ef95b448195bf1b7ef172fa53373332e2ee09afbe9f7c8381e9914a83d41240

View File

@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"

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..10} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for the Tractive REST API"
HOMEPAGE="https://github.com/zhulik/aiotractive https://pypi.org/project/aiotractive/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
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}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}