public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2012-11-02 14:01 Eray Aslan (eras)
  0 siblings, 0 replies; 14+ messages in thread
From: Eray Aslan (eras) @ 2012-11-02 14:01 UTC (permalink / raw
  To: gentoo-commits

eras        12/11/02 14:01:00

  Modified:             ChangeLog
  Added:                courier-authlib-0.65.0-r2.ebuild
  Log:
  Don't break net-mail/courier-imap - bug #439202
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)

Revision  Changes    Path
1.124                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.123&r2=1.124

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog	17 Oct 2012 12:41:17 -0000	1.123
+++ ChangeLog	2 Nov 2012 14:01:00 -0000	1.124
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.123 2012/10/17 12:41:17 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.124 2012/11/02 14:01:00 eras Exp $
+
+*courier-authlib-0.65.0-r2 (02 Nov 2012)
+
+  02 Nov 2012; Eray Aslan <eras@gentoo.org> +courier-authlib-0.65.0-r2.ebuild:
+  Don't break net-mail/courier-imap - bug #439202
 
 *courier-authlib-0.65.0-r1 (17 Oct 2012)
 



1.1                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.1 2012/11/02 14:01:00 eras Exp $

EAPI=4
inherit eutils flag-o-matic multilib user autotools

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"

DESCRIPTION="Courier authentication library."
SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
HOMEPAGE="http://www.courier-mta.org/"
LICENSE="GPL-3"
SLOT="0"
IUSE="berkdb crypt debug gdbm ldap mysql pam postgres sqlite static-libs vpopmail"

RESTRICT="userpriv
	!berkdb? ( test )"

RDEPEND="gdbm? ( sys-libs/gdbm )
		!gdbm? ( sys-libs/db )"

DEPEND="${RDEPEND}
		>=dev-libs/openssl-0.9.6
		ldap? ( >=net-nds/openldap-1.2.11 )
		mysql? ( virtual/mysql )
		pam? ( virtual/pam )
		postgres? ( >=dev-db/postgresql-base-8.4 )
		sqlite? ( dev-db/sqlite:3 )"

# vpopmail support removed upstream
REQUIRED_USE="( !vpopmail )
	sqlite? ( mysql )"

pkg_setup() {
	enewuser mail -1 -1 /var/spool/mail

	if ! has_version 'dev-tcltk/expect' ; then
		ewarn 'The dev-tcltk/expect package is not installed.'
		ewarn 'Without it, you will not be able to change system login passwords.'
		ewarn 'However non-system authentication modules (LDAP, MySQL, PostgreSQL,'
		ewarn 'and others) will work just fine.'
	fi
}

src_prepare() {
	epatch "${FILESDIR}"/${P}-sqlite.patch

	# move local macro to m4 and run eautoreconf
	mkdir "${S}/m4"
	sed -n -e '/# AC_PROG_SYSCONFTOOL/,+33 p' "${S}"/aclocal.m4 > \
		m4/sysconftool.m4 || die
	sed -i -e '/^SUBDIRS/i ACLOCAL_AMFLAGS = -I m4' "${S}"/Makefile.am || die
	eautoreconf
}

src_configure() {
	filter-flags -fomit-frame-pointer
	local myconf
	if use berkdb ; then
		if use gdbm ; then
			ewarn "Both gdbm and berkdb selected. Using gdbm."
		else
			myconf="--with-db=db"
		fi
	fi
	use gdbm && myconf="--with-db=gdbm"
	use debug && myconf+=" debug=true"
	use sqlite && myconf+=" --with-sqlite-libs"

	econf \
		--sysconfdir=/etc/courier \
		--datadir=/usr/share/courier \
		--libexecdir=/usr/$(get_libdir)/courier \
		--localstatedir=/var/lib/courier \
		--sharedstatedir=/var/lib/courier/com \
		--with-authdaemonvar=/var/lib/courier/authdaemon \
		--with-authshadow \
		--without-redhat \
		--with-mailuser=mail \
		--with-mailgroup=mail \
		--cache-file="${S}/configuring.cache" \
		$(use_with pam authpam) \
		$(use_with ldap authldap) \
		$(use_with mysql authmysql) \
		$(use_with postgres authpgsql) \
		$(use_with sqlite authsqlite) \
		${myconf}
}

orderfirst() {
	file="${D}/etc/courier/authlib/${1}" ; option="${2}" ; param="${3}"
	if [[ -e "${file}" ]] ; then
		orig="$(grep ^${option}= ${file} | cut -d\" -f 2)"
		new="${option}=\"${param} `echo ${orig} | sed -e\"s/${param}//g\" -e\"s/  / /g\"`\""
		sed -i -e "s/^${option}=.*$/${new}/" "${file}"
	fi
}

finduserdb() {
	for dir in \
		/etc/courier/authlib /etc/courier /etc/courier-imap \
		/usr/lib/courier/etc /usr/lib/courier-imap/etc \
		/usr/local/etc /usr/local/etc/courier /usr/local/courier/etc \
		/usr/local/lib/courier/etc /usr/local/lib/courier-imap/etc \
		/usr/local/share/sqwebmail /usr/local/etc/courier-imap ; do
		if [[ -e "${dir}/userdb" ]] ; then
			einfo "Found userdb at: ${dir}/userdb"
			cp -f "${dir}/userdb" "${D}/etc/courier/authlib/"
			chmod go-rwx "${D}/etc/courier/authlib/userdb"
			continue
		fi
	done
}

src_install() {
	diropts -o mail -g mail
	dodir /etc/courier
	keepdir /var/lib/courier/authdaemon
	keepdir /etc/courier/authlib
	emake DESTDIR="${D}" install
	[[ ! -e "${D}/etc/courier/authlib/userdb" ]] && finduserdb
	emake DESTDIR="${D}" install-configure
	rm -f "${D}"/etc/courier/authlib/*.bak
	chown mail:mail "${D}"/etc/courier/authlib/*
	for y in "${D}"/etc/courier/authlib/*.dist ; do
		[[ ! -e "${y%%.dist}" ]] && cp -f "${y}" "${y%%.dist}"
	done
	use pam && orderfirst authdaemonrc authmodulelist authpam
	use ldap && orderfirst authdaemonrc authmodulelist authldap
	use sqlite && orderfirst authdaemonrc authmodulelist authsqlite
	use postgres && orderfirst authdaemonrc authmodulelist authpgsql
	use mysql && orderfirst authdaemonrc authmodulelist authmysql
	dodoc AUTHORS ChangeLog* INSTALL NEWS README
	dohtml README.html README_authlib.html NEWS.html INSTALL.html README.authdebug.html
	if use mysql ; then
		dodoc README.authmysql.myownquery
		dohtml README.authmysql.html
	fi
	if use postgres ; then
		dohtml README.authpostgres.html README.authmysql.html
	fi
	if use ldap ; then
		dodoc README.ldap
		dodir /etc/openldap/schema
		cp -f authldap.schema "${D}/etc/openldap/schema/"
	fi
	if use sqlite ; then
		dohtml README.authsqlite.html README.authmysql.html
	fi
	newinitd "${FILESDIR}/${PN}-r1" "${PN}"

	use static-libs || find "${D}" -name "*.a" -delete
}

pkg_postinst() {
	if [[ -e /etc/courier/authlib/userdb ]] ; then
		einfo "Running makeuserdb ..."
		chmod go-rwx /etc/courier/authlib/userdb
		makeuserdb
	fi

	# Suggest cleaning out the following old files
	list="$(find /etc/courier -maxdepth 1 -type f | grep \"^/etc/courier/auth\")"
	if [[ ! -z "${list}" ]] ; then
		ewarn "Courier authentication files are now in /etc/courier/authlib/"
		elog "The following files are no longer needed and can likely be removed:"
		elog " rm $(echo \"${list}\")"
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-06 18:05 Markus Meier (maekke)
  0 siblings, 0 replies; 14+ messages in thread
From: Markus Meier (maekke) @ 2013-01-06 18:05 UTC (permalink / raw
  To: gentoo-commits

maekke      13/01/06 18:05:23

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  arm stable, bug #450190
  
  (Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.3                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.2&r2=1.3

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- courier-authlib-0.65.0-r2.ebuild	12 Nov 2012 13:36:43 -0000	1.2
+++ courier-authlib-0.65.0-r2.ebuild	6 Jan 2013 18:05:23 -0000	1.3
@@ -1,11 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.2 2012/11/12 13:36:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.3 2013/01/06 18:05:23 maekke Exp $
 
 EAPI=4
 inherit eutils flag-o-matic multilib user autotools user
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.132                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.131&r2=1.132

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog	4 Jan 2013 13:51:24 -0000	1.131
+++ ChangeLog	6 Jan 2013 18:05:23 -0000	1.132
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.131 2013/01/04 13:51:24 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.132 2013/01/06 18:05:23 maekke Exp $
+
+  06 Jan 2013; Markus Meier <maekke@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  arm stable, bug #450190
 
   04 Jan 2013; Eray Aslan <eras@gentoo.org> -courier-authlib-0.62.2.ebuild,
   -courier-authlib-0.62.4.ebuild, -courier-authlib-0.63.0.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-08 14:51 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-08 14:51 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/08 14:51:30

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #450190).
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.4                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.3&r2=1.4

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- courier-authlib-0.65.0-r2.ebuild	6 Jan 2013 18:05:23 -0000	1.3
+++ courier-authlib-0.65.0-r2.ebuild	8 Jan 2013 14:51:30 -0000	1.4
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.3 2013/01/06 18:05:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.4 2013/01/08 14:51:30 jer Exp $
 
 EAPI=4
 inherit eutils flag-o-matic multilib user autotools user
 
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.133                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.132&r2=1.133

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog	6 Jan 2013 18:05:23 -0000	1.132
+++ ChangeLog	8 Jan 2013 14:51:30 -0000	1.133
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.132 2013/01/06 18:05:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.133 2013/01/08 14:51:30 jer Exp $
+
+  08 Jan 2013; Jeroen Roovers <jer@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for HPPA (bug #450190).
 
   06 Jan 2013; Markus Meier <maekke@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-13 11:13 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-13 11:13 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/13 11:13:48

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.4&r2=1.5

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- courier-authlib-0.65.0-r2.ebuild	8 Jan 2013 14:51:30 -0000	1.4
+++ courier-authlib-0.65.0-r2.ebuild	13 Jan 2013 11:13:48 -0000	1.5
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.4 2013/01/08 14:51:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.5 2013/01/13 11:13:48 ago Exp $
 
 EAPI=4
 inherit eutils flag-o-matic multilib user autotools user
 
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.134                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.133&r2=1.134

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog	8 Jan 2013 14:51:30 -0000	1.133
+++ ChangeLog	13 Jan 2013 11:13:48 -0000	1.134
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.133 2013/01/08 14:51:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.134 2013/01/13 11:13:48 ago Exp $
+
+  13 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for amd64, wrt bug #450190
 
   08 Jan 2013; Jeroen Roovers <jer@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-13 11:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-13 11:34 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/13 11:34:01

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.5&r2=1.6

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- courier-authlib-0.65.0-r2.ebuild	13 Jan 2013 11:13:48 -0000	1.5
+++ courier-authlib-0.65.0-r2.ebuild	13 Jan 2013 11:34:01 -0000	1.6
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.5 2013/01/13 11:13:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.6 2013/01/13 11:34:01 ago Exp $
 
 EAPI=4
 inherit eutils flag-o-matic multilib user autotools user
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.135                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.134&r2=1.135

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog	13 Jan 2013 11:13:48 -0000	1.134
+++ ChangeLog	13 Jan 2013 11:34:01 -0000	1.135
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.134 2013/01/13 11:13:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.135 2013/01/13 11:34:01 ago Exp $
+
+  13 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for x86, wrt bug #450190
 
   13 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-15 14:17 Eray Aslan (eras)
  0 siblings, 0 replies; 14+ messages in thread
From: Eray Aslan (eras) @ 2013-01-15 14:17 UTC (permalink / raw
  To: gentoo-commits

eras        13/01/15 14:17:18

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Fix double user eclass inherit.  Add die to a few places.  Thanks to Chema Alonso.
  
  (Portage version: 2.2.0_alpha152/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)

Revision  Changes    Path
1.7                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.6&r2=1.7

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- courier-authlib-0.65.0-r2.ebuild	13 Jan 2013 11:34:01 -0000	1.6
+++ courier-authlib-0.65.0-r2.ebuild	15 Jan 2013 14:17:18 -0000	1.7
@@ -1,9 +1,9 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.6 2013/01/13 11:34:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.7 2013/01/15 14:17:18 eras Exp $
 
 EAPI=4
-inherit eutils flag-o-matic multilib user autotools user
+inherit autotools eutils flag-o-matic multilib user
 
 KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
@@ -47,7 +47,7 @@
 	epatch "${FILESDIR}"/${P}-sqlite.patch
 
 	# move local macro to m4 and run eautoreconf
-	mkdir "${S}/m4"
+	mkdir "${S}/m4" || die
 	sed -n -e '/# AC_PROG_SYSCONFTOOL/,+33 p' "${S}"/aclocal.m4 > \
 		m4/sysconftool.m4 || die
 	sed -i -e '/^SUBDIRS/i ACLOCAL_AMFLAGS = -I m4' "${S}"/Makefile.am || die
@@ -93,7 +93,7 @@
 	if [[ -e "${file}" ]] ; then
 		orig="$(grep ^${option}= ${file} | cut -d\" -f 2)"
 		new="${option}=\"${param} `echo ${orig} | sed -e\"s/${param}//g\" -e\"s/  / /g\"`\""
-		sed -i -e "s/^${option}=.*$/${new}/" "${file}"
+		sed -i -e "s/^${option}=.*$/${new}/" "${file}" || die
 	fi
 }
 
@@ -106,8 +106,8 @@
 		/usr/local/share/sqwebmail /usr/local/etc/courier-imap ; do
 		if [[ -e "${dir}/userdb" ]] ; then
 			einfo "Found userdb at: ${dir}/userdb"
-			cp -f "${dir}/userdb" "${D}/etc/courier/authlib/"
-			chmod go-rwx "${D}/etc/courier/authlib/userdb"
+			cp -f "${dir}/userdb" "${D}/etc/courier/authlib/" || die
+			chmod go-rwx "${D}/etc/courier/authlib/userdb" || die
 			continue
 		fi
 	done
@@ -122,7 +122,7 @@
 	[[ ! -e "${D}/etc/courier/authlib/userdb" ]] && finduserdb
 	emake DESTDIR="${D}" install-configure
 	rm -f "${D}"/etc/courier/authlib/*.bak
-	chown mail:mail "${D}"/etc/courier/authlib/*
+	chown mail:mail "${D}"/etc/courier/authlib/* || die
 	for y in "${D}"/etc/courier/authlib/*.dist ; do
 		[[ ! -e "${y%%.dist}" ]] && cp -f "${y}" "${y%%.dist}"
 	done
@@ -143,7 +143,7 @@
 	if use ldap ; then
 		dodoc README.ldap
 		dodir /etc/openldap/schema
-		cp -f authldap.schema "${D}/etc/openldap/schema/"
+		cp -f authldap.schema "${D}/etc/openldap/schema/" || die
 	fi
 	if use sqlite ; then
 		dohtml README.authsqlite.html README.authmysql.html
@@ -156,7 +156,7 @@
 pkg_postinst() {
 	if [[ -e /etc/courier/authlib/userdb ]] ; then
 		einfo "Running makeuserdb ..."
-		chmod go-rwx /etc/courier/authlib/userdb
+		chmod go-rwx /etc/courier/authlib/userdb || die
 		makeuserdb
 	fi
 



1.136                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.135&r2=1.136

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog	13 Jan 2013 11:34:01 -0000	1.135
+++ ChangeLog	15 Jan 2013 14:17:18 -0000	1.136
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.135 2013/01/13 11:34:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.136 2013/01/15 14:17:18 eras Exp $
+
+  15 Jan 2013; Eray Aslan <eras@gentoo.org> courier-authlib-0.65.0-r2.ebuild:
+  Fix double user eclass inherit.  Add die to a few places.  Thanks to Chema
+  Alonso.
 
   13 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-16 14:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-16 14:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/16 14:56:59

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.7&r2=1.8

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- courier-authlib-0.65.0-r2.ebuild	15 Jan 2013 14:17:18 -0000	1.7
+++ courier-authlib-0.65.0-r2.ebuild	16 Jan 2013 14:56:59 -0000	1.8
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.7 2013/01/15 14:17:18 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.8 2013/01/16 14:56:59 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.137                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.136&r2=1.137

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog	15 Jan 2013 14:17:18 -0000	1.136
+++ ChangeLog	16 Jan 2013 14:56:59 -0000	1.137
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.136 2013/01/15 14:17:18 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.137 2013/01/16 14:56:59 ago Exp $
+
+  16 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for ppc, wrt bug #450190
 
   15 Jan 2013; Eray Aslan <eras@gentoo.org> courier-authlib-0.65.0-r2.ebuild:
   Fix double user eclass inherit.  Add die to a few places.  Thanks to Chema





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-16 18:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-16 18:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/16 18:55:09

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.9                  net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.8&r2=1.9

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- courier-authlib-0.65.0-r2.ebuild	16 Jan 2013 14:56:59 -0000	1.8
+++ courier-authlib-0.65.0-r2.ebuild	16 Jan 2013 18:55:09 -0000	1.9
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.8 2013/01/16 14:56:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.9 2013/01/16 18:55:09 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.138                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.137&r2=1.138

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog	16 Jan 2013 14:56:59 -0000	1.137
+++ ChangeLog	16 Jan 2013 18:55:09 -0000	1.138
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.137 2013/01/16 14:56:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.138 2013/01/16 18:55:09 ago Exp $
+
+  16 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for ppc64, wrt bug #450190
 
   16 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-20 10:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-20 10:17 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/20 10:17:00

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.10                 net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.9&r2=1.10

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- courier-authlib-0.65.0-r2.ebuild	16 Jan 2013 18:55:09 -0000	1.9
+++ courier-authlib-0.65.0-r2.ebuild	20 Jan 2013 10:17:00 -0000	1.10
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.9 2013/01/16 18:55:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.10 2013/01/20 10:17:00 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.139                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.138&r2=1.139

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog	16 Jan 2013 18:55:09 -0000	1.138
+++ ChangeLog	20 Jan 2013 10:17:00 -0000	1.139
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.138 2013/01/16 18:55:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.139 2013/01/20 10:17:00 ago Exp $
+
+  20 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for alpha, wrt bug #450190
 
   16 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-21 14:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-21 14:44 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/21 14:44:24

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux ia64, unsigned Manifest commit)

Revision  Changes    Path
1.11                 net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.10&r2=1.11

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- courier-authlib-0.65.0-r2.ebuild	20 Jan 2013 10:17:00 -0000	1.10
+++ courier-authlib-0.65.0-r2.ebuild	21 Jan 2013 14:44:24 -0000	1.11
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.10 2013/01/20 10:17:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.11 2013/01/21 14:44:24 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.140                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.139&r2=1.140

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog	20 Jan 2013 10:17:00 -0000	1.139
+++ ChangeLog	21 Jan 2013 14:44:24 -0000	1.140
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.139 2013/01/20 10:17:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.140 2013/01/21 14:44:24 ago Exp $
+
+  21 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for ia64, wrt bug #450190
 
   20 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-01-21 16:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-21 16:08 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/21 16:08:48

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #450190
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.12                 net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.11&r2=1.12

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- courier-authlib-0.65.0-r2.ebuild	21 Jan 2013 14:44:24 -0000	1.11
+++ courier-authlib-0.65.0-r2.ebuild	21 Jan 2013 16:08:48 -0000	1.12
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.11 2013/01/21 14:44:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.12 2013/01/21 16:08:48 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.141                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.141&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.141&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.140&r2=1.141

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- ChangeLog	21 Jan 2013 14:44:24 -0000	1.140
+++ ChangeLog	21 Jan 2013 16:08:48 -0000	1.141
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.140 2013/01/21 14:44:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.141 2013/01/21 16:08:48 ago Exp $
+
+  21 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for sparc, wrt bug #450190
 
   21 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-02-20  9:37 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20  9:37 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 09:37:14

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #450190
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.12&r2=1.13

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- courier-authlib-0.65.0-r2.ebuild	21 Jan 2013 16:08:48 -0000	1.12
+++ courier-authlib-0.65.0-r2.ebuild	20 Feb 2013 09:37:14 -0000	1.13
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.12 2013/01/21 16:08:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.13 2013/02/20 09:37:14 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.142                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.141&r2=1.142

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog	21 Jan 2013 16:08:48 -0000	1.141
+++ ChangeLog	20 Feb 2013 09:37:14 -0000	1.142
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.141 2013/01/21 16:08:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.142 2013/02/20 09:37:14 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for s390, wrt bug #450190
 
   21 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-02-24 18:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-24 18:06 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/24 18:06:43

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #450190
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.13&r2=1.14

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- courier-authlib-0.65.0-r2.ebuild	20 Feb 2013 09:37:14 -0000	1.13
+++ courier-authlib-0.65.0-r2.ebuild	24 Feb 2013 18:06:43 -0000	1.14
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.13 2013/02/20 09:37:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.14 2013/02/24 18:06:43 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.143                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.142&r2=1.143

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	20 Feb 2013 09:37:14 -0000	1.142
+++ ChangeLog	24 Feb 2013 18:06:43 -0000	1.143
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.142 2013/02/20 09:37:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.143 2013/02/24 18:06:43 ago Exp $
+
+  24 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
+  courier-authlib-0.65.0-r2.ebuild:
+  Stable for sh, wrt bug #450190
 
   20 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog
@ 2013-02-25 10:53 Eray Aslan (eras)
  0 siblings, 0 replies; 14+ messages in thread
From: Eray Aslan (eras) @ 2013-02-25 10:53 UTC (permalink / raw
  To: gentoo-commits

eras        13/02/25 10:53:32

  Modified:             courier-authlib-0.65.0-r2.ebuild ChangeLog
  Log:
  Do not require mysql for sqlite
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)

Revision  Changes    Path
1.15                 net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild?r1=1.14&r2=1.15

Index: courier-authlib-0.65.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- courier-authlib-0.65.0-r2.ebuild	24 Feb 2013 18:06:43 -0000	1.14
+++ courier-authlib-0.65.0-r2.ebuild	25 Feb 2013 10:53:32 -0000	1.15
@@ -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/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.14 2013/02/24 18:06:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r2.ebuild,v 1.15 2013/02/25 10:53:32 eras Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic multilib user
@@ -29,8 +29,7 @@
 		sqlite? ( dev-db/sqlite:3 )"
 
 # vpopmail support removed upstream
-REQUIRED_USE="( !vpopmail )
-	sqlite? ( mysql )"
+REQUIRED_USE="( !vpopmail )"
 
 pkg_setup() {
 	enewuser mail -1 -1 /var/spool/mail
@@ -44,8 +43,6 @@
 }
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-sqlite.patch
-
 	# move local macro to m4 and run eautoreconf
 	mkdir "${S}/m4" || die
 	sed -n -e '/# AC_PROG_SYSCONFTOOL/,+33 p' "${S}"/aclocal.m4 > \



1.144                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.144&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.144&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.143&r2=1.144

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	24 Feb 2013 18:06:43 -0000	1.143
+++ ChangeLog	25 Feb 2013 10:53:32 -0000	1.144
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.143 2013/02/24 18:06:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.144 2013/02/25 10:53:32 eras Exp $
+
+  25 Feb 2013; Eray Aslan <eras@gentoo.org> courier-authlib-0.65.0-r2.ebuild:
+  Do not require mysql for sqlite
 
   24 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
   courier-authlib-0.65.0-r2.ebuild:





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

end of thread, other threads:[~2013-02-25 10:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-20 10:17 [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.65.0-r2.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-02-25 10:53 Eray Aslan (eras)
2013-02-24 18:06 Agostino Sarubbo (ago)
2013-02-20  9:37 Agostino Sarubbo (ago)
2013-01-21 16:08 Agostino Sarubbo (ago)
2013-01-21 14:44 Agostino Sarubbo (ago)
2013-01-16 18:55 Agostino Sarubbo (ago)
2013-01-16 14:56 Agostino Sarubbo (ago)
2013-01-15 14:17 Eray Aslan (eras)
2013-01-13 11:34 Agostino Sarubbo (ago)
2013-01-13 11:13 Agostino Sarubbo (ago)
2013-01-08 14:51 Jeroen Roovers (jer)
2013-01-06 18:05 Markus Meier (maekke)
2012-11-02 14:01 Eray Aslan (eras)

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