add pyghmi-1.5.19

This commit is contained in:
ikerbs 2020-12-11 01:53:13 +03:00
parent e31dc36211
commit 400c8ec17c
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST pyghmi-1.5.19.tar.gz 216814 BLAKE2B bf80b29c45515c38ee6b0d27deb7ea73a7263c3407b48656181108598bbeb65f4b7f6035559e20d5edc201aca12be5693b0a77748cab7cef19850faec852b5dd SHA512 2d94f3abcae9a45b08e40ab779e0f8f2434e3eea260772dc49007deb8382cc7dc75b10c91f952c26e220d7f937c2d3d8d663a0dc54337d3e2a59c6bfe6929f72
EBUILD pyghmi-1.5.19.ebuild 1144 BLAKE2B a7ff4a589cd57f4ced78e9d7b19e88a4740a3aae419ac04cdf73a452f27b9c05c63d54b086d0fadc5affe24bd1f195c67437ad1a8c7e019eacda8b8d649c30db SHA512 24db7c9c1c004f60d315271d2434151c5fedab450fc7df4d57148b8855bcf762a1abe019198b67945caa7f5751888c4eef0b4e3423a80214d8c27d2bfea874cf

View File

@ -0,0 +1,39 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8,9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
DESCRIPTION="A pure python implementation of IPMI protocol"
HOMEPAGE="https://github.com/openstack/pyghmi/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-python/cryptography-2.1[${PYTHON_USEDEP}]
dev-python/pbr[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? (
>=dev-python/coverage-4.0[${PYTHON_USEDEP}]
>=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
>=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
>=dev-python/stestr-1.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.6.5[${PYTHON_USEDEP}]
>=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
>=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
>=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
)"
python_test() {
stestr run || die "Tests failed under ${EPYTHON}"
}