mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-08 01:15:00 +01:00
34 lines
927 B
Bash
34 lines
927 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{9..10} )
|
|
|
|
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
|
|
}
|