dev-python/py-madvr2: new package, add 1.6.32

Closes: #3688
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-10-26 22:52:19 +02:00
parent 9ede830eba
commit be8e85b755
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 41 additions and 2 deletions

View File

@ -606,11 +606,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 2247 Ebuilds in total, 2233 of them have in total 2271 (42 different) licenses assigned.
There are 2248 Ebuilds in total, 2234 of them have in total 2272 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1275|
|MIT|1276|
|Apache-2.0|519|
|GPL-3|143|
|BSD|123|

View File

@ -0,0 +1,3 @@
DIST py_madvr2-1.6.32.tar.gz 14074 BLAKE2B d7dbd6aa4e3d3ba7d6521a27c30dc186ea7cbb13babe70f8a442f51171fa4a2686a1c354ffa1a48733fbbfb7a030487c1b549af86c0af9902e6675ef3a4ae007 SHA512 038633871348624a23b287f10bf65c0bf4e60c60aa72bba089dfd5ce43076258a1db44f89a7ab8d40536cd322193d4f3e79ce8bd617508caba56a1ff7491059f
EBUILD py-madvr2-1.6.32.ebuild 622 BLAKE2B c336c119659a1e123571db12b1b8d99db785376a1ba3eb01c4a66870c54fd0e1445a5e1a458ec95c62bf485a86316e19a82e08f8e2501d808211eb5d6e567b28 SHA512 e1760185770770e28d425400719fad9e42b99620c8b1b4a1104bc316d8fbce4d5b94b681f5ae14860d73fdaff4c1faf739b7e548690fa94d07ebf3d92ad118a0
MISC metadata.xml 396 BLAKE2B 2db398b0848beb67027054b432c9629e591bb403c8569ec0f8763a8b229aad7dd5ad53e76a50e45fc43f753c8ab24d144df95f93cb1cd39cab590a0cfe3c4c7f SHA512 42c8a37345a358bad20a71ce3ed03d489997cbf5b631d062bd1ded28bee2d0ab3464ad02d7249692153f8185af61638fe53d8b9ca1f56bc6b2160d079d7934d2

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">py-madvr2</remote-id>
<remote-id type="github">iloveicedgreentea/py-madvr</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,24 @@
# 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=None
inherit distutils-r1 pypi
DESCRIPTION="A package to control MadVR Envy over IP"
HOMEPAGE="https://github.com/iloveicedgreentea/py-madvr https://pypi.org/project/py-madvr2/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
src_prepare() {
sed "s/packages=setuptools.find_packages()/packages=setuptools.find_packages(exclude=['tests','tests.*'])/g" -i setup.py || die
eapply_user
}