net-analyzer/check_esxi_hardware: initial commit

This commit is contained in:
Fischl Anton 2021-07-25 15:15:39 +02:00
parent b535cef876
commit e470f218b5
11 changed files with 166 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST pywbem-1.2.0.tar.gz 3619037 BLAKE2B 6ad82b15426e3f1db91f46843d1dfdadc136a6439d76823dc2102ce23dd65a5dadc7aeea971026bead8af41fe860bbf54bda3b39c6a41e4ec80c43ae7f0c4677 SHA512 aa1c73268c9089df4b81e34a5ad499b0cd76a39ca261a88c12e012411a2ad3d15b4e5614be39adaa46f8efd7b5b3d46fd9aaed99a378c8d858411251b14ee073

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pywbem</remote-id>
<maintainer status="unknown">
<email>maiera@de.ibm.com, k.schopmeyer@swbell.net</email>
<name>Andreas Maier, Karl Schopmeyer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,38 @@
# 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="pywbem - A WBEM client"
HOMEPAGE="https://pywbem.github.io/pywbem/ https://pypi.org/project/pywbem/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/ply-3.10[${PYTHON_USEDEP}]
>=dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
>=dev-python/six-1.14.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
>=dev-python/yamlloader-0.5.5[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/wheel[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -0,0 +1 @@
DIST yamlloader-1.0.0.tar.gz 7721 BLAKE2B e60f27e781fb745813270c6d8a24b90102358c2a8a48d7771e1d05a92d781215fd3089fe2840c4aff4bd0e6f72d812cf6ad64b2abcfeb4291b6560b49ffd164a SHA512 b5b02115f4277efb139822d37b8f686112ed8c938589007f0b78b18a7faa06370c9099a1bdf957e3a40fe26759bf9b6df8ed44eb677edc4f62049a742f08d19c

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">yamlloader</remote-id>
<maintainer status="unknown">
<email>jonas.eschle@phynix.science</email>
<name>Jonas Eschle "Mayou36"</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# 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="Ordered YAML loader and dumper for PyYAML."
HOMEPAGE="https://github.com/Phynix/yamlloader https://pypi.org/project/yamlloader/"
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/pyyaml[${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
}

View File

@ -0,0 +1,16 @@
BDEPEND=dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=pywbem - A WBEM client
EAPI=7
HOMEPAGE=https://pywbem.github.io/pywbem/ https://pypi.org/project/pywbem/
INHERIT=distutils-r1
IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10
KEYWORDS=amd64 arm arm64 x86 ~amd64-linux ~x86-linux
LICENSE=LGPL-2.1+
RDEPEND=>=dev-python/ply-3.10[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/six-1.14.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/requests-2.22.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/yamlloader-0.5.5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?]
REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/p/pywbem/pywbem-1.2.0.tar.gz
_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa multilib 97566c1a256d07b00848aa767e38a352 multibuild 05a584848db4901c97fcd94ae7cc3a97 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a python-r1 e20b80360497e6215aed0dd4ca7d6bad distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9
_md5_=19a21abee2bcde906afd7ec989969d3b

View File

@ -0,0 +1,16 @@
BDEPEND=dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Ordered YAML loader and dumper for PyYAML.
EAPI=7
HOMEPAGE=https://github.com/Phynix/yamlloader https://pypi.org/project/yamlloader/
INHERIT=distutils-r1
IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10
KEYWORDS=amd64 arm arm64 x86 ~amd64-linux ~x86-linux
LICENSE=MIT
RDEPEND=dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?]
REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/y/yamlloader/yamlloader-1.0.0.tar.gz
_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa multilib 97566c1a256d07b00848aa767e38a352 multibuild 05a584848db4901c97fcd94ae7cc3a97 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a python-r1 e20b80360497e6215aed0dd4ca7d6bad distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9
_md5_=bba1c04e57e4cd1da33e7788801dee9b

View File

@ -0,0 +1,10 @@
DEFINED_PHASES=install
DEPEND=dev-python/pywbem
DESCRIPTION=A nagios plugin for checking MS-SQL server health
EAPI=7
HOMEPAGE=https://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php
KEYWORDS=amd64 x86
LICENSE=GPL-2+
SLOT=0
SRC_URI=https://github.com/Napsty/check_esxi_hardware/archive/refs/tags/20200710.tar.gz
_md5_=f855cd9e4b52bec482fd893a3ac9d390

View File

@ -0,0 +1 @@
DIST 20200710.tar.gz 12227 BLAKE2B becbab5dab917167de63f169da9e8e71033fee91dc3eb641ffb2f2cc17351a801baefbdfff8c84a30c3addb8d4fd68a01dee8f4b8139787bb2f57999852a8ee6 SHA512 ab4113aa33940af1268e584a02665990d9cb93011490ed8e64a7b7ef841b1fdea9aa140a885d7208cef8f5c6a250625e5ddd1e03b12c5e62465df49bffb25406

View File

@ -0,0 +1,20 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A nagios plugin for checking MS-SQL server health"
HOMEPAGE="https://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php"
SRC_URI="https://github.com/Napsty/${PN}/archive/refs/tags/${PV}.tar.gz"
DEPEND="dev-python/pywbem"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
src_install(){
default
exeinto /usr/lib64/nagios/plugins/contrib/
doexe check_esxi_hardware.py
}