public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/django-auth-ldap: django-auth-ldap-1.2.2.ebuild ChangeLog
@ 2014-10-06 15:53 Johann Schmitz (ercpe)
  0 siblings, 0 replies; 4+ messages in thread
From: Johann Schmitz (ercpe) @ 2014-10-06 15:53 UTC (permalink / raw
  To: gentoo-commits

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 <ercpe@gentoo.org> +django-auth-ldap-1.2.2.ebuild:
+  Version bump of django-auth-ldap
 
   23 Jul 2014; Ian Delaney <idella4@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
}





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-auth-ldap: django-auth-ldap-1.2.2.ebuild ChangeLog
@ 2014-10-06 16:08 Johann Schmitz (ercpe)
  0 siblings, 0 replies; 4+ messages in thread
From: Johann Schmitz (ercpe) @ 2014-10-06 16:08 UTC (permalink / raw
  To: gentoo-commits

ercpe       14/10/06 16:08:04

  Modified:             django-auth-ldap-1.2.2.ebuild ChangeLog
  Log:
  Added missing die to test call. Thanks jlec for catching that.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 77C501ED)

Revision  Changes    Path
1.2                  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.2&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.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild?r1=1.1&r2=1.2

Index: django-auth-ldap-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-auth-ldap-1.2.2.ebuild	6 Oct 2014 15:53:48 -0000	1.1
+++ django-auth-ldap-1.2.2.ebuild	6 Oct 2014 16:08:04 -0000	1.2
@@ -1,6 +1,6 @@
 # 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v 1.2 2014/10/06 16:08:04 ercpe Exp $
 
 EAPI=5
 # Although setup.py claims to support py3, python-ldap does not
@@ -35,7 +35,7 @@
 }
 
 python_test() {
-	PYTHONPATH=. "${PYTHON}" test/manage.py test
+	PYTHONPATH=. "${PYTHON}" test/manage.py test || die
 }
 
 python_install_all() {



1.16                 dev-python/django-auth-ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	6 Oct 2014 15:53:48 -0000	1.15
+++ ChangeLog	6 Oct 2014 16:08:04 -0000	1.16
@@ -1,6 +1,9 @@
 # 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.15 2014/10/06 15:53:48 ercpe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v 1.16 2014/10/06 16:08:04 ercpe Exp $
+
+  06 Oct 2014; Johann Schmitz <ercpe@gentoo.org> django-auth-ldap-1.2.2.ebuild:
+  Added missing die to test call. Thanks jlec for catching that.
 
 *django-auth-ldap-1.2.2 (06 Oct 2014)
 





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-auth-ldap: django-auth-ldap-1.2.2.ebuild ChangeLog
@ 2015-03-06 22:14 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:14 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/06 22:14:42

  Modified:             django-auth-ldap-1.2.2.ebuild ChangeLog
  Log:
  amd64 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  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.3&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.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild?r1=1.2&r2=1.3

Index: django-auth-ldap-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-auth-ldap-1.2.2.ebuild	6 Oct 2014 16:08:04 -0000	1.2
+++ django-auth-ldap-1.2.2.ebuild	6 Mar 2015 22:14:42 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 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.2 2014/10/06 16:08:04 ercpe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v 1.3 2015/03/06 22:14:42 pacho Exp $
 
 EAPI=5
 # Although setup.py claims to support py3, python-ldap does not
@@ -12,7 +12,7 @@
 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"
+KEYWORDS="amd64 ~x86"
 IUSE="doc test"
 
 LICENSE="BSD"



1.18                 dev-python/django-auth-ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	28 Dec 2014 19:22:08 -0000	1.17
+++ ChangeLog	6 Mar 2015 22:14:42 -0000	1.18
@@ -1,6 +1,9 @@
 # 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.17 2014/12/28 19:22:08 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v 1.18 2015/03/06 22:14:42 pacho Exp $
+
+  06 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-auth-ldap-1.2.2.ebuild:
+  amd64 stable, bug 540290
 
   28 Dec 2014; Mike Gilbert <floppym@gentoo.org>
   -django-auth-ldap-1.1.4-r1.ebuild, -django-auth-ldap-1.2.0.ebuild:





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-auth-ldap: django-auth-ldap-1.2.2.ebuild ChangeLog
@ 2015-03-08 23:43 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:43 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/08 23:43:58

  Modified:             django-auth-ldap-1.2.2.ebuild ChangeLog
  Log:
  x86 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  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.4&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.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild?r1=1.3&r2=1.4

Index: django-auth-ldap-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- django-auth-ldap-1.2.2.ebuild	6 Mar 2015 22:14:42 -0000	1.3
+++ django-auth-ldap-1.2.2.ebuild	8 Mar 2015 23:43:58 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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.3 2015/03/06 22:14:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/django-auth-ldap-1.2.2.ebuild,v 1.4 2015/03/08 23:43:58 pacho Exp $
 
 EAPI=5
 # Although setup.py claims to support py3, python-ldap does not
@@ -12,7 +12,7 @@
 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"
+KEYWORDS="amd64 x86"
 IUSE="doc test"
 
 LICENSE="BSD"



1.19                 dev-python/django-auth-ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-auth-ldap/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	6 Mar 2015 22:14:42 -0000	1.18
+++ ChangeLog	8 Mar 2015 23:43:58 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/django-auth-ldap
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v 1.18 2015/03/06 22:14:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-auth-ldap/ChangeLog,v 1.19 2015/03/08 23:43:58 pacho Exp $
+
+  08 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-auth-ldap-1.2.2.ebuild:
+  x86 stable, bug 540290
 
   06 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-auth-ldap-1.2.2.ebuild:
   amd64 stable, bug 540290





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-03-08 23:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-06 15:53 [gentoo-commits] gentoo-x86 commit in dev-python/django-auth-ldap: django-auth-ldap-1.2.2.ebuild ChangeLog Johann Schmitz (ercpe)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-06 16:08 Johann Schmitz (ercpe)
2015-03-06 22:14 Pacho Ramos (pacho)
2015-03-08 23:43 Pacho Ramos (pacho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox