From 374090b4995e9013dbd301b65367ae6313fcdab8 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 20 Mar 2022 08:52:51 +0100 Subject: [PATCH] cleanup lupupy, remove olds --- README.md | 4 ++-- dev-python/lupupy/Manifest | 2 -- dev-python/lupupy/lupupy-0.0.21.ebuild | 33 -------------------------- 3 files changed, 2 insertions(+), 37 deletions(-) delete mode 100644 dev-python/lupupy/lupupy-0.0.21.ebuild diff --git a/README.md b/README.md index 2e94b3139..9b05006c4 100644 --- a/README.md +++ b/README.md @@ -496,11 +496,11 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o ## 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 1721 Ebuilds in total, 1713 of them have in total 1720 (34 different) licenses assigned. +There are 1720 Ebuilds in total, 1712 of them have in total 1719 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1044| +|MIT|1043| |Apache-2.0|315| |GPL-3|105| |BSD|96| diff --git a/dev-python/lupupy/Manifest b/dev-python/lupupy/Manifest index 55b5e962d..61bc4c351 100644 --- a/dev-python/lupupy/Manifest +++ b/dev-python/lupupy/Manifest @@ -1,5 +1,3 @@ -DIST lupupy-0.0.21.tar.gz 8170 BLAKE2B 4f6e4da183e59ad299a47cc5d45b32f8acff31b209f993e1d6637f85c18d5933fa088d727702039b2dcc469a0439f94e6af1502be08f175981f3b29a57d5cc75 SHA512 b848145f6f68db4cc7588d229f3798dff03d570da56e990bbd00be632c2b5e2dda3d4ed4fa90258477bb8aa74776020c67a33cc57e1bff4f7062e839604e3c49 DIST lupupy-0.0.24.tar.gz 9118 BLAKE2B 19abf9b18273659b82a9bfcbf32b8528c4cf679cce23ef7b05454b1ac627cce07f5bd943421e08e9b4042de3ecf2388b84173ee30244f17ced6621c40c27b723 SHA512 3f0b484546b70e9793da3fafb8dd699d948be4b628d6099855253e60e1767a18e1761b21c082a5930ac4b88cdd70e840ed0e9fe2ecc989688afe3b94338d8597 -EBUILD lupupy-0.0.21.ebuild 821 BLAKE2B 519189bfd3cb822c834af246d0cdc138c2d2811b25238ad5919c4afda5294ee3204ed07784540c595331aefe84e9eff4ce3064a5e11f2ce354c0dce77bf6a4ab SHA512 7c85d16d544b7837c585e337c9ff0a642ddfe066af71fb5f350d9d3586e12d2ae62359f62404cc60327149f669bf0a27ace3f9e39cfaa5b5893c86a0d594d5a8 EBUILD lupupy-0.0.24.ebuild 818 BLAKE2B 26cd668fdd8493600cb98fee203f9d6a93e298dd4cfba2da6553ab4427e26ed093a3678612e1e99d7e2062a9ff6ba8ec6a9be32725cb3db565580658bca8089b SHA512 a82825f31fc8c1abeb3ac232fe3a6962fdc9a564e87ce040deb29154ce6162104b5734d57909e504c23c918bdd76a83bfcbd73c3a06fddc8cdf0124c8549ca9a MISC metadata.xml 325 BLAKE2B cd23aa59e716bd76e3bffa025f74ab83ea3c726ce78577e86d4a7424a196266b63094439d9813b69a61f7422382ed8c6e20ac9f2a7c49a4dbb5456c2c3c9f320 SHA512 ecd86b71ac6cbc8feb966adc0dad465c2cf218ea85f79a3fdac3370a4e84013505a5e217bdcd7f194984891b5f848b8f226cf882aeb9df25e1499e4c45e6133f diff --git a/dev-python/lupupy/lupupy-0.0.21.ebuild b/dev-python/lupupy/lupupy-0.0.21.ebuild deleted file mode 100644 index 8209827d8..000000000 --- a/dev-python/lupupy/lupupy-0.0.21.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{8..10} ) - -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 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-python/requests-2.12.4[${PYTHON_USEDEP}] - dev-python/demjson[${PYTHON_USEDEP}] - dev-python/colorlog[${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 -}