commit: e35ad8119109dedda3b32c25d4e6635d6dc9c427 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Aug 3 06:39:14 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Aug 3 06:39:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35ad811
dev-python/pywinrm: Remove old Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pywinrm/Manifest | 1 - dev-python/pywinrm/pywinrm-0.4.3-r1.ebuild | 47 ------------------------------ 2 files changed, 48 deletions(-) diff --git a/dev-python/pywinrm/Manifest b/dev-python/pywinrm/Manifest index b0c5d31ab76b..cb488fc30509 100644 --- a/dev-python/pywinrm/Manifest +++ b/dev-python/pywinrm/Manifest @@ -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 diff --git a/dev-python/pywinrm/pywinrm-0.4.3-r1.ebuild b/dev-python/pywinrm/pywinrm-0.4.3-r1.ebuild deleted file mode 100644 index 054f934880f7..000000000000 --- a/dev-python/pywinrm/pywinrm-0.4.3-r1.ebuild +++ /dev/null @@ -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 -}