dev-python/lupupy: add 0.3.1

Closes: #2398
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-11-23 19:44:09 +01:00
committed by onkelbeh
parent f5850fd51d
commit 6bce5ead8a
3 changed files with 37 additions and 2 deletions
+2 -2
View File
@@ -612,11 +612,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 1645 Ebuilds in total, 1634 of them have in total 1654 (43 different) licenses assigned.
There are 1646 Ebuilds in total, 1635 of them have in total 1655 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|957|
|MIT|958|
|Apache-2.0|340|
|GPL-3|95|
|BSD|95|
+2
View File
@@ -1,3 +1,5 @@
DIST lupupy-0.3.0.tar.gz 10606 BLAKE2B 79e2c8dfd734766c6caddd716c240a65b39b779d17124647b023adb48c238c7352e33ea6c7466feed73bed97d2076b667fa51932d55e55309fd9639ff4b15c83 SHA512 9a2d96aeaee7c0ee73f31e74e02deed4fa4857ab47270b1bbe6400e8749c2a3a481b9507ffa3b2d3b7dcbe8ccbeec8e70d111bc5ab8c2b6bafa73a26d4862cb6
DIST lupupy-0.3.1.tar.gz 10603 BLAKE2B 1ae8816b4c5737123aefed9ea2ce45812b129b5e3d5ea175cf16dcdf507d8443046f78094c07892a4cca513846d6594fe0561dae189792888c87f49cf2a86142 SHA512 d9754a82973799d8d95216e5b664e848b80193a0a7f7049bd3a46f12a64068fbc7d462d51d7410ab3c1ad49c718f68d78aabf4e8ec85e24f5b37e7eebb199480
EBUILD lupupy-0.3.0.ebuild 761 BLAKE2B b34d269723ae790e977e7197cec97a614fdfb870b407968c4d3df00692691c6b4814eb80381114b864af2f922d2ca63548617d1536f567184ef95c2bbf1d0472 SHA512 512923c49de848f77fb17560621dad05cbec7dd4d68310eb3ed52e28479ebe51fb99c21ac9291bc133d2086ba396243824a7026b3ccb441587f563b3247e55e9
EBUILD lupupy-0.3.1.ebuild 720 BLAKE2B f9d52b0c03bb8ea78d949b43770177b9a33f7e4db5c02849baf3b117cb0e0b406c4339ac1da0ed010f5447d87c1386edad6a9cc415efce6cb20ce826712fd4f8 SHA512 5e6706cc39654fd2451dccc9c64abfe8944a869b61bd1273ee70f94547bd0f121a9a731c530f71544cbfb34050d5e87b52c19039583a6431cb0bb50980b8c6b8
MISC metadata.xml 380 BLAKE2B 5e517331efa0f74c1c5921489df789fdf057300ee562d666df000fcde061456184177b4f455c69e21990c21e0c7d7d977f2ce573b0fd93c5e522f3dd9287845d SHA512 3c28f6674fcb54a4d67b472f9eaeb647b7697a7cf0b22e7512ea4e8b41b3ed197d0755a57582d366cb45e8bfc22c8f9bba4f71a28414466a953552f276ed4eaa
+33
View File
@@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="A python cli for Lupusec alarm panels."
HOMEPAGE="https://www.github.com/majuss/lupupy https://pypi.org/project/lupupy/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.12.4[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/colorlog[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest