summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-05-02 12:51:53 +0200
committerMichał Górny <mgorny@gentoo.org>2017-05-02 13:57:54 +0200
commit6cdaa18052ededf00eaa971b175dbf36f81e6420 (patch)
tree122456516b37b2327df23a6cca944c0a6f5d3e58 /dev-python/django-auth-ldap/django-auth-ldap-1.2.6.ebuild
parentdev-python/flask-peewee: Clean old versions up (diff)
downloadgentoo-6cdaa18052ededf00eaa971b175dbf36f81e6420.tar.gz
gentoo-6cdaa18052ededf00eaa971b175dbf36f81e6420.tar.bz2
gentoo-6cdaa18052ededf00eaa971b175dbf36f81e6420.zip
dev-python/django-auth-ldap: Clean old versions up
Diffstat (limited to 'dev-python/django-auth-ldap/django-auth-ldap-1.2.6.ebuild')
-rw-r--r--dev-python/django-auth-ldap/django-auth-ldap-1.2.6.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/django-auth-ldap/django-auth-ldap-1.2.6.ebuild b/dev-python/django-auth-ldap/django-auth-ldap-1.2.6.ebuild
deleted file mode 100644
index f19cc7804088..000000000000
--- a/dev-python/django-auth-ldap/django-auth-ldap-1.2.6.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-# Although setup.py claims to support py3, python-ldap does not
-PYTHON_COMPAT=( python2_7 pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Django LDAP authentication backend"
-HOMEPAGE="https://pypi.python.org/pypi/django-auth-ldap https://bitbucket.org/psagers/django-auth-ldap/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="dev-python/django[${PYTHON_USEDEP}]
- >=dev-python/python-ldap-2.0[${PYTHON_USEDEP}]"
-DEPEND="app-arch/unzip
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( ${RDEPEND}
- >=dev-python/mockldap-0.2[${PYTHON_USEDEP}] )
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-PATCHES=( "${FILESDIR}"/docs.patch )
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- PYTHONPATH=. "${PYTHON}" test/manage.py test || die
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}