add motionblinds-0.6.12

This commit is contained in:
Andreas Billmeier 2022-09-03 13:34:24 +02:00 committed by Andreas Billmeier
parent f10973639b
commit c4c08fd2e0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 2 deletions

View File

@ -523,11 +523,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 1866 Ebuilds in total, 1859 of them have in total 1871 (35 different) licenses assigned.
There are 1867 Ebuilds in total, 1860 of them have in total 1872 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1133|
|MIT|1134|
|Apache-2.0|342|
|GPL-3|113|
|BSD|106|

View File

@ -1,5 +1,7 @@
DIST motionblinds-0.6.11.tar.gz 24091 BLAKE2B 9ed9113e781c71963456a102b01eb9d752157524e270b48988969463438bf4cf955d482c22e60ba77feaab74b1fb7047d1886c8475bd979a3e1fb6bba0fab887 SHA512 eeaae100a33d89af83bde90bc886ae437124304f09bf0d620c1f4576c86cc7af71f51ae4dc5a3cb8dae44fcf9ed2a518bcd916f43321a87b965b8f95a7521b56
DIST motionblinds-0.6.12.tar.gz 23868 BLAKE2B 1b2f89a16fd0d51b0d48d0f4e1fe8237d263af360e6295af8eaa28c5ba0d25b9cfece8f2d8eb9c01ca21089fc235400c4e362036601136830299aa7bc07842c3 SHA512 b1b731881f55b9c6008e3be851185149b1951a7e305d3331de7a40f4d948e563fec5101690620ff19ed986104d3bbc2aff27042484d6ac658a84d00808b386f7
DIST motionblinds-0.6.8.tar.gz 23722 BLAKE2B 03f4e11e0bbb2c5f0ae275485fa0dd6bc47194aeeda13dece47123d14f7821ecd59dbd403058907825a69c5c1e7629fb6ea9adb87a6a1a9d8102ea3be7d17e94 SHA512 2bdda11d211fe130eabd9be8e1634857957efba21f0b4f2e28ec0828d9be182d6ad998e30897c0425cce0ddb0372ee9e9debd086ed34a2fd111902781ad80d8d
EBUILD motionblinds-0.6.11.ebuild 785 BLAKE2B 7a854a17aa68a9e36ca6e3d8829f67e65803b3ec4525496640f5798e71fed4fcf127b0165ca963b8d077fde632621e9ada8cf402be60080bd2235df54f5c5ffc SHA512 fc59fcb4480aa1863efe9ec736ae3df979f00bc300cafe47cc8b8cf2b578821476111d3beeecf2dd891b4b5829627fc7ab1cc965ce433a9fe2c719a427fbff65
EBUILD motionblinds-0.6.12.ebuild 785 BLAKE2B 7a854a17aa68a9e36ca6e3d8829f67e65803b3ec4525496640f5798e71fed4fcf127b0165ca963b8d077fde632621e9ada8cf402be60080bd2235df54f5c5ffc SHA512 fc59fcb4480aa1863efe9ec736ae3df979f00bc300cafe47cc8b8cf2b578821476111d3beeecf2dd891b4b5829627fc7ab1cc965ce433a9fe2c719a427fbff65
EBUILD motionblinds-0.6.8.ebuild 785 BLAKE2B 7a854a17aa68a9e36ca6e3d8829f67e65803b3ec4525496640f5798e71fed4fcf127b0165ca963b8d077fde632621e9ada8cf402be60080bd2235df54f5c5ffc SHA512 fc59fcb4480aa1863efe9ec736ae3df979f00bc300cafe47cc8b8cf2b578821476111d3beeecf2dd891b4b5829627fc7ab1cc965ce433a9fe2c719a427fbff65
MISC metadata.xml 460 BLAKE2B 4e3dd3f756cdb4c5ccf4840441692f83f9f670410cfc6ef5c3152d47cf39bc2df6793306abf8fd7f051c7072d97ac4818bb2afb688e063a04ef388a7c48813ce SHA512 b7c5a5cca32c5a3ee235b322b9326927faac4be0378f6c508ec901d93a51dc31e5348c7854971489e695ee4d46268f8b0daf372a28cf576cb8e2d21480a20b7a

View File

@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Python library for interfacing with Motion Blinds"
HOMEPAGE="https://github.com/starkillerOG/motion-blinds https://pypi.org/project/motionblinds/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/pycryptodomex[${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
}
distutils_enable_tests pytest