dev-python/python-MotionMount: add 2.2.0
Closes: #3890 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
6e7f2c72ac
commit
5a2c042339
@ -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 2090 Ebuilds in total, 2079 of them have in total 2105 (42 different) licenses assigned.
|
||||
There are 2091 Ebuilds in total, 2080 of them have in total 2107 (42 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1207|
|
||||
|MIT|1209|
|
||||
|Apache-2.0|471|
|
||||
|GPL-3|128|
|
||||
|BSD|111|
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST python-MotionMount-0.3.1.tar.gz 8367 BLAKE2B 23c6d0a7ac383a06ae6f2747e7ef7762b9e31434bc21bc8006fe44486e0011b254089fdfa21406ac9c44a7eab2a79652d72591cade188c140f8204def7b81bc9 SHA512 5965b41977c22781c99beaafd8488f8c071e97c43666499a3ac5fa7911283ac02340882a2105116233fbbb5552e89bda2f72a9e809621570dfa35ea88a31a8f2
|
||||
DIST python-MotionMount-1.0.0.tar.gz 8504 BLAKE2B 20b9a59e0f5c781d9b0a8e11c83cd228c4c766555e13afbcc11ab876439d9664bdaa8ffd8d7d63b84207b85a0ee7349fecee86b5093d0454ab617509208b0656 SHA512 c2756cef0002abcabb3d1d898e00ba733837654978939f35647da86c5cea145eae4ac07cf22fa2d54f1cd161aacd6c111aaee03be6c924bd315153b69d118046
|
||||
DIST python_motionmount-2.2.0.tar.gz 9367 BLAKE2B a0033b6eb684f3884b2fd54c033cb1d7a9b5caea0367af1944fa7c846b6d29e191e4e06f7cdbeca6e18204eb4e29f39951066cde0680e76a5e3d41c604411ad7 SHA512 4ace54033e4b72a1cc37d4d91b99eef7185f7c8daccdaa9028d5137986cb91a5930c6e439c5ef8d6569e291f9eff71006344a0461175a5e28ba86046e49c1949
|
||||
EBUILD python-MotionMount-0.3.1.ebuild 522 BLAKE2B 4f7b7c74b5b594e4c90d11a1c4667fc364a67af4a4815932083055eff136c2e9470e737d29a2e7e9b2bce111a0827c29345f3c2d35632139bf84e991114f7a4b SHA512 334966233ed5a1a13d1bcb8f230788d92bbadaf06ace1d0a58f21a6852ca0ec36cf42128900bf57f60776b915cdc63a0ca4a44759fff4c4dce08500f738feac9
|
||||
EBUILD python-MotionMount-1.0.0.ebuild 522 BLAKE2B 4f7b7c74b5b594e4c90d11a1c4667fc364a67af4a4815932083055eff136c2e9470e737d29a2e7e9b2bce111a0827c29345f3c2d35632139bf84e991114f7a4b SHA512 334966233ed5a1a13d1bcb8f230788d92bbadaf06ace1d0a58f21a6852ca0ec36cf42128900bf57f60776b915cdc63a0ca4a44759fff4c4dce08500f738feac9
|
||||
EBUILD python-MotionMount-2.2.0.ebuild 502 BLAKE2B 4861d0d6646a2bd2b28935cbe496e0b17c977b4d9c5129f3fa066ad90b1f76e38cd81e24ffca1cfb1f61bdf5dba742910b799baffc07fb049b81061bc806105c SHA512 9375491a275117fb6ed92d9c2610f74ad58353cb215a05825d2404a1c73752cf270249a4c33f9518111945393d80f2ef20dbfbb1911c36ae1dc99f2e1f05b890
|
||||
MISC metadata.xml 541 BLAKE2B 6edb35e74688d1d8048a953d03bc38aaeb389db49b29d4a39d2177d7eb48c7358744202509acbd5799b3a5529eb84883750f62292def4bff9d27a236d9cad2a5 SHA512 e985fdc5185e9b2142148c51e7efd84b139012f07020996e17f8bba10d739eb9abf1aa049f33c8fe58033b8b4a37d271b4ec00d8714f02fdb04a870f954fbfd2
|
||||
|
@ -0,0 +1,19 @@
|
||||
# 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=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Control your MotionMount Signature TVM7675 Pro using Python"
|
||||
HOMEPAGE="https://github.com/vogelsproducts/python-MotionMount https://pypi.org/project/python-MotionMount/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
Loading…
x
Reference in New Issue
Block a user