dev-python/pywbem: add 1.7.3
This commit is contained in:
parent
71921a07de
commit
31cefaee1b
@ -1,5 +1,3 @@
|
||||
DIST pywbem-1.0.2.tar.gz 3569158 BLAKE2B 8cc36ec8984dc43f37a468e8f41d3ee0ccc4fddcbe9a84c4c1b584d05f1eb194555718917ef20469514a17f1d80985866932443284ce04a431bf17576630064b SHA512 33dbe87dcfe2d9e8921774c088e76ad7d23e3c786d8e20d4a86f8714699cad9faf1af8fed715a9ec282158934f5efa0866225fe237efd2e47b04d8b109eddb79
|
||||
DIST pywbem-1.2.0.tar.gz 3619037 BLAKE2B 6ad82b15426e3f1db91f46843d1dfdadc136a6439d76823dc2102ce23dd65a5dadc7aeea971026bead8af41fe860bbf54bda3b39c6a41e4ec80c43ae7f0c4677 SHA512 aa1c73268c9089df4b81e34a5ad499b0cd76a39ca261a88c12e012411a2ad3d15b4e5614be39adaa46f8efd7b5b3d46fd9aaed99a378c8d858411251b14ee073
|
||||
EBUILD pywbem-1.0.2.ebuild 969 BLAKE2B 4a7ce0e99433ce6c86a854ee2b78d1a083890f9c97d48a9e5e8f2cb658d3026c62f1a83bc394d4f549dc4ce428edabc1c67069198a053472e8eac4a627621a20 SHA512 e664917b4da3cc9a56b872aaf223248b16db9c2475f28db7414bba0a8e6d8012b98a2c4039ddaa51ac74f4219e7d8a2c473222b9929175ffedd56f42b81f0c46
|
||||
EBUILD pywbem-1.2.0.ebuild 980 BLAKE2B 85f3add7e05999cbbca34fa9f22e80ce1fec74e338c5259b9eba71310370c0418bd18753a7e92b6a3a9ff8cea7020b8f1b838c1ddd9deb29aaa3a56504607b01 SHA512 a42bb3725bf217ad81ad2f8a22c3fc7513cd0b33abb4aa142c93a643bf74cc0c0dbabe243b334d5bb3f3ec569571e1c019d2914c2c9a3d00133410d5a875e21a
|
||||
DIST pywbem-1.7.3.tar.gz 5711300 BLAKE2B c2fea2d969c2a07cda5180eff4591da37a008d73f4214345387f112b69becc412781b5f309f781b2b133a8558ea7dd23e2f997b518678f37ffaef34678fb31e6 SHA512 f213cb066213bc823c252c3be308808c0e7cb100fea193d2e1d6bf82d58dfc2f94ec30b16b63faec85ea7ae20d789437ac75fcc4e6faba0875d677cf3067a51d
|
||||
EBUILD pywbem-1.7.3.ebuild 891 BLAKE2B 6241aebcff3acf247fbbac130c645e364970c5b3c346434da6f4c173755df4e5a317cac340e9991c7f89aff1607f2a85d57c3253c4e50fe34cd9de5b43832661 SHA512 365c617a62514f2ee450f4ea997237e5f4ee39967fa3c088cb8ca52ba7c95bdc7a5d22ae6762cc91651dcd6d20b9456b6442816d2ef167359abdc2e0342fe3f9
|
||||
MISC metadata.xml 491 BLAKE2B 603d277edaeca0ae42f72efd65c144065643d21e1e364a67fdc57262d7099662d7802cfafd0304c77e14bac8054e77fb432fa5e40db68e98ca9cc31fc5d7e904 SHA512 fd61313f725e132c6b37558db7e7c10abd01e7790bfdf5e773bef5b9861c1d5d9a6cb9c11fbc6bf0306cc99039c2d3cce3e6252afb658fb348b0704b0531fd05
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="pywbem - A WBEM client"
|
||||
HOMEPAGE="https://github.com/pywbem/pywbem/ 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 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
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.20.0[${PYTHON_USEDEP}]
|
||||
~dev-python/custom-inherit-2.2.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/yamlloader-0.5.5[${PYTHON_USEDEP}]"
|
||||
DEPEND="${REDEPEND}
|
||||
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
|
||||
}
|
||||
@ -1,37 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
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 version 2.1, or (at your option) any later version"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="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
|
||||
}
|
||||
34
dev-python/pywbem/pywbem-1.7.3.ebuild
Normal file
34
dev-python/pywbem/pywbem-1.7.3.ebuild
Normal file
@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
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"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND=">=dev-python/ply-3.10[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.32.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/yamlloader-0.5.5[${PYTHON_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/wheel[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Loading…
x
Reference in New Issue
Block a user