pywinrm: I needed it

This commit is contained in:
Rick Farina (Zero_Chaos) 2021-05-19 16:39:17 -04:00
parent a764f0fe6e
commit 5bb3706860
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST pywinrm-0.4.1.tar.gz 39865 BLAKE2B dde1697386a3fc245e2b1b0b05138431bb7b569ef9bdbc07ed6b6cb8bf593f2cc3d784bc65808b695cae36cc38c255c76847ed2e7cfb60b02648ef60db8b309e SHA512 e44427b69105e593eceb0a7801055c8fab60df30a619602ace73509ea2c39b3b5f3e034d8ec091835451f5daebaec515ef5782497706dedd8bf91cf167c9caa8

View file

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1 optfeature
DESCRIPTION="Python library for Windows Remote Management"
HOMEPAGE="https://github.com/diyan/pywinrm"
SRC_URI="https://github.com/diyan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-ntlm[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
distutils_enable_tests pytest
python_install_all() {
distutils-r1_python_install_all
find "${ED}" -type d -name "tests" -exec rm -rv {} + || die "tests removing failed"
}
pkg_postinst() {
optfeature "integration with Kerberos" dev-python/requests-kerberos
optfeature "integration with CredSSP" dev-python/requests-credssp
}