diff --git a/README.md b/README.md index b848ae76e..1b566cb9f 100644 --- a/README.md +++ b/README.md @@ -548,11 +548,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 1478 Ebuilds in total, 1471 of them have in total 1480 (34 different) licenses assigned. +There are 1479 Ebuilds in total, 1472 of them have in total 1481 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|862| +|MIT|863| |Apache-2.0|298| |GPL-3|93| |BSD|87| diff --git a/dev-python/lupupy/Manifest b/dev-python/lupupy/Manifest index f514fc251..5e08901a2 100644 --- a/dev-python/lupupy/Manifest +++ b/dev-python/lupupy/Manifest @@ -1,3 +1,5 @@ DIST lupupy-0.0.24.tar.gz 9118 BLAKE2B 19abf9b18273659b82a9bfcbf32b8528c4cf679cce23ef7b05454b1ac627cce07f5bd943421e08e9b4042de3ecf2388b84173ee30244f17ced6621c40c27b723 SHA512 3f0b484546b70e9793da3fafb8dd699d948be4b628d6099855253e60e1767a18e1761b21c082a5930ac4b88cdd70e840ed0e9fe2ecc989688afe3b94338d8597 +DIST lupupy-0.1.9.tar.gz 10022 BLAKE2B bb2ce8e81e582dbf8cf2a1892b9a54f16527bfbe1b476f816b9ed3a611c3d87eef9a761dbe8fb23e0dc1e0a03594dd20ad3c49924ad7b65c841a50d44109dd5c SHA512 7b0beb4d2af632f77e7f341dc1fa9c78f8295ce41967a56092f10c6e49d2288b7795bb4bf7e1b544262d3b4fbc6d1889c7b8ff795dcefe54e303464025fa1301 EBUILD lupupy-0.0.24.ebuild 775 BLAKE2B 67b3d440cb9b61e2096267d029d977c08430eaa4e12f09acdab8ed30dab9fecda949f59db0aab148dc41a46b1e6605a8d75bcecde3b71f91fba80e9494c7e8f4 SHA512 8fafb31c4dec33356cbe5c4f10c646e6d90c1c66a41a78494558a80f644059e1babd41a8c0ef78f5d5566dab74aeef64a5a813748cfa16504c518033046c77d7 +EBUILD lupupy-0.1.9.ebuild 775 BLAKE2B 67b3d440cb9b61e2096267d029d977c08430eaa4e12f09acdab8ed30dab9fecda949f59db0aab148dc41a46b1e6605a8d75bcecde3b71f91fba80e9494c7e8f4 SHA512 8fafb31c4dec33356cbe5c4f10c646e6d90c1c66a41a78494558a80f644059e1babd41a8c0ef78f5d5566dab74aeef64a5a813748cfa16504c518033046c77d7 MISC metadata.xml 325 BLAKE2B cd23aa59e716bd76e3bffa025f74ab83ea3c726ce78577e86d4a7424a196266b63094439d9813b69a61f7422382ed8c6e20ac9f2a7c49a4dbb5456c2c3c9f320 SHA512 ecd86b71ac6cbc8feb966adc0dad465c2cf218ea85f79a3fdac3370a4e84013505a5e217bdcd7f194984891b5f848b8f226cf882aeb9df25e1499e4c45e6133f diff --git a/dev-python/lupupy/lupupy-0.1.9.ebuild b/dev-python/lupupy/lupupy-0.1.9.ebuild new file mode 100644 index 000000000..5d4c9cec1 --- /dev/null +++ b/dev-python/lupupy/lupupy-0.1.9.ebuild @@ -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="A python cli for Lupusec alarm panels." +HOMEPAGE="https://www.github.com/majuss/lupupy https://pypi.org/project/lupupy/" +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/requests-2.12.4[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/colorlog[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest