From fc363283339fbba36624673c7145b56fa72e9d2d Mon Sep 17 00:00:00 2001 From: blshkv Date: Mon, 10 Dec 2018 13:35:06 +0800 Subject: [PATCH] ntlm-auth: remove in gentoo's favour --- dev-python/ntlm-auth/ntlm-auth-1.2.0.ebuild | 38 --------------------- 1 file changed, 38 deletions(-) delete mode 100644 dev-python/ntlm-auth/ntlm-auth-1.2.0.ebuild diff --git a/dev-python/ntlm-auth/ntlm-auth-1.2.0.ebuild b/dev-python/ntlm-auth/ntlm-auth-1.2.0.ebuild deleted file mode 100644 index 8a4ae7015..000000000 --- a/dev-python/ntlm-auth/ntlm-auth-1.2.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) - -inherit distutils-r1 - -DESCRIPTION="Create and parse NTLM authorisation tokens with all the latest standards" -HOMEPAGE="https://github.com/jborean93/ntlm-auth" -SRC_URI="https://github.com/jborean93/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="LGPL-3" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/wheel[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/unittest2[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/ordereddict[${PYTHON_USEDEP}]' python2_7)" - -python_test() { - distutils_install_for_testing - py.test --ignore=tests/functional/test_iis.py --cov ntlm_auth --cov-report term-missing tests || die "tests failed" -}