public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2013-06-18  5:31 Benda XU (heroxbd)
  0 siblings, 0 replies; 10+ messages in thread
From: Benda XU (heroxbd) @ 2013-06-18  5:31 UTC (permalink / raw
  To: gentoo-commits

heroxbd     13/06/18 05:31:29

  Modified:             ChangeLog
  Added:                nss_ldap-265-r2.ebuild
  Log:
  fix __libc_lock_lock  symbol against >=glibc-2.16 (bug 438692, thanks to Dennis Schridde).
  bump to EAPI 5 and add Prefix support.
  
  (Portage version: 2.1.12.4/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.74                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	30 Sep 2012 17:13:47 -0000	1.73
+++ ChangeLog	18 Jun 2013 05:31:29 -0000	1.74
@@ -1,6 +1,14 @@
 # ChangeLog for sys-auth/nss_ldap
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.73 2012/09/30 17:13:47 armin76 Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.74 2013/06/18 05:31:29 heroxbd Exp $
+
+*nss_ldap-265-r2 (18 Jun 2013)
+
+  18 Jun 2013; Benda Xu <heroxbd@gentoo.org>
+  +files/nss_ldap-265-installdir.patch, +files/nss_ldap-265-pthread.patch,
+  +nss_ldap-265-r2.ebuild:
+  fix __libc_lock_lock  symbol against >=glibc-2.16 (bug 438692, thanks to
+  Dennis Schridde). bump to EAPI 5 and add Prefix support.
 
   30 Sep 2012; Raúl Porcel <armin76@gentoo.org> nss_ldap-265-r1.ebuild:
   alpha/ia64/sparc stable wrt #429208



1.1                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.1&content-type=text/plain

Index: nss_ldap-265-r2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.1 2013/06/18 05:31:29 heroxbd Exp $

EAPI=5
inherit fixheadtails eutils multilib autotools prefix

IUSE="debug ssl sasl kerberos"

DESCRIPTION="NSS LDAP Module"
HOMEPAGE="http://www.padl.com/OSS/nss_ldap.html"
SRC_URI="http://www.padl.com/download/${P}.tar.gz"

SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"

DEPEND=">=net-nds/openldap-2.1.30-r5
		sasl? ( dev-libs/cyrus-sasl )
		kerberos? ( virtual/krb5 )
		ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}
		!<net-fs/autofs-4.1.3"

src_prepare() {
	if use prefix; then
		epatch "${FILESDIR}"/${P}-installdir.patch
		eprefixify Makefile.am
	fi

	# bug 438692
	epatch "${FILESDIR}"/${P}-pthread.patch

	epatch "${FILESDIR}"/nsswitch.ldap.diff

	# Applied by upstream
	#epatch "${FILESDIR}"/${PN}-239-tls-security-bug.patch

	epatch "${FILESDIR}"/${PN}-249-sasl-compile.patch

	EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-265-reconnect-timeouts.patch

	# Applied by upstream
	#EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-254-nss_getgrent_skipmembers.patch

	EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-257-nss_max_group_depth.patch

	sed -i.orig \
		-e '/^ @(#)\$Id: ldap.conf,v/s,^,#,' \
		"${S}"/ldap.conf

	# fix head/tail stuff
	ht_fix_file "${S}"/Makefile.am "${S}"/Makefile.in "${S}"/depcomp

	# fix build borkage
	for i in Makefile.{in,am}; do
	  sed -i.orig \
	    -e '/^install-exec-local: nss_ldap.so/s,nss_ldap.so,,g' \
	    "${S}"/$i
	done

	epatch "${FILESDIR}"/${PN}-257.2-gssapi-headers.patch

	# Bug #214750, no automagic deps
	epatch "${FILESDIR}"/${PN}-264-disable-automagic.patch

	# Upstream forgets the version number sometimes
	#sed -i \
	#	-e "/^AM_INIT_AUTOMAKE/s~2..~$PV~" \
	#	"${S}"/configure.in

	# Include an SONAME
	epatch "${FILESDIR}"/${PN}-254-soname.patch

	sed -i \
		-e 's, vers_string , ./vers_string ,g' \
		"${S}"/Makefile.am

	eautoreconf
}

src_configure() {
	local myconf=""
	use debug && myconf="${myconf} --enable-debugging"
	use kerberos && myconf="${myconf} --enable-configurable-krb5-ccname-gssapi"
	# --enable-schema-mapping \
	econf \
		--with-ldap-lib=openldap \
		--libdir="${EPREFIX}/$(get_libdir)" \
		--with-ldap-conf-file="${EPREFIX}/etc/ldap.conf" \
		--enable-paged-results \
		--enable-rfc2307bis \
		$(use_enable ssl) \
		$(use_enable sasl) \
		$(use_enable kerberos krb) \
		${myconf}
}

src_install() {
	dodir /$(get_libdir)

	emake -j1 DESTDIR="${D}" install INST_UID=${PORTAGE_USER} INST_GID=${PORTAGE_GROUP}

	insinto /etc
	doins ldap.conf

	# Append two blank lines and some skip entries
	echo >>"${ED}"/etc/ldap.conf
	echo >>"${ED}"/etc/ldap.conf
	sed -i "${ED}"/etc/ldap.conf \
		-e '$inss_initgroups_ignoreusers ldap,openldap,mysql,syslog,root,postgres'

	dodoc ldap.conf ANNOUNCE NEWS ChangeLog AUTHORS \
		COPYING CVSVersionInfo.txt README nsswitch.ldap certutil
	docinto docs; dodoc doc/*
}

pkg_postinst() {
	elog "If you use a ldaps:// string in the 'uri' setting of"
	elog "your /etc/ldap.conf, you must set 'ssl on'!"
}





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2013-06-20  3:34 Benda XU (heroxbd)
  0 siblings, 0 replies; 10+ messages in thread
From: Benda XU (heroxbd) @ 2013-06-20  3:34 UTC (permalink / raw
  To: gentoo-commits

heroxbd     13/06/20 03:34:13

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  default var PORTAGE_{USER,GROUP} to root, as they are only defined in Prefix. closing bug 473776. Thanks to Spooky Ghost and Bernd Feige.
  
  (Portage version: 2.1.12.4/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.1&r2=1.2

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nss_ldap-265-r2.ebuild	18 Jun 2013 05:31:29 -0000	1.1
+++ nss_ldap-265-r2.ebuild	20 Jun 2013 03:34:13 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.1 2013/06/18 05:31:29 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.2 2013/06/20 03:34:13 heroxbd Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -99,7 +99,8 @@
 src_install() {
 	dodir /$(get_libdir)
 
-	emake -j1 DESTDIR="${D}" install INST_UID=${PORTAGE_USER} INST_GID=${PORTAGE_GROUP}
+	emake -j1 DESTDIR="${D}" install \
+		INST_UID=${PORTAGE_USER:-root} INST_GID=${PORTAGE_GROUP:-root}
 
 	insinto /etc
 	doins ldap.conf



1.75                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	18 Jun 2013 05:31:29 -0000	1.74
+++ ChangeLog	20 Jun 2013 03:34:13 -0000	1.75
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.74 2013/06/18 05:31:29 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.75 2013/06/20 03:34:13 heroxbd Exp $
+
+  20 Jun 2013; Benda Xu <heroxbd@gentoo.org> nss_ldap-265-r2.ebuild:
+  default var PORTAGE_{USER,GROUP} to root, as they are only defined in Prefix.
+  closing bug 473776. Thanks to Spooky Ghost and Bernd Feige.
 
 *nss_ldap-265-r2 (18 Jun 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-07 22:44 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2014-01-07 22:44 UTC (permalink / raw
  To: gentoo-commits

jer         14/01/07 22:44:27

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #438692).
  
  (Portage version: 2.2.8/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.3                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.2&r2=1.3

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nss_ldap-265-r2.ebuild	20 Jun 2013 03:34:13 -0000	1.2
+++ nss_ldap-265-r2.ebuild	7 Jan 2014 22:44:27 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.2 2013/06/20 03:34:13 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.3 2014/01/07 22:44:27 jer Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.77                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	3 Nov 2013 06:05:02 -0000	1.76
+++ ChangeLog	7 Jan 2014 22:44:27 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.76 2013/11/03 06:05:02 prometheanfire Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.77 2014/01/07 22:44:27 jer Exp $
+
+  07 Jan 2014; Jeroen Roovers <jer@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable for HPPA (bug #438692).
 
   03 Nov 2013; Matthew Thode <prometheanfire@gentoo.org> metadata.xml:
   adding myself to maintainers





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-07 22:46 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2014-01-07 22:46 UTC (permalink / raw
  To: gentoo-commits

jer         14/01/07 22:46:13

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Do not install COPYING.
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.4                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.3&r2=1.4

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nss_ldap-265-r2.ebuild	7 Jan 2014 22:44:27 -0000	1.3
+++ nss_ldap-265-r2.ebuild	7 Jan 2014 22:46:13 -0000	1.4
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.3 2014/01/07 22:44:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.4 2014/01/07 22:46:13 jer Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -112,7 +112,7 @@
 		-e '$inss_initgroups_ignoreusers ldap,openldap,mysql,syslog,root,postgres'
 
 	dodoc ldap.conf ANNOUNCE NEWS ChangeLog AUTHORS \
-		COPYING CVSVersionInfo.txt README nsswitch.ldap certutil
+		CVSVersionInfo.txt README nsswitch.ldap certutil
 	docinto docs; dodoc doc/*
 }
 



1.78                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	7 Jan 2014 22:44:27 -0000	1.77
+++ ChangeLog	7 Jan 2014 22:46:13 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.77 2014/01/07 22:44:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.78 2014/01/07 22:46:13 jer Exp $
+
+  07 Jan 2014; Jeroen Roovers <jer@gentoo.org> nss_ldap-265-r2.ebuild:
+  Do not install COPYING.
 
   07 Jan 2014; Jeroen Roovers <jer@gentoo.org> nss_ldap-265-r2.ebuild:
   Stable for HPPA (bug #438692).





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-09  2:58 Patrick Lauer (patrick)
  0 siblings, 0 replies; 10+ messages in thread
From: Patrick Lauer (patrick) @ 2014-01-09  2:58 UTC (permalink / raw
  To: gentoo-commits

patrick     14/01/09 02:58:09

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable for amd64 and x86 #438692
  
  (Portage version: 2.2.8/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.4&r2=1.5

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nss_ldap-265-r2.ebuild	7 Jan 2014 22:46:13 -0000	1.4
+++ nss_ldap-265-r2.ebuild	9 Jan 2014 02:58:09 -0000	1.5
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.4 2014/01/07 22:46:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.5 2014/01/09 02:58:09 patrick Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.79                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	7 Jan 2014 22:46:13 -0000	1.78
+++ ChangeLog	9 Jan 2014 02:58:09 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.78 2014/01/07 22:46:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.79 2014/01/09 02:58:09 patrick Exp $
+
+  09 Jan 2014; Patrick Lauer <patrick@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable for amd64 and x86 #438692
 
   07 Jan 2014; Jeroen Roovers <jer@gentoo.org> nss_ldap-265-r2.ebuild:
   Do not install COPYING.





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-15 10:23 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-15 10:23 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/15 10:23:21

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #438692
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.5&r2=1.6

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nss_ldap-265-r2.ebuild	9 Jan 2014 02:58:09 -0000	1.5
+++ nss_ldap-265-r2.ebuild	15 Jan 2014 10:23:21 -0000	1.6
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.5 2014/01/09 02:58:09 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.6 2014/01/15 10:23:21 ago Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.80                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	9 Jan 2014 02:58:09 -0000	1.79
+++ ChangeLog	15 Jan 2014 10:23:21 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.79 2014/01/09 02:58:09 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.80 2014/01/15 10:23:21 ago Exp $
+
+  15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable for ia64, wrt bug #438692
 
   09 Jan 2014; Patrick Lauer <patrick@gentoo.org> nss_ldap-265-r2.ebuild:
   Stable for amd64 and x86 #438692





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-19 10:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-19 10:36 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/19 10:36:02

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #438692
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.6&r2=1.7

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nss_ldap-265-r2.ebuild	15 Jan 2014 10:23:21 -0000	1.6
+++ nss_ldap-265-r2.ebuild	19 Jan 2014 10:36:02 -0000	1.7
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.6 2014/01/15 10:23:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.7 2014/01/19 10:36:02 ago Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.81                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	15 Jan 2014 10:23:21 -0000	1.80
+++ ChangeLog	19 Jan 2014 10:36:02 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.80 2014/01/15 10:23:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.81 2014/01/19 10:36:02 ago Exp $
+
+  19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable for ppc64, wrt bug #438692
 
   15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
   Stable for ia64, wrt bug #438692





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-20 15:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-20 15:45 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/20 15:45:48

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #438692
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.7&r2=1.8

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nss_ldap-265-r2.ebuild	19 Jan 2014 10:36:02 -0000	1.7
+++ nss_ldap-265-r2.ebuild	20 Jan 2014 15:45:48 -0000	1.8
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.7 2014/01/19 10:36:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.8 2014/01/20 15:45:48 ago Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.82                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	19 Jan 2014 10:36:02 -0000	1.81
+++ ChangeLog	20 Jan 2014 15:45:48 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.81 2014/01/19 10:36:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.82 2014/01/20 15:45:48 ago Exp $
+
+  20 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable for ppc, wrt bug #438692
 
   19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
   Stable for ppc64, wrt bug #438692





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-01-26 12:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-26 12:06 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/26 12:06:44

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #438692
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.8&r2=1.9

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nss_ldap-265-r2.ebuild	20 Jan 2014 15:45:48 -0000	1.8
+++ nss_ldap-265-r2.ebuild	26 Jan 2014 12:06:44 -0000	1.9
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.8 2014/01/20 15:45:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.9 2014/01/26 12:06:44 ago Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.83                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	20 Jan 2014 15:45:48 -0000	1.82
+++ ChangeLog	26 Jan 2014 12:06:44 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.82 2014/01/20 15:45:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.83 2014/01/26 12:06:44 ago Exp $
+
+  26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable for sparc, wrt bug #438692
 
   20 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nss_ldap-265-r2.ebuild:
   Stable for ppc, wrt bug #438692





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

* [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog
@ 2014-06-18 13:06 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-06-18 13:06 UTC (permalink / raw
  To: gentoo-commits

klausman    14/06/18 13:06:26

  Modified:             nss_ldap-265-r2.ebuild ChangeLog
  Log:
  Stable on alpha, bug #438692
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.10                 sys-auth/nss_ldap/nss_ldap-265-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild?r1=1.9&r2=1.10

Index: nss_ldap-265-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nss_ldap-265-r2.ebuild	26 Jan 2014 12:06:44 -0000	1.9
+++ nss_ldap-265-r2.ebuild	18 Jun 2014 13:06:26 -0000	1.10
@@ -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/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.9 2014/01/26 12:06:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.10 2014/06/18 13:06:26 klausman Exp $
 
 EAPI=5
 inherit fixheadtails eutils multilib autotools prefix
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux"
 
 DEPEND=">=net-nds/openldap-2.1.30-r5
 		sasl? ( dev-libs/cyrus-sasl )



1.88                 sys-auth/nss_ldap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	30 May 2014 20:57:03 -0000	1.87
+++ ChangeLog	18 Jun 2014 13:06:26 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/nss_ldap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.87 2014/05/30 20:57:03 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.88 2014/06/18 13:06:26 klausman Exp $
+
+  18 Jun 2014; Tobias Klausmann <klausman@gentoo.org> nss_ldap-265-r2.ebuild:
+  Stable on alpha, bug #438692
 
   30 May 2014; Michał Górny <mgorny@gentoo.org> nss_ldap-265-r5.ebuild:
   Enable multilib sasl support.





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

end of thread, other threads:[~2014-06-18 13:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-07 22:46 [gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r2.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2014-06-18 13:06 Tobias Klausmann (klausman)
2014-01-26 12:06 Agostino Sarubbo (ago)
2014-01-20 15:45 Agostino Sarubbo (ago)
2014-01-19 10:36 Agostino Sarubbo (ago)
2014-01-15 10:23 Agostino Sarubbo (ago)
2014-01-09  2:58 Patrick Lauer (patrick)
2014-01-07 22:44 Jeroen Roovers (jer)
2013-06-20  3:34 Benda XU (heroxbd)
2013-06-18  5:31 Benda XU (heroxbd)

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