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.62.2.ebuild ChangeLog
@ 2009-02-22 16:36 Hanno Boeck (hanno)
  0 siblings, 0 replies; 8+ messages in thread
From: Hanno Boeck (hanno) @ 2009-02-22 16:36 UTC (permalink / raw
  To: gentoo-commits

hanno       09/02/22 16:36:32

  Modified:             ChangeLog
  Added:                courier-authlib-0.62.2.ebuild
  Log:
  courier-authlib bump
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

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

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	16 Dec 2008 21:41:09 -0000	1.93
+++ ChangeLog	22 Feb 2009 16:36:32 -0000	1.94
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/courier-authlib
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.93 2008/12/16 21:41:09 hanno Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.94 2009/02/22 16:36:32 hanno Exp $
+
+*courier-authlib-0.62.2 (22 Feb 2009)
+
+  22 Feb 2009; Hanno Boeck <hanno@gentoo.org>
+  +courier-authlib-0.62.2.ebuild:
+  Version bump and removed obsolete sed line.
 
 *courier-authlib-0.61.1 (16 Dec 2008)
 



1.1                  net-libs/courier-authlib/courier-authlib-0.62.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild?rev=1.1&content-type=text/plain

Index: courier-authlib-0.62.2.ebuild
===================================================================
# Copyright 1999-2009 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.62.2.ebuild,v 1.1 2009/02/22 16:36:32 hanno Exp $

inherit eutils flag-o-matic autotools libtool

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~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 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? ( virtual/postgresql-base )"

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

	if use vpopmail ; then
		eerror
		eerror "vpopmail support has been removed, it's unmaintained upstream and will be"
		eerror "removed with the next release."
		eerror
		eerror "Please remove vpopmail USE-flag."
		die "vpopmail support removed"
	fi

}

src_unpack() {
	unpack ${A}
	cd "${S}"

	if ! use gdbm ; then
		epatch "${FILESDIR}/0.59.2-configure-db4.patch"
	else
		epatch "${FILESDIR}/0.59.2-remove-obsolete-macro.patch"
	fi

	sed -i -e'/for dir in/a\\t\t/etc/courier-imap \\' authmigrate.in || die "sed failed"
	sed -i -e'/for dir in/a\\t\t/etc/courier/authlib \\' authmigrate.in || die "sed failed"
	sed -i -e"s|\$sbindir/makeuserdb||g" authmigrate.in || die "sed failed"

	sed -i -e 's:AC_LIBLTDL_INSTALLABLE:AC_LIBLTDL_CONVENIENCE:' configure.in \
		|| die "fixing libltdl call failed"

	local d
	for d in $(find -name configure.in) ; do
		[[ ${d} == */libltdl/* ]] && continue
		cd "${S}"/${d%configure.in}
		AT_NO_RECURSIVE="yes" AT_NOELIBTOOLIZE="yes" eautoreconf
	done

	elibtoolize
}

src_compile() {
	filter-flags -fomit-frame-pointer

	local myconf=""

	myconf="${myconf} `use_with pam authpam`"
	myconf="${myconf} `use_with ldap authldap`"

	if use berkdb ; then
		if use gdbm ; then
			ewarn "Both gdbm and berkdb selected. Using gdbm."
		else
			myconf="${myconf} --with-db=db"
		fi
	fi
	use gdbm && myconf="${myconf} --with-db=gdbm"

	myconf="${myconf} --without-authvchkpw `use_with mysql authmysql` `use_with postgres authpgsql`"

	use debug && myconf="${myconf} debug=true"

	einfo "Configuring courier-authlib: ${myconf}"

	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" \
		${myconf} || die "econf failed"
	emake || die "emake failed"
}

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 || die "emake install failed"
	emake DESTDIR="${D}" install-migrate|| die "emake install-migrate failed"
	[[ ! -e "${D}/etc/courier/authlib/userdb" ]] && finduserdb
	emake DESTDIR="${D}" install-configure || die "emake install-configure failed"
	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 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
	doinitd "${FILESDIR}/${PN}" || die "doinitd failed"
}

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] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-23 12:11 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-02-23 12:11 UTC (permalink / raw
  To: gentoo-commits

klausman    09/02/23 12:11:22

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  Stable on alpha, bug #252576
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-libs/courier-authlib/courier-authlib-0.62.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild?r1=1.1&r2=1.2

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- courier-authlib-0.62.2.ebuild	22 Feb 2009 16:36:32 -0000	1.1
+++ courier-authlib-0.62.2.ebuild	23 Feb 2009 12:11:22 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.1 2009/02/22 16:36:32 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.2 2009/02/23 12:11:22 klausman Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.95                 net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.94&r2=1.95

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	22 Feb 2009 16:36:32 -0000	1.94
+++ ChangeLog	23 Feb 2009 12:11:22 -0000	1.95
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.94 2009/02/22 16:36:32 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.95 2009/02/23 12:11:22 klausman Exp $
+
+  23 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  Stable on alpha, bug #252576
 
 *courier-authlib-0.62.2 (22 Feb 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-23 14:03 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 8+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-02-23 14:03 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/02/23 14:03:58

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  Sparc stable, security Bug #252576.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

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

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

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- courier-authlib-0.62.2.ebuild	23 Feb 2009 12:11:22 -0000	1.2
+++ courier-authlib-0.62.2.ebuild	23 Feb 2009 14:03:58 -0000	1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.2 2009/02/23 12:11:22 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.3 2009/02/23 14:03:58 fmccor Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.96                 net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.95&r2=1.96

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	23 Feb 2009 12:11:22 -0000	1.95
+++ ChangeLog	23 Feb 2009 14:03:58 -0000	1.96
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.95 2009/02/23 12:11:22 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.96 2009/02/23 14:03:58 fmccor Exp $
+
+  23 Feb 2009; Ferris McCormick <fmccor@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  Sparc stable, security Bug #252576.
 
   23 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
   courier-authlib-0.62.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-23 16:53 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2009-02-23 16:53 UTC (permalink / raw
  To: gentoo-commits

ranger      09/02/23 16:53:58

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  Marking courier-authlib-0.62.2 ppc64 for bug 252576
  (Portage version: 2.1.6.6/cvs/Linux 2.6.24-gentoo-r3-g5-64 ppc64)

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

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

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- courier-authlib-0.62.2.ebuild	23 Feb 2009 14:03:58 -0000	1.3
+++ courier-authlib-0.62.2.ebuild	23 Feb 2009 16:53:58 -0000	1.4
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.3 2009/02/23 14:03:58 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.4 2009/02/23 16:53:58 ranger Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.97                 net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	23 Feb 2009 14:03:58 -0000	1.96
+++ ChangeLog	23 Feb 2009 16:53:58 -0000	1.97
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.96 2009/02/23 14:03:58 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.97 2009/02/23 16:53:58 ranger Exp $
+
+  23 Feb 2009; Brent Baude <ranger@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  Marking courier-authlib-0.62.2 ppc64 for bug 252576
 
   23 Feb 2009; Ferris McCormick <fmccor@gentoo.org>
   courier-authlib-0.62.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-23 16:56 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-23 16:56 UTC (permalink / raw
  To: gentoo-commits

jer         09/02/23 16:56:20

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #252576).
  (Portage version: 2.2_rc23/cvs/Linux i686)

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

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

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- courier-authlib-0.62.2.ebuild	23 Feb 2009 16:53:58 -0000	1.4
+++ courier-authlib-0.62.2.ebuild	23 Feb 2009 16:56:20 -0000	1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.4 2009/02/23 16:53:58 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.5 2009/02/23 16:56:20 jer Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.98                 net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	23 Feb 2009 16:53:58 -0000	1.97
+++ ChangeLog	23 Feb 2009 16:56:20 -0000	1.98
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.97 2009/02/23 16:53:58 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.98 2009/02/23 16:56:20 jer Exp $
+
+  23 Feb 2009; Jeroen Roovers <jer@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  Stable for HPPA (bug #252576).
 
   23 Feb 2009; Brent Baude <ranger@gentoo.org>
   courier-authlib-0.62.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-25 14:28 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2009-02-25 14:28 UTC (permalink / raw
  To: gentoo-commits

armin76     09/02/25 14:28:48

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  arm/ia64/s390/sh/x86 stable wrt #252576
  (Portage version: 2.1.6.7/cvs/Linux ia64)

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

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

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- courier-authlib-0.62.2.ebuild	23 Feb 2009 16:56:20 -0000	1.5
+++ courier-authlib-0.62.2.ebuild	25 Feb 2009 14:28:48 -0000	1.6
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.5 2009/02/23 16:56:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.6 2009/02/25 14:28:48 armin76 Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.99                 net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	23 Feb 2009 16:56:20 -0000	1.98
+++ ChangeLog	25 Feb 2009 14:28:48 -0000	1.99
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.98 2009/02/23 16:56:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.99 2009/02/25 14:28:48 armin76 Exp $
+
+  25 Feb 2009; Raúl Porcel <armin76@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  arm/ia64/s390/sh/x86 stable wrt #252576
 
   23 Feb 2009; Jeroen Roovers <jer@gentoo.org>
   courier-authlib-0.62.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-25 16:13 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2009-02-25 16:13 UTC (permalink / raw
  To: gentoo-commits

dertobi123    09/02/25 16:13:14

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  ppc stable, bug #252576
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

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

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

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- courier-authlib-0.62.2.ebuild	25 Feb 2009 14:28:48 -0000	1.6
+++ courier-authlib-0.62.2.ebuild	25 Feb 2009 16:13:14 -0000	1.7
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.6 2009/02/25 14:28:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.7 2009/02/25 16:13:14 dertobi123 Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.100                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	25 Feb 2009 14:28:48 -0000	1.99
+++ ChangeLog	25 Feb 2009 16:13:14 -0000	1.100
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.99 2009/02/25 14:28:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.100 2009/02/25 16:13:14 dertobi123 Exp $
+
+  25 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  ppc stable, bug #252576
 
   25 Feb 2009; Raúl Porcel <armin76@gentoo.org>
   courier-authlib-0.62.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog
@ 2009-02-25 20:33 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2009-02-25 20:33 UTC (permalink / raw
  To: gentoo-commits

maekke      09/02/25 20:33:03

  Modified:             courier-authlib-0.62.2.ebuild ChangeLog
  Log:
  amd64 stable, bug #252576
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

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

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

Index: courier-authlib-0.62.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- courier-authlib-0.62.2.ebuild	25 Feb 2009 16:13:14 -0000	1.7
+++ courier-authlib-0.62.2.ebuild	25 Feb 2009 20:33:03 -0000	1.8
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 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.62.2.ebuild,v 1.7 2009/02/25 16:13:14 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.62.2.ebuild,v 1.8 2009/02/25 20:33:03 maekke Exp $
 
 inherit eutils flag-o-matic autotools libtool
 
-KEYWORDS="alpha ~amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 
 DESCRIPTION="Courier authentication library."
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



1.101                net-libs/courier-authlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	25 Feb 2009 16:13:14 -0000	1.100
+++ ChangeLog	25 Feb 2009 20:33:03 -0000	1.101
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/courier-authlib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.100 2009/02/25 16:13:14 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.101 2009/02/25 20:33:03 maekke Exp $
+
+  25 Feb 2009; Markus Meier <maekke@gentoo.org>
+  courier-authlib-0.62.2.ebuild:
+  amd64 stable, bug #252576
 
   25 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
   courier-authlib-0.62.2.ebuild:






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

end of thread, other threads:[~2009-02-25 20:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-23 16:56 [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: courier-authlib-0.62.2.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2009-02-25 20:33 Markus Meier (maekke)
2009-02-25 16:13 Tobias Scherbaum (dertobi123)
2009-02-25 14:28 Raul Porcel (armin76)
2009-02-23 16:53 Brent Baude (ranger)
2009-02-23 14:03 Ferris McCormick (fmccor)
2009-02-23 12:11 Tobias Klausmann (klausman)
2009-02-22 16:36 Hanno Boeck (hanno)

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