diff --git a/dev-python/pywinrm/Manifest b/dev-python/pywinrm/Manifest new file mode 100644 index 000000000..16495968f --- /dev/null +++ b/dev-python/pywinrm/Manifest @@ -0,0 +1 @@ +DIST pywinrm-0.4.1.tar.gz 39865 BLAKE2B dde1697386a3fc245e2b1b0b05138431bb7b569ef9bdbc07ed6b6cb8bf593f2cc3d784bc65808b695cae36cc38c255c76847ed2e7cfb60b02648ef60db8b309e SHA512 e44427b69105e593eceb0a7801055c8fab60df30a619602ace73509ea2c39b3b5f3e034d8ec091835451f5daebaec515ef5782497706dedd8bf91cf167c9caa8 diff --git a/dev-python/pywinrm/pywinrm-0.4.1.ebuild b/dev-python/pywinrm/pywinrm-0.4.1.ebuild new file mode 100644 index 000000000..565e5d8f4 --- /dev/null +++ b/dev-python/pywinrm/pywinrm-0.4.1.ebuild @@ -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 +}