update proxmoxer-1.3.1

This commit is contained in:
Andreas Billmeier 2022-07-18 10:07:01 +02:00 committed by Andreas Billmeier
parent ddc6a80585
commit af70f468fd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 44 additions and 2 deletions

View File

@ -524,11 +524,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 1767 Ebuilds in total, 1760 of them have in total 1769 (35 different) licenses assigned.
There are 1768 Ebuilds in total, 1761 of them have in total 1770 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1081|
|MIT|1082|
|Apache-2.0|315|
|GPL-3|106|
|BSD|102|

View File

@ -1,3 +1,5 @@
DIST proxmoxer-1.1.1.tar.gz 18588 BLAKE2B 1f9a9dc656e958fe2d6fe1f38d618bec70df16892a344beb313d484825ac42737e78efc98a5f3bb5864bae5791c7b36fb82a80d7e5993676cac1d9f2f7c45c8b SHA512 cad9cb21103105d1e35927cdeb72d222a4fcbd30fce25b61b0e8e7b182b1e62bb29c318b5e7a5ba2abfa2635c39320d7f7ecbac2d4b49ef6086c644b86f9fc21
DIST proxmoxer-1.3.1.tar.gz 15387 BLAKE2B 35952f26b777bea34e5690acfb45d83720129aa4a5e57c7a8b2e023a1aacbd040f2710ed4f6f9e7889c06396159496a1372011a46932a26e0ee0ace758bf255a SHA512 9b27f73eb55d061a9acb559660a54b1bda12ab1506cf964f9ab30e7a534325233f7607970780f7860951d52f04b3371fab474a7225206b870944a0154b58c751
EBUILD proxmoxer-1.1.1.ebuild 910 BLAKE2B 430678b383f2e1060508ef39d59b9e76a1764724f91d52cf2e4d77b10023e5679e4c4aa6ea795b05fb910604db23a14c14132c6560244aec711e97f3249aa420 SHA512 f532c20deaff73e9de04e3dbe0aeb615a76df137dad0c63b860910a98513d706a9dfec2d45aa44bd28855fb96636e56635043fe7044949b55e3c59f77af40523
EBUILD proxmoxer-1.3.1.ebuild 978 BLAKE2B 0c1582466f1336a12f705e425b3676d0dd11af24316bb316359649b644ccc54fd080d30566417fcb5bf084c7d8c13aa088ef74d9b1907959ee29d5ad8120d37a SHA512 a58bcd9e650c7063f779e119e5da9b25e976b01c70c3d7e8e49d7f39c01dc759daae2a4f564268fc93ef16ac88b3a47d3e3c96a665993ea4336bd25673596951
MISC metadata.xml 454 BLAKE2B 8f9cd23b208074f1425a445e4f89e9681f27a285fd428c99c4a8d26e066f239cd5b3ba828282d8eb13432664d0bb6fa9f3f2efc7faf4e5d3a67c3c8cf1885201 SHA512 17a4b4a74f8745a5a0e080157122ce5543a5bd0adac49065ad311aafb0addbc4519f70cf222dd18f23222ed222f8ffd6d923555bd7f3d0e335ac344e28ffe3e8

View File

@ -0,0 +1,40 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python Wrapper for the Proxmox 2.x API (HTTP and SSH)"
HOMEPAGE="https://github.com/swayf/proxmoxer https://pypi.org/project/proxmoxer/"
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 )"
DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
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() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest