* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-12 7:42 Eray Aslan (eras)
0 siblings, 0 replies; 10+ messages in thread
From: Eray Aslan (eras) @ 2013-08-12 7:42 UTC (permalink / raw
To: gentoo-commits
eras 13/08/12 07:42:23
Modified: ChangeLog
Added: dovecot-2.2.5.ebuild
Log:
Version bump
(Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Revision Changes Path
1.440 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.440&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.440&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.439&r2=1.440
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.439
retrieving revision 1.440
diff -u -r1.439 -r1.440
--- ChangeLog 4 Jul 2013 10:17:33 -0000 1.439
+++ ChangeLog 12 Aug 2013 07:42:23 -0000 1.440
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.439 2013/07/04 10:17:33 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.440 2013/08/12 07:42:23 eras Exp $
+
+*dovecot-2.2.5 (12 Aug 2013)
+
+ 12 Aug 2013; Eray Aslan <eras@gentoo.org> +dovecot-2.2.5.ebuild:
+ Version bump
*dovecot-2.2.4-r2 (04 Jul 2013)
1.1 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.1&content-type=text/plain
Index: dovecot-2.2.5.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.1 2013/08/12 07:42:23 eras Exp $
EAPI=5
inherit autotools eutils multilib ssl-cert systemd user versionator
MY_P="${P/_/.}"
major_minor="$(get_version_component_range 1-2)"
sieve_version="0.4.1"
SRC_URI="http://dovecot.org/releases/${major_minor}/${MY_P}.tar.gz
sieve? (
http://www.rename-it.nl/dovecot/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
)
managesieve? (
http://www.rename-it.nl/dovecot/${major_minor}/${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
) "
DESCRIPTION="An IMAP and POP3 server written with security primarily in mind"
HOMEPAGE="http://www.dovecot.org/"
SLOT="0"
LICENSE="LGPL-2.1 MIT"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
IUSE_DOVECOT_OTHER="bzip2 caps doc ipv6 lucene managesieve selinux sieve solr +ssl static-libs suid tcpd zlib"
IUSE="${IUSE_DOVECOT_AUTH} ${IUSE_DOVECOT_STORAGE} ${IUSE_DOVECOT_OTHER}"
DEPEND="caps? ( sys-libs/libcap )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )
lucene? ( >=dev-cpp/clucene-2.3 )
mysql? ( virtual/mysql )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql-base !dev-db/postgresql-base[ldap,threads] )
selinux? ( sec-policy/selinux-dovecot )
solr? ( net-misc/curl dev-libs/expat )
sqlite? ( dev-db/sqlite )
ssl? ( dev-libs/openssl )
tcpd? ( sys-apps/tcp-wrappers )
vpopmail? ( net-mail/vpopmail )
virtual/libiconv"
RDEPEND="${DEPEND}
net-mail/mailbase"
S=${WORKDIR}/${MY_P}
pkg_setup() {
if use managesieve && ! use sieve; then
ewarn "managesieve USE flag selected but sieve USE flag unselected"
ewarn "sieve USE flag will be turned on"
fi
# default internal user
enewgroup dovecot 97
enewuser dovecot 97 -1 /dev/null dovecot
# default login user
enewuser dovenull -1 -1 /dev/null
# add "mail" group for suid'ing. Better security isolation.
if use suid; then
enewgroup mail
fi
}
src_configure() {
local conf=""
if use postgres || use mysql || use sqlite; then
conf="${conf} --with-sql"
fi
local storages=""
for storage in ${IUSE_DOVECOT_STORAGE//+/}; do
use ${storage} && storages="${storage} ${storages}"
done
[ "${storages}" ] || storages="maildir"
# turn valgrind tests off. Bug #340791
VALGRIND=no econf \
--localstatedir="${EPREFIX}/var" \
--with-moduledir="${EPREFIX}/usr/$(get_libdir)/dovecot" \
--without-stemmer \
--with-storages="${storages}" \
--disable-rpath \
$( systemd_with_unitdir ) \
$( use_with bzip2 bzlib ) \
$( use_with caps libcap ) \
$( use_with kerberos gssapi ) \
$( use_with ldap ) \
$( use_with lucene ) \
$( use_with mysql ) \
$( use_with pam ) \
$( use_with postgres pgsql ) \
$( use_with sqlite ) \
$( use_with solr ) \
$( use_with ssl ) \
$( use_with tcpd libwrap ) \
$( use_with vpopmail ) \
$( use_with zlib ) \
$( use_enable static-libs static ) \
${conf}
if use sieve || use managesieve ; then
# The sieve plugin needs this file to be build to determine the plugin
# directory and the list of libraries to link to.
emake dovecot-config
cd "../dovecot-${major_minor}-pigeonhole-${sieve_version}" || die "cd failed"
econf \
$( use_enable static-libs static ) \
--localstatedir="${EPREFIX}/var" \
--enable-shared \
--with-dovecot="../${MY_P}" \
$( use_with managesieve )
fi
}
src_compile() {
default
if use sieve || use managesieve ; then
cd "../dovecot-${major_minor}-pigeonhole-${sieve_version}" || die "cd failed"
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
fi
}
src_test() {
default
if use sieve || use managesieve ; then
cd "../dovecot-${major_minor}-pigeonhole-${sieve_version}" || die "cd failed"
default
fi
}
src_install () {
default
# insecure:
# use suid && fperms u+s /usr/libexec/dovecot/deliver
# better:
if use suid;then
einfo "Changing perms to allow deliver to be suided"
fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
fi
newinitd "${FILESDIR}"/dovecot.init-r4 dovecot
rm -rf "${ED}"/usr/share/doc/dovecot
dodoc AUTHORS NEWS README TODO
dodoc doc/*.{txt,cnf,xml,sh}
docinto example-config
dodoc doc/example-config/*.{conf,ext}
docinto example-config/conf.d
dodoc doc/example-config/conf.d/*.{conf,ext}
docinto wiki
dodoc doc/wiki/*
doman doc/man/*.{1,7}
# Create the dovecot.conf file from the dovecot-example.conf file that
# the dovecot folks nicely left for us....
local conf="${ED}/etc/dovecot/dovecot.conf"
local confd="${ED}/etc/dovecot/conf.d"
insinto /etc/dovecot
doins doc/example-config/*.{conf,ext}
insinto /etc/dovecot/conf.d
doins doc/example-config/conf.d/*.{conf,ext}
fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext
rm -f "${confd}/../README"
# .maildir is the Gentoo default
local mail_location="maildir:~/.maildir"
if ! use maildir; then
if use mbox; then
mail_location="mbox:/var/spool/mail/%u:INDEX=/var/dovecot/%u"
keepdir /var/dovecot
sed -i -e 's|#mail_privileged_group =|mail_privileged_group = mail|' \
"${confd}/10-mail.conf" || die "sed failed"
elif use mdbox ; then
mail_location="mdbox:~/.mdbox"
elif use sdbox ; then
mail_location="sdbox:~/.sdbox"
fi
fi
sed -i -e \
"s|#mail_location =|mail_location = ${mail_location}|" \
"${confd}/10-mail.conf" \
|| die "failed to update mail location settings in 10-mail.conf"
# We're using pam files (imap and pop3) provided by mailbase
if use pam; then
sed -i -e '/driver = pam/,/^[ \t]*}/ s|#args = dovecot|args = "\*"|' \
"${confd}/auth-system.conf.ext" \
|| die "failed to update PAM settings in auth-system.conf.ext"
# mailbase does not provide a sieve pam file
use managesieve && dosym imap /etc/pam.d/sieve
sed -i -e \
's/#!include auth-system.conf.ext/!include auth-system.conf.ext/' \
"${confd}/10-auth.conf" \
|| die "failed to update PAM settings in 10-auth.conf"
fi
# Disable ipv6 if necessary
if ! use ipv6; then
sed -i -e 's/^#listen = \*, ::/listen = \*/g' "${conf}" \
|| die "failed to update listen settings in dovecot.conf"
fi
# Update ssl cert locations
if use ssl; then
sed -i -e 's:^#ssl = yes:ssl = yes:' "${confd}/10-ssl.conf" \
|| die "ssl conf failed"
sed -i -e 's:^ssl_cert =.*:ssl_cert = </etc/ssl/dovecot/server.pem:' \
-e 's:^ssl_key =.*:ssl_key = </etc/ssl/dovecot/server.key:' \
"${confd}/10-ssl.conf" || die "failed to update SSL settings in 10-ssl.conf"
fi
# Install SQL configuration
if use mysql || use postgres; then
sed -i -e \
's/#!include auth-sql.conf.ext/!include auth-sql.conf.ext/' \
"${confd}/10-auth.conf" || die "failed to update SQL settings in \
10-auth.conf"
fi
# Install LDAP configuration
if use ldap; then
sed -i -e \
's/#!include auth-ldap.conf.ext/!include auth-ldap.conf.ext/' \
"${confd}/10-auth.conf" \
|| die "failed to update ldap settings in 10-auth.conf"
fi
if use vpopmail; then
sed -i -e \
's/#!include auth-vpopmail.conf.ext/!include auth-vpopmail.conf.ext/' \
"${confd}/10-auth.conf" \
|| die "failed to update vpopmail settings in 10-auth.conf"
fi
if use sieve || use managesieve ; then
cd "../dovecot-${major_minor}-pigeonhole-${sieve_version}" || die "cd failed"
emake DESTDIR="${ED}" install
sed -i -e \
's/^[[:space:]]*#mail_plugins = $mail_plugins/mail_plugins = sieve/' "${confd}/15-lda.conf" \
|| die "failed to update sieve settings in 15-lda.conf"
rm -rf "${ED}"/usr/share/doc/dovecot
dodoc doc/*.txt
docinto example-config/conf.d
dodoc doc/example-config/conf.d/*.conf
insinto /etc/dovecot/conf.d
doins doc/example-config/conf.d/90-sieve{,-extprograms}.conf
use managesieve && doins doc/example-config/conf.d/20-managesieve.conf
docinto sieve/rfc
dodoc doc/rfc/*.txt
docinto sieve/devel
dodoc doc/devel/DESIGN
doman doc/man/*.{1,7}
fi
use static-libs || find "${ED}"/usr/lib* -name '*.la' -delete
}
pkg_postinst() {
if use ssl; then
# Let's not make a new certificate if we already have one
if ! [[ -e "${ROOT}"/etc/ssl/dovecot/server.pem && \
-e "${ROOT}"/etc/ssl/dovecot/server.key ]]; then
einfo "Creating SSL certificate"
SSL_ORGANIZATION="${SSL_ORGANIZATION:-Dovecot IMAP Server}"
install_cert /etc/ssl/dovecot/server
fi
fi
elog "Please read http://wiki2.dovecot.org/Upgrading/ for upgrade notes."
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-14 5:41 Eray Aslan (eras)
0 siblings, 0 replies; 10+ messages in thread
From: Eray Aslan (eras) @ 2013-08-14 5:41 UTC (permalink / raw
To: gentoo-commits
eras 13/08/14 05:41:45
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Do not inherit redundant eclass
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Revision Changes Path
1.2 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.1&r2=1.2
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dovecot-2.2.5.ebuild 12 Aug 2013 07:42:23 -0000 1.1
+++ dovecot-2.2.5.ebuild 14 Aug 2013 05:41:45 -0000 1.2
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.1 2013/08/12 07:42:23 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.2 2013/08/14 05:41:45 eras Exp $
EAPI=5
-inherit autotools eutils multilib ssl-cert systemd user versionator
+inherit eutils multilib ssl-cert systemd user versionator
MY_P="${P/_/.}"
major_minor="$(get_version_component_range 1-2)"
1.441 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.441&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.441&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.440&r2=1.441
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.440
retrieving revision 1.441
diff -u -r1.440 -r1.441
--- ChangeLog 12 Aug 2013 07:42:23 -0000 1.440
+++ ChangeLog 14 Aug 2013 05:41:45 -0000 1.441
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.440 2013/08/12 07:42:23 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.441 2013/08/14 05:41:45 eras Exp $
+
+ 14 Aug 2013; Eray Aslan <eras@gentoo.org> dovecot-2.2.5.ebuild:
+ Do not inherit redundant eclass
*dovecot-2.2.5 (12 Aug 2013)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-16 19:32 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-16 19:32 UTC (permalink / raw
To: gentoo-commits
ago 13/08/16 19:32:34
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #480880
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.3&r2=1.4
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dovecot-2.2.5.ebuild 16 Aug 2013 15:15:27 -0000 1.3
+++ dovecot-2.2.5.ebuild 16 Aug 2013 19:32:34 -0000 1.4
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.3 2013/08/16 15:15:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.4 2013/08/16 19:32:34 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.443 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.443&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.443&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.442&r2=1.443
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.442
retrieving revision 1.443
diff -u -r1.442 -r1.443
--- ChangeLog 16 Aug 2013 15:15:27 -0000 1.442
+++ ChangeLog 16 Aug 2013 19:32:34 -0000 1.443
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.442 2013/08/16 15:15:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.443 2013/08/16 19:32:34 ago Exp $
+
+ 16 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for amd64, wrt bug #480880
16 Aug 2013; Jeroen Roovers <jer@gentoo.org> dovecot-2.2.5.ebuild:
Stable for HPPA (bug #480880).
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-16 19:43 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-16 19:43 UTC (permalink / raw
To: gentoo-commits
ago 13/08/16 19:43:05
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for x86, wrt bug #480880
(Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.4&r2=1.5
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dovecot-2.2.5.ebuild 16 Aug 2013 19:32:34 -0000 1.4
+++ dovecot-2.2.5.ebuild 16 Aug 2013 19:43:05 -0000 1.5
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.4 2013/08/16 19:32:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.5 2013/08/16 19:43:05 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.444 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.444&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.444&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.443&r2=1.444
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.443
retrieving revision 1.444
diff -u -r1.443 -r1.444
--- ChangeLog 16 Aug 2013 19:32:34 -0000 1.443
+++ ChangeLog 16 Aug 2013 19:43:05 -0000 1.444
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.443 2013/08/16 19:32:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.444 2013/08/16 19:43:05 ago Exp $
+
+ 16 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for x86, wrt bug #480880
16 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for amd64, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-24 17:58 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-24 17:58 UTC (permalink / raw
To: gentoo-commits
ago 13/08/24 17:58:29
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for arm, wrt bug #480880
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.5&r2=1.6
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dovecot-2.2.5.ebuild 16 Aug 2013 19:43:05 -0000 1.5
+++ dovecot-2.2.5.ebuild 24 Aug 2013 17:58:29 -0000 1.6
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.5 2013/08/16 19:43:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.6 2013/08/24 17:58:29 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.445 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.445&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.445&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.444&r2=1.445
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.444
retrieving revision 1.445
diff -u -r1.444 -r1.445
--- ChangeLog 16 Aug 2013 19:43:05 -0000 1.444
+++ ChangeLog 24 Aug 2013 17:58:29 -0000 1.445
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.444 2013/08/16 19:43:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.445 2013/08/24 17:58:29 ago Exp $
+
+ 24 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for arm, wrt bug #480880
16 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for x86, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-26 17:00 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-26 17:00 UTC (permalink / raw
To: gentoo-commits
ago 13/08/26 17:00:53
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #480880
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.6&r2=1.7
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dovecot-2.2.5.ebuild 24 Aug 2013 17:58:29 -0000 1.6
+++ dovecot-2.2.5.ebuild 26 Aug 2013 17:00:52 -0000 1.7
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.6 2013/08/24 17:58:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.7 2013/08/26 17:00:52 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.446 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.446&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.446&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.445&r2=1.446
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.445
retrieving revision 1.446
diff -u -r1.445 -r1.446
--- ChangeLog 24 Aug 2013 17:58:29 -0000 1.445
+++ ChangeLog 26 Aug 2013 17:00:53 -0000 1.446
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.445 2013/08/24 17:58:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.446 2013/08/26 17:00:53 ago Exp $
+
+ 26 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for ppc, wrt bug #480880
24 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for arm, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-08-29 19:52 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-29 19:52 UTC (permalink / raw
To: gentoo-commits
ago 13/08/29 19:52:06
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #480880
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.7&r2=1.8
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dovecot-2.2.5.ebuild 26 Aug 2013 17:00:52 -0000 1.7
+++ dovecot-2.2.5.ebuild 29 Aug 2013 19:52:05 -0000 1.8
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.7 2013/08/26 17:00:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.8 2013/08/29 19:52:05 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.447 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.447&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.447&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.446&r2=1.447
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.446
retrieving revision 1.447
diff -u -r1.446 -r1.447
--- ChangeLog 26 Aug 2013 17:00:53 -0000 1.446
+++ ChangeLog 29 Aug 2013 19:52:06 -0000 1.447
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.446 2013/08/26 17:00:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.447 2013/08/29 19:52:06 ago Exp $
+
+ 29 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for ia64, wrt bug #480880
26 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for ppc, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-09-02 11:14 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 11:14 UTC (permalink / raw
To: gentoo-commits
ago 13/09/02 11:14:21
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #480880
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.8&r2=1.9
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dovecot-2.2.5.ebuild 29 Aug 2013 19:52:05 -0000 1.8
+++ dovecot-2.2.5.ebuild 2 Sep 2013 11:14:20 -0000 1.9
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.8 2013/08/29 19:52:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.9 2013/09/02 11:14:20 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.448 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.448&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.448&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.447&r2=1.448
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.447
retrieving revision 1.448
diff -u -r1.447 -r1.448
--- ChangeLog 29 Aug 2013 19:52:06 -0000 1.447
+++ ChangeLog 2 Sep 2013 11:14:20 -0000 1.448
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.447 2013/08/29 19:52:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.448 2013/09/02 11:14:20 ago Exp $
+
+ 02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for alpha, wrt bug #480880
29 Aug 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for ia64, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-09-05 12:19 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-05 12:19 UTC (permalink / raw
To: gentoo-commits
ago 13/09/05 12:19:52
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #480880
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.9&r2=1.10
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dovecot-2.2.5.ebuild 2 Sep 2013 11:14:20 -0000 1.9
+++ dovecot-2.2.5.ebuild 5 Sep 2013 12:19:52 -0000 1.10
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.9 2013/09/02 11:14:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.10 2013/09/05 12:19:52 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.449 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.449&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.449&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.448&r2=1.449
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.448
retrieving revision 1.449
diff -u -r1.448 -r1.449
--- ChangeLog 2 Sep 2013 11:14:20 -0000 1.448
+++ ChangeLog 5 Sep 2013 12:19:52 -0000 1.449
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.448 2013/09/02 11:14:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.449 2013/09/05 12:19:52 ago Exp $
+
+ 05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for ppc64, wrt bug #480880
02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for alpha, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog
@ 2013-09-07 20:16 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-07 20:16 UTC (permalink / raw
To: gentoo-commits
ago 13/09/07 20:16:06
Modified: dovecot-2.2.5.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #480880
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 net-mail/dovecot/dovecot-2.2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild?r1=1.10&r2=1.11
Index: dovecot-2.2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- dovecot-2.2.5.ebuild 5 Sep 2013 12:19:52 -0000 1.10
+++ dovecot-2.2.5.ebuild 7 Sep 2013 20:16:06 -0000 1.11
@@ -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-mail/dovecot/dovecot-2.2.5.ebuild,v 1.10 2013/09/05 12:19:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-2.2.5.ebuild,v 1.11 2013/09/07 20:16:06 ago Exp $
EAPI=5
inherit eutils multilib ssl-cert systemd user versionator
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="LGPL-2.1 MIT"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"
1.450 net-mail/dovecot/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.450&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?rev=1.450&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/dovecot/ChangeLog?r1=1.449&r2=1.450
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v
retrieving revision 1.449
retrieving revision 1.450
diff -u -r1.449 -r1.450
--- ChangeLog 5 Sep 2013 12:19:52 -0000 1.449
+++ ChangeLog 7 Sep 2013 20:16:06 -0000 1.450
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/dovecot
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.449 2013/09/05 12:19:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.450 2013/09/07 20:16:06 ago Exp $
+
+ 07 Sep 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
+ Stable for sparc, wrt bug #480880
05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> dovecot-2.2.5.ebuild:
Stable for ppc64, wrt bug #480880
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-09-07 20:16 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-26 17:00 [gentoo-commits] gentoo-x86 commit in net-mail/dovecot: dovecot-2.2.5.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-09-07 20:16 Agostino Sarubbo (ago)
2013-09-05 12:19 Agostino Sarubbo (ago)
2013-09-02 11:14 Agostino Sarubbo (ago)
2013-08-29 19:52 Agostino Sarubbo (ago)
2013-08-24 17:58 Agostino Sarubbo (ago)
2013-08-16 19:43 Agostino Sarubbo (ago)
2013-08-16 19:32 Agostino Sarubbo (ago)
2013-08-14 5:41 Eray Aslan (eras)
2013-08-12 7:42 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