bump aiosteamist-0.3.2

This commit is contained in:
2022-07-19 11:18:34 +02:00
committed by Andreas Billmeier
parent efa2237f95
commit e8df85f9bc
4 changed files with 43 additions and 4 deletions

View File

@@ -524,12 +524,12 @@ 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 1769 Ebuilds in total, 1762 of them have in total 1771 (35 different) licenses assigned.
There are 1770 Ebuilds in total, 1763 of them have in total 1772 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1081|
|Apache-2.0|316|
|Apache-2.0|317|
|GPL-3|106|
|BSD|102|
|LGPL-3|30|

View File

@@ -1,3 +1,5 @@
DIST aiosteamist-0.3.1.tar.gz 8768 BLAKE2B 6a46f746fe43a4f7304791ca8401ef08c820bb37c0cfd0cefab3d89e3d2e1603f18ed73d018311e36f058b47693b9eac805edb9aba28cddd78117ec55d3a41ea SHA512 7b739384173540c54c37ba4496b151014af0cde66205e6f067cf333991096038c765cbaefd023b81c6c909dbbec3447108a5dda978dbcddddaa5ec01138b0d48
EBUILD aiosteamist-0.3.1.ebuild 854 BLAKE2B 102c35bbc818128e539ca8ac42f9292be8b3ba2ee0a773e48788226037eeaf820cccb98c98c0ca13982e3ab5157a98b5618b66593e116a4c2bcc3bd43ee5706b SHA512 600b195b46a0a2d63bb2b1431416d19e239a03f6ec42339bcbf51e32e0e50f629af1e2cc119d7b0b33caf3807b46a00a2b0ada45d9d23127f3ad931f7e9d9d5c
DIST aiosteamist-0.3.2.tar.gz 8815 BLAKE2B b65a9822f7b32c17a9700819164d849ec89bb8c940d12a432a7fd5714f18e3308495b9ee854e6fc0a222373e71a23284d0e26ea44493d6864863e9dc6678b00a SHA512 c5078e1e7a2cd016c18c79103b320238870b0f51a8701b59424f4b78b361d3f0fbeede1b9b9c980bd6ba4375c221fe9cf7326d00929dec76eed4b0cc099305b5
EBUILD aiosteamist-0.3.1.ebuild 826 BLAKE2B e14505d4396f259d7a5a1a0a4b3e37cef27d7b632b1255e1cf8a877559793e6785951943dff5b42eeeec58a9f7ce5e94bbbd7d21e51ea0a35808914098fba46f SHA512 9bc9ce2b02957a533cb4f7391055882ae01496408af51b2ab42ac61ee7de84a24426f4cd3257cfeb6b835567b165a2cc6ac41056f3443525ade5498ae8b31412
EBUILD aiosteamist-0.3.2.ebuild 857 BLAKE2B 502069ed91215df7fdedc9320a7490f6ee17c24ed6faeeddc548cba511f7b839af4b1a26c3e4c949eb2dcbc3d8c3c5a878bacd2c7a8e85f3ed4925630e906c3f SHA512 f14ff9a0359932b1a1f783cc984a46ed1a2316e7a0da40a2854daada752c6325b8e413e49685e42aee0c4fe03128fd8493355425f5aaf7ea09f21dd8c4cf4103
MISC metadata.xml 453 BLAKE2B dfe9ee68c3a9c1ab6a97ae8102cae94e4e01ded99d10d4073966faf8133bbaee987d0f87817a7b2e743d09bcbfa7b0c4fd22f6509d0a0be30b6b242a76b26091 SHA512 abbc5f638753cfbbdf23464a348407291263b9db6ca6f7f9c4505435abfdc67dab6e1900b548c33b63361de8aac022257e39c70fbe9f986d5a5eb3f182e05f7b

View File

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

View File

@@ -0,0 +1,37 @@
# 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="Control Steamist steam systems"
HOMEPAGE="https://github.com/bdraco/aiosteamist https://pypi.org/project/aiosteamist/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
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/xmltodict-0.12.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest