ercpe 14/10/06 15:53:48 Modified: ChangeLog Added: django-auth-ldap-1.2.2.ebuild Log: Version bump of django-auth-ldap (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 77C501ED)
Revision Changes Path 1.15 dev-python/django-auth-ldap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 23 Jul 2014 10:37:27 -0000 1.14 +++ ChangeLog 6 Oct 2014 15:53:48 -0000 1.15 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/django-auth-ldap # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v 1.14 2014/07/23 10:37:27 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v 1.15 2014/10/06 15:53:48 ercpe Exp $ + +*django-auth-ldap-1.2.2 (06 Oct 2014) + + 06 Oct 2014; Johann Schmitz <er...@gentoo.org> +django-auth-ldap-1.2.2.ebuild: + Version bump of django-auth-ldap 23 Jul 2014; Ian Delaney <idel...@gentoo.org> django-auth-ldap-1.2.0.ebuild: typo 1.1 dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild?rev=1.1&content-type=text/plain Index: django-auth-ldap-1.2.2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v 1.1 2014/10/06 15:53:48 ercpe Exp $ 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="http://pypi.python.org/pypi/django-auth-ldap http://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}] )" #S="${WORKDIR}"/psagers-${PN}-80379ce59e6b PATCHES=( "${FILESDIR}"/docs.patch ) python_compile_all() { use doc && emake -C docs html } python_test() { PYTHONPATH=. "${PYTHON}" test/manage.py test } python_install_all() { use doc && local HTML_DOCS=( docs/build/html/. ) distutils-r1_python_install_all }