Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-auth-ldap/
Date: Thu, 18 Feb 2016 17:05:41
Message-Id: 1455815076.358894f4371104dc432ce54934d8422886fe16b7.patrick@gentoo
1 commit: 358894f4371104dc432ce54934d8422886fe16b7
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 18 16:15:49 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 18 17:04:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=358894f4
7
8 dev-python/django-auth-ldap: Bump
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/django-auth-ldap/Manifest | 1 +
13 .../django-auth-ldap/django-auth-ldap-1.2.7.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/django-auth-ldap/Manifest b/dev-python/django-auth-ldap/Manifest
17 index a2e1627..9f8570f 100644
18 --- a/dev-python/django-auth-ldap/Manifest
19 +++ b/dev-python/django-auth-ldap/Manifest
20 @@ -1,2 +1,3 @@
21 DIST django-auth-ldap-1.2.2.tar.gz 131086 SHA256 faa067b073f6ea73c1ceeb5e244187ae1b3cf4ec79846ff366fa996428434264 SHA512 676d1114faeb9a2956ed51c586afea7618c1bf62867d3525596599391f8327b8f22a075c4203311df88279c317ca37b9097b59e55a64330afee6eb1c5a9c9ac3 WHIRLPOOL ae84405b4855ad9701244ab6cbd5e5154d2e173e04896c27e0869680bb4e030b6847293bcc59ef4f7f56969778c7d403721bae0d7099e2f3724186908c7abbbd
22 DIST django-auth-ldap-1.2.6.tar.gz 131385 SHA256 17671e1f0f1ef5c1242291f710956ba9446bf804ff907eab1fe533031b9411b5 SHA512 59d6d18ad2f890e26a728b9f45885d98d08d85a36bce0a28cd52e02f7c4a52def79d668c1948be37915fd0c3be72d50de983bf4a4b622ce7bbff7d3e040b63b7 WHIRLPOOL 5e673bc686f222e6704ca98f0ae8a7472bd85b6c33f3182f4a087d9a8b3174cdcd76521ce42033874979d00dee94cbdc2db5da32b8bdceb474edf3e8b498d1ee
23 +DIST django-auth-ldap-1.2.7.tar.gz 131431 SHA256 ff6af43d5429fbd918f62c25a07e2bff916b053b46990c1b60e60de63d5f3f80 SHA512 2ca29bdceb4b2540f7c90c9dfdfd7a02f91e72cd44ae062cebff84199dab737ee69ada56269189ec0dd70ee7916c3373acba50866280ad080c4c68dd69dffb09 WHIRLPOOL 785f1155e03f80e1c84f62bd565455c079ccf326210ff45c5597d7ac344e362b54ffb4196b1bbbdb5568a1288c053ae0dc2531489c33da95511323ea345be399
24
25 diff --git a/dev-python/django-auth-ldap/django-auth-ldap-1.2.7.ebuild b/dev-python/django-auth-ldap/django-auth-ldap-1.2.7.ebuild
26 new file mode 100644
27 index 0000000..7d9afb2
28 --- /dev/null
29 +++ b/dev-python/django-auth-ldap/django-auth-ldap-1.2.7.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +# Although setup.py claims to support py3, python-ldap does not
37 +PYTHON_COMPAT=( python2_7 pypy )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Django LDAP authentication backend"
42 +HOMEPAGE="https://pypi.python.org/pypi/django-auth-ldap https://bitbucket.org/psagers/django-auth-ldap/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="doc test"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +
51 +RDEPEND="dev-python/django[${PYTHON_USEDEP}]
52 + >=dev-python/python-ldap-2.0[${PYTHON_USEDEP}]"
53 +DEPEND="app-arch/unzip
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + test? ( ${RDEPEND}
56 + >=dev-python/mockldap-0.2[${PYTHON_USEDEP}] )
57 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
58 +
59 +PATCHES=( "${FILESDIR}"/docs.patch )
60 +
61 +python_compile_all() {
62 + use doc && emake -C docs html
63 +}
64 +
65 +python_test() {
66 + PYTHONPATH=. "${PYTHON}" test/manage.py test || die
67 +}
68 +
69 +python_install_all() {
70 + use doc && local HTML_DOCS=( docs/build/html/. )
71 + distutils-r1_python_install_all
72 +}