bump pymediaroom-0.6.5.4

This commit is contained in:
2022-03-12 09:21:21 +01:00
committed by Andreas Billmeier
parent f05bf3883a
commit e362980692
3 changed files with 38 additions and 2 deletions

View File

@@ -492,11 +492,11 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1851 Ebuilds in total, 1843 of them have in total 1853 (34 different) licenses assigned.
There are 1852 Ebuilds in total, 1844 of them have in total 1854 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1101|
|MIT|1102|
|Apache-2.0|363|
|BSD|108|
|GPL-3|108|

View File

@@ -1,3 +1,5 @@
DIST pymediaroom-0.6.4.1.tar.gz 5641 BLAKE2B 80f728355422a122d78eab388960e4845fd324efd63b9d08de0e6f5f1f4df48fdd3da443377884e221c2da55400bc2ad3013106eee4c6357bfac6b3c446af37b SHA512 8ca4eb1eda041722ead3e5f6fff85ee96a5abb2106fb66df4118d07844355dc871a3e4740257b731c94c7ae16d8c211a42d024aaecbd99014bbc9d5a598f2944
DIST pymediaroom-0.6.5.4.tar.gz 6774 BLAKE2B 61bba6b8142e8f13b8f3c31c2dcb922137e62ae754dd953f6bd76952d65a2106e8223817e4298f59d433bda69f366c2d7896725ebb9c3b40c9f475584bcca635 SHA512 aac963854b9095a8ec3c090b5475103c1398ac0a167e335fa12cf8af250746f6513a89ddaeab47bed435f6bb533c0b7c1a93f086e181fa40079b6defcc75f57f
EBUILD pymediaroom-0.6.4.1.ebuild 807 BLAKE2B ba21bb50d565217f5d551769464027f7a7c19f654f2eb79841adb1542ff4cb2933b967e5102b062ee86be6048ed6b9eaec392be1d660f2722f7ac2aba60e5b54 SHA512 4c39348b4d18755758b379db821c6649a0906624c7cf7eddfc470bcd9f794c26452abc778bfc6445b5043dfc50e10d32e98f6f88a894b7d2c037a65a134f63a8
EBUILD pymediaroom-0.6.5.4.ebuild 805 BLAKE2B 48ebd0aa5d871bfc2add54806e2f613adfbeb6d97e7413268b1e4fa31f58a0ddd1f8163e88e180f8e7a4be43388eacb775df32e60aa231ea43df78d25a875f2a SHA512 e5db2fc65276c681d24e87b8aa22b4d29f08cb6715d95ac9556e6244cd81a13e4962d680881b89ee796a660a7a863a82c16b1a13f8a59f5f9c2c80aec8a683fc
MISC metadata.xml 455 BLAKE2B a1ed4d2c2d3acbb543f4634ade9d2a9e6f54f67f022a557f507090e467117ee28a4c2a067262f0daf740ad6b9df3ddb638962167fa8ccf348a703c67a5a7c6e0 SHA512 4de0a06e5c8563a31a1c23397bd7dc01dbd151eedca4248ec3ab8bb1670a1346019a4e7bd9557f34838377a230c17ae9b3f9d43ab670675d42a2966c71139e75

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="Remote control your Mediaroom Set-up-box"
HOMEPAGE="https://github.com/dgomes/pymediaroom https://pypi.org/project/pymediaroom/"
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.rst"
RDEPEND="dev-python/async_timeout[${PYTHON_USEDEP}]
dev-python/xmltodict[${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
}