mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-30 12:02:57 +01:00
pywinrm: I needed it
This commit is contained in:
parent
a764f0fe6e
commit
5bb3706860
2 changed files with 35 additions and 0 deletions
1
dev-python/pywinrm/Manifest
Normal file
1
dev-python/pywinrm/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST pywinrm-0.4.1.tar.gz 39865 BLAKE2B dde1697386a3fc245e2b1b0b05138431bb7b569ef9bdbc07ed6b6cb8bf593f2cc3d784bc65808b695cae36cc38c255c76847ed2e7cfb60b02648ef60db8b309e SHA512 e44427b69105e593eceb0a7801055c8fab60df30a619602ace73509ea2c39b3b5f3e034d8ec091835451f5daebaec515ef5782497706dedd8bf91cf167c9caa8
|
||||
34
dev-python/pywinrm/pywinrm-0.4.1.ebuild
Normal file
34
dev-python/pywinrm/pywinrm-0.4.1.ebuild
Normal 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
|
||||
}
|
||||
Loading…
Reference in a new issue