dev-python/pywinrm: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2024-08-03 08:39:14 +02:00
parent d15659ce94
commit e35ad81191
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
2 changed files with 0 additions and 48 deletions

View File

@ -1,2 +1 @@
DIST pywinrm-0.4.3.tar.gz 38356 BLAKE2B f998b9b56a60bf9d56b871e5fa8f59a4c0ec510b7a0a626b543b10e790596455797109eb2f929ff3224915ba8f6d1444843d735a67b9e2657fc6f705447dd056 SHA512 f6da28fc1c53a4c000539583ef5e6bdc108a2396f161a416cc151a8591478a6c7a577c5733374339fe3612a5a85046fb9cd44ca38f502aecd56b2723aae16943
DIST pywinrm-0.5.0.tar.gz 40875 BLAKE2B 13c0ae5fa2de14f880cdd89c00b8c374d65cc9d8c7b6e941333554a987f20c1c4c5c9cf47d23adfb8bd3a7fd83a67f65b54dc31f68b64436c3d418505182e04c SHA512 9a5a3ebe5b2ec3daf4417e0b43143b415d652ebd0f78bd04cfbe6d69aac1c45d012742f0ec754156131869c4695f94e993edefd1e8d4c4d88245bf628a6cdda5

View File

@ -1,47 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="Python client for the Windows Remote Management (WinRM) service"
HOMEPAGE="
https://github.com/diyan/pywinrm/
https://pypi.org/project/pywinrm/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm64 ~riscv"
IUSE="kerberos"
RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-ntlm[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]
kerberos? (
<dev-python/kerberos-2.0.0[${PYTHON_USEDEP}]
dev-python/requests-credssp[${PYTHON_USEDEP}]
dev-python/requests-kerberos[${PYTHON_USEDEP}]
)
"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
src_prepare() {
distutils-r1_src_prepare
# unbundle requests-kerberos
rm -r winrm/vendor || die
sed -i -e 's:winrm\.vendor\.::' winrm/*.py || die
}