dev-python/aiovlc: add 0.3.2
Closes: #3459 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
f0b02f33f0
commit
cf0c3ee04b
@ -606,12 +606,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 1866 Ebuilds in total, 1855 of them have in total 1878 (42 different) licenses assigned.
|
||||
There are 1867 Ebuilds in total, 1856 of them have in total 1879 (42 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1070|
|
||||
|Apache-2.0|417|
|
||||
|Apache-2.0|418|
|
||||
|BSD|108|
|
||||
|GPL-3|107|
|
||||
|LGPL-3|25|
|
||||
|
@ -1,3 +1,5 @@
|
||||
DIST aiovlc-0.1.0.tar.gz 12711 BLAKE2B ac40a4401fceac66906822c9f9056bbcd77d1d6c01f23c3ad7f579afd7eeb39b7049aa61827bd6f1f41cacbca83dacced228b1604f55d4c072b22bcd1b03c2dd SHA512 ec4e54e0552432b3ea3eb3b69e4ac4cb0a3b00805ff92050fe14c43a3f173115915bc82581d99586e83844a20b3b0f015c319236d5f6e7b556a0bd0b2d9fe26f
|
||||
EBUILD aiovlc-0.1.0.ebuild 673 BLAKE2B 126415cda7070ff308fdfecc526573afc7ee5b888287adeb7404b21bdd0a053203fb115ea1e3b9618c6701e29b90e4341d6aa6c8cdbb1cbed3d43b19b33c9de7 SHA512 61ca70aa5256bae047f8432d71b2e819713ece21fdca12d2dfb5531584d0cf42520e91e8b199574ef8095dea79d2ee9cb71c20c08b817f625c309e0704af7378
|
||||
DIST aiovlc-0.3.2.tar.gz 14235 BLAKE2B da702fa6e102fa5589afa1eca84588649804c0218531b0fd3d4fb4dcf278fdd6c55e8f98a929aeb6c626688529e629ada463a108d93a4236cd50f609c2b0f33a SHA512 bc283a1e486942c594cdcc1e86bce706ded3d0d73cf6c1e9ef48a8a09a9a41676d64527266cbe1233e2590fa6cc5d41151135c3921ddd59e65b0027d20bcded2
|
||||
EBUILD aiovlc-0.1.0.ebuild 673 BLAKE2B c67719bcd36330c3fdb6ff4fad031881b8605ead6ef7b01850fb627b9e1a7a1ba15e3e8930f0f1086f03fd0d4bcb9c042132acdd5ba39de7fb0cdf764748f3c5 SHA512 4d56dfb93daf307232699ebe2245a8ae4bd0c28f772988b3dfd8cc5c4cb79014a2e28febeb5d0ade58f0bf19e00fd676d2998ecf64e4072d05685599c1e9f4b1
|
||||
EBUILD aiovlc-0.3.2.ebuild 678 BLAKE2B dfe03c6f5cc66298068f11a8acb530f9111adba94bec8327add0d6363ee261ce9a0ceeb38d5352e4ca4ae6c78e3896fb8706a83f2abd4b58486d3cb7ba875d22 SHA512 f03a926a1321c005abbd9a8768d6c25d6dce20c77747c7030265caf7566904952a5bd62e4080ec05307be4c173c4ae829828e65d0ad90b871b5c6cffc8810730
|
||||
MISC metadata.xml 515 BLAKE2B 75b0d2780d66c86807171854f037626123feabcf5b6c288a1ea76abefe60915d19d3dc30c2428c094c707ed1aa441cd1e108819a3addf6f9bcc692c066d6a438 SHA512 2e4d3f10d7ab48cb66c77ac4cbdc3dbca7e8a21af39d9ab6a8d0934f9daa03fdcd624c92a4e07caa3ff1e12e0944e8f2f62d93757e249cc7e269cec1dc61288c
|
||||
|
@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
DESCRIPTION="A package for talking to vlc over its telnet interface using asyncio."
|
||||
|
27
dev-python/aiovlc/aiovlc-0.3.2.ebuild
Normal file
27
dev-python/aiovlc/aiovlc-0.3.2.ebuild
Normal file
@ -0,0 +1,27 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
inherit distutils-r1 pypi
|
||||
DESCRIPTION="A package for talking to vlc over its telnet interface using asyncio."
|
||||
HOMEPAGE="https://github.com/MartinHjelmare/aiovlc https://pypi.org/project/aiovlc/"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/click[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user