From 400c8ec17c1a4c1b092eba4bc338aeb2258890d3 Mon Sep 17 00:00:00 2001 From: ikerbs Date: Fri, 11 Dec 2020 01:53:13 +0300 Subject: [PATCH] add pyghmi-1.5.19 --- dev-python/pyghmi/Manifest | 2 ++ dev-python/pyghmi/pyghmi-1.5.19.ebuild | 39 ++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 dev-python/pyghmi/Manifest create mode 100644 dev-python/pyghmi/pyghmi-1.5.19.ebuild diff --git a/dev-python/pyghmi/Manifest b/dev-python/pyghmi/Manifest new file mode 100644 index 0000000..2f594ef --- /dev/null +++ b/dev-python/pyghmi/Manifest @@ -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 diff --git a/dev-python/pyghmi/pyghmi-1.5.19.ebuild b/dev-python/pyghmi/pyghmi-1.5.19.ebuild new file mode 100644 index 0000000..97dadee --- /dev/null +++ b/dev-python/pyghmi/pyghmi-1.5.19.ebuild @@ -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}" +}