bump rtsp-to-webrtc-0.5.1

This commit is contained in:
2022-04-12 20:14:03 +02:00
committed by Andreas Billmeier
parent 49130e0b10
commit 89b95e8d76
3 changed files with 44 additions and 2 deletions

View File

@@ -506,12 +506,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 1696 Ebuilds in total, 1689 of them have in total 1695 (35 different) licenses assigned.
There are 1697 Ebuilds in total, 1690 of them have in total 1696 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1035|
|Apache-2.0|309|
|Apache-2.0|310|
|GPL-3|103|
|BSD|89|
|LGPL-3|28|

View File

@@ -1,3 +1,5 @@
DIST rtsp-to-webrtc-0.5.0.tar.gz 12347 BLAKE2B 94dc701c947cb886363e67dbed4dc5883de53e961dd2791195919ac6a744d0411094d419c8c64416b8722151977f3a1841c5bafb25be407b52a1238cf9e23cda SHA512 153baad47c40854c42ba0977d75e373807f67aad5a2efa6f6c02fb40c72f1f06eea02120b9c99305f358be493f9a3b8e0091329be252133e64f876554451fba4
DIST rtsp-to-webrtc-0.5.1.tar.gz 12927 BLAKE2B 9b7ded83e7ade10c109acb7d2934ca406654fa4d2d5c379a42e2f65843081280a55ef839161ea3dc43cd2e48a940e99db304a9ef312018c3f40ee1c51a1e87ca SHA512 3e2d5aaae1d381e875331206f1083078dbe01983b70da0efc196a1221c5a0404933df1acdd79cbbace9147988fecacda9e02d3ab44964a896982d7176d041c7f
EBUILD rtsp-to-webrtc-0.5.0.ebuild 868 BLAKE2B c9171a22b6c71540b0295a7db7628af666791052b1303c08bd7f90348d0bb79cf5737e5dbee828e22de45c3ca059ad4138e9aaa552f3d208067ddf0109f43ded SHA512 f6fadc4d5644daa8431a1026d0eabacb2f484dd64843a10821932c35fa85989e1fefb0e737bc4a43864164c0c9d11d39c75fab677ee8d68e600b30f0271303ce
EBUILD rtsp-to-webrtc-0.5.1.ebuild 868 BLAKE2B c9171a22b6c71540b0295a7db7628af666791052b1303c08bd7f90348d0bb79cf5737e5dbee828e22de45c3ca059ad4138e9aaa552f3d208067ddf0109f43ded SHA512 f6fadc4d5644daa8431a1026d0eabacb2f484dd64843a10821932c35fa85989e1fefb0e737bc4a43864164c0c9d11d39c75fab677ee8d68e600b30f0271303ce
MISC metadata.xml 457 BLAKE2B 716c74cc9f7bf25bfa5351e4388224785ec01ee2789e12d140fd9686e42e53888fe4636d6f2ef84de2c1b926c81da8ae6fd8e67a9cea972085a8adc2c641265c SHA512 0e5899dec38fd96fbb3708bb8afe1e2b1c5f20e8bbb9fae326c7a76587706d6c6c13d1a19e6887e969290f65490927b3a0767fef33f8c1c1e62c291ec5ac195f

View File

@@ -0,0 +1,40 @@
# 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="Python client library for RTSPtoWeb and RTSPtoWebRTC"
HOMEPAGE=" https://pypi.org/project/rtsp-to-webrtc/"
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="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS=""
RDEPEND=""
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
}
src_prepare() {
sed -i "s/where = ./where = .\nexclude = tests*/g" setup.cfg || die
default
}