dev-python/proxmoxer: drop 1.3.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:39:06 +01:00 committed by Andreas Billmeier
parent 08950d9abe
commit 172cb8fb2b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 40 deletions

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 1658 Ebuilds in total, 1647 of them have in total 1665 (42 different) licenses assigned.
There are 1657 Ebuilds in total, 1646 of them have in total 1664 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|962|
|MIT|961|
|Apache-2.0|346|
|GPL-3|106|
|BSD|90|

View File

@ -1,5 +1,3 @@
DIST proxmoxer-1.3.1.tar.gz 15387 BLAKE2B 35952f26b777bea34e5690acfb45d83720129aa4a5e57c7a8b2e023a1aacbd040f2710ed4f6f9e7889c06396159496a1372011a46932a26e0ee0ace758bf255a SHA512 9b27f73eb55d061a9acb559660a54b1bda12ab1506cf964f9ab30e7a534325233f7607970780f7860951d52f04b3371fab474a7225206b870944a0154b58c751
DIST proxmoxer-2.0.1.tar.gz 17551 BLAKE2B 230195761967b874e1eb930ae27344476f4465b7a559191767700d5af401f00a7de0930feb4d2a502b56dc997fcfaa90e13308a4b4adf9e6117790648115f77e SHA512 3e7b9ccf6220c4f06db8be48d3ee98e4664e45c59239967b14b0f3028f12a5afe505cffa649e77b1213e426d73d26ab6c8ff45744ab56fa42dea1a293fc099a7
EBUILD proxmoxer-1.3.1.ebuild 828 BLAKE2B 17b79685aa44b2f7370159d8a6d1efddd43403e13ab14d3aa70b25481d8959f1306daf3eca2dd318ce8e05aceb7ccfa8fa6f8351e32520b95709c3642d5bc477 SHA512 b13fef083a459f558e6993407ab5d1221b11912f53109c3cfb38785c6ddaad8f3eb819c2714976973e32ed2c906960804d483b21c3a959a2263717e351508244
EBUILD proxmoxer-2.0.1.ebuild 828 BLAKE2B 17b79685aa44b2f7370159d8a6d1efddd43403e13ab14d3aa70b25481d8959f1306daf3eca2dd318ce8e05aceb7ccfa8fa6f8351e32520b95709c3642d5bc477 SHA512 b13fef083a459f558e6993407ab5d1221b11912f53109c3cfb38785c6ddaad8f3eb819c2714976973e32ed2c906960804d483b21c3a959a2263717e351508244
MISC metadata.xml 511 BLAKE2B 24cb4c4cab374652eb18b2171355ece9942c3616191c23e8f6b006ac457d95253a9833ec573b830ff97b33705b239d7ac009a9079e653374c24769abe2fcdcf4 SHA512 f0b9293f9ba1ee49ee6e8516208c324a001dd30cf720307e2b88a772c3af64a3b62630da65358836f8d1adc3bbf09de44c68cbbe60223ff1795430e853073ac3

View File

@ -1,36 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python Wrapper for the Proxmox 2.x API (HTTP and SSH)"
HOMEPAGE="https://github.com/swayf/proxmoxer https://pypi.org/project/proxmoxer/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
src_prepare() {
sed "s/packages=\['proxmoxer', 'proxmoxer.backends', 'tests', 'tests.base'\]/packages=['proxmoxer', 'proxmoxer.backends']/g" -i setup.py || die
eapply_user
}
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest