* [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild
@ 2010-02-20 10:57 Benedikt Boehm (hollow)
0 siblings, 0 replies; 6+ messages in thread
From: Benedikt Boehm (hollow) @ 2010-02-20 10:57 UTC (permalink / raw
To: gentoo-commits
hollow 10/02/20 10:57:30
Modified: ChangeLog
Added: vpopmail-5.4.30-r1.ebuild
Log:
fix vusagec failure wrt #301650
(Portage version: 2.2_rc61/cvs/Linux i686)
Revision Changes Path
1.92 net-mail/vpopmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 26 Jan 2010 17:34:34 -0000 1.91
+++ ChangeLog 20 Feb 2010 10:57:29 -0000 1.92
@@ -1,6 +1,12 @@
# ChangeLog for net-mail/vpopmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.91 2010/01/26 17:34:34 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.92 2010/02/20 10:57:29 hollow Exp $
+
+*vpopmail-5.4.30-r1 (20 Feb 2010)
+
+ 20 Feb 2010; Benedikt Böhm <hollow@gentoo.org>
+ +vpopmail-5.4.30-r1.ebuild, +files/vpopmail-double-free.patch:
+ fix vusagec failure wrt #301650
26 Jan 2010; Benedikt Böhm <hollow@gentoo.org> vpopmail-5.4.30.ebuild:
unstable wrt #301650
1.1 net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.1&content-type=text/plain
Index: vpopmail-5.4.30-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.1 2010/02/20 10:57:29 hollow Exp $
EAPI="2"
inherit autotools eutils fixheadtails qmail
HOMEPAGE="http://www.inter7.com/index.php?page=vpopmail"
DESCRIPTION="A collection of programs to manage virtual email domains and accounts on your Qmail mail servers."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sh ~sparc ~x86"
IUSE="clearpasswd ipalias maildrop mysql"
DEPEND="virtual/qmail
maildrop? ( mail-filter/maildrop )
mysql? ( virtual/mysql )"
RDEPEND="${DEPEND}"
# This makes sure the variable is set, and that it isn't null.
VPOP_DEFAULT_HOME="/var/vpopmail"
vpopmail_set_homedir() {
VPOP_HOME=$(getent passwd vpopmail | cut -d: -f6)
if [[ -z "${VPOP_HOME}" ]]; then
ebeep
eerror "vpopmail's home directory is null in passwd data!"
eerror "You probably want to check that out."
eerror "Continuing with default."
VPOP_HOME="${VPOP_DEFAULT_HOME}"
else
einfo "Setting VPOP_HOME to: $VPOP_HOME"
fi
}
pkg_setup() {
enewgroup vpopmail 89
enewuser vpopmail 89 -1 ${VPOP_DEFAULT_HOME} vpopmail
upgradewarning
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-5.4.9-access.violation.patch
epatch "${FILESDIR}"/${PN}-lazy.patch
epatch "${FILESDIR}"/${PN}-double-free.patch
# fix maildir paths
sed -i -e 's|Maildir|.maildir|g' \
vchkpw.c vconvert.c vdelivermail.c \
vpopbull.c vpopmail.c vqmaillocal.c \
vuserinfo.c maildirquota.c || die
# remove vpopmail advertisement
sed -i -e '/printf.*vpopmail/s:vpopmail (:(:' \
vdelivermail.c vpopbull.c vqmaillocal.c || die
eautoreconf
ht_fix_file cdb/Makefile
}
src_configure() {
vpopmail_set_homedir
if use mysql; then
authopts=" \
--enable-auth-module=mysql \
--enable-libdir=/usr/lib/mysql \
--enable-sql-logging \
--enable-valias \
--disable-mysql-replication \
--enable-mysql-limits"
else
authopts="--enable-auth-module=cdb"
fi
econf ${authopts} \
--sysconfdir=${VPOP_HOME}/etc \
--enable-non-root-build \
--enable-qmaildir=${QMAIL_HOME} \
--enable-qmail-newu=${QMAIL_HOME}/bin/qmail-newu \
--enable-qmail-inject=${QMAIL_HOME}/bin/qmail-inject \
--enable-qmail-newmrh=${QMAIL_HOME}/bin/qmail-newmrh \
--enable-vpopuser=vpopmail \
--enable-vpopgroup=vpopmail \
--enable-many-domains \
--enable-file-locking \
--enable-file-sync \
--enable-md5-passwords \
--enable-logging \
--enable-auth-logging \
--enable-log-name=vpopmail \
--enable-qmail-ext \
--disable-tcpserver-file \
--disable-roaming-users \
$(use_enable ipalias ip-alias-domains) \
$(use_enable clearpasswd clear-passwd) \
$(use_enable maildrop) \
$(use_enable maildrop maildrop-prog /usr/bin/maildrop)
}
src_compile() {
emake || die "make failed"
}
src_install() {
vpopmail_set_homedir
# bug #277764
emake -j1 DESTDIR="${D}" install || die "make install failed"
keepdir "${VPOP_HOME}"/domains
# install helper script for maildir conversion
into "${VPOP_HOME}"
dobin "${FILESDIR}"/vpopmail-Maildir-dotmaildir-fix.sh
into /usr
dodoc doc/AUTHORS ChangeLog doc/FAQ doc/INSTALL doc/README*
dohtml doc/doc_html/* doc/man_html/*
rm -rf "${D}/${VPOP_HOME}"/doc
dosym /usr/share/doc/${PF}/ "${VPOP_HOME}"/doc
# create /etc/vpopmail.conf
if use mysql; then
dodir /etc
mv "${D}${VPOP_HOME}"/etc/vpopmail.mysql "${D}"/etc/vpopmail.conf
dosym /etc/vpopmail.conf "${VPOP_HOME}"/etc/vpopmail.mysql
sed -e '12d' -i "${D}"/etc/vpopmail.conf
echo '# Read-only DB' >> "${D}"/etc/vpopmail.conf
echo 'localhost|0|vpopmail|secret|vpopmail' >> "${D}"/etc/vpopmail.conf
echo '# Write DB' >> "${D}"/etc/vpopmail.conf
echo 'localhost|0|vpopmail|secret|vpopmail' >> "${D}"/etc/vpopmail.conf
# lock down perms
fperms 640 /etc/vpopmail.conf
fowners root:vpopmail /etc/vpopmail.conf
fi
insinto "${VPOP_HOME}"/etc
doins vusagec.conf
dosym "${VPOP_HOME}"/etc/vusagec.conf /etc/vusagec.conf
sed -i 's/Disable = False;/Disable = True;/g' "${D}${VPOP_HOME}"/etc/vusagec.conf
einfo "Installing env.d entry"
dodir /etc/env.d
doenvd "${FILESDIR}"/99vpopmail
einfo "Locking down vpopmail permissions"
fowners root:0 -R "${VPOP_HOME}"/{bin,etc,include}
fowners root:vpopmail "${VPOP_HOME}"/bin/vchkpw
fperms 4711 "${VPOP_HOME}"/bin/vchkpw
}
pkg_postinst() {
if use mysql ; then
elog
elog "You have 'mysql' turned on in your USE"
elog "Vpopmail needs a VALID MySQL USER. Let's call it 'vpopmail'"
elog "You MUST add it and then specify its passwd in the /etc/vpopmail.conf file"
elog
elog "First log into mysql as your mysql root user and pass. Then:"
elog "> create database vpopmail;"
elog "> use mysql;"
elog "> grant select, insert, update, delete, create, drop on vpopmail.* to"
elog " vpopmail@localhost identified by 'your password';"
elog "> flush privileges;"
elog
elog "If you have problems with vpopmail not accepting mail properly,"
elog "please ensure that /etc/vpopmail.conf is chmod 640 and"
elog "owned by root:vpopmail"
elog
fi
# do this for good measure
if [[ -e /etc/vpopmail.conf ]]; then
chmod 640 /etc/vpopmail.conf
chown root:vpopmail /etc/vpopmail.conf
fi
upgradewarning
}
pkg_postrm() {
vpopmail_set_homedir
elog "The vpopmail DATA will NOT be removed automatically."
elog "You can delete them manually by removing the ${VPOP_HOME} directory."
}
upgradewarning() {
ewarn
ewarn "Massive important warning if you are upgrading to 5.2.1-r8 or older"
ewarn "The internal structure of the mail storage has changed for"
ewarn "consistancy with the rest of Gentoo! Please review and utilize the "
ewarn "script at ${VPOP_HOME}/bin/vpopmail-Maildir-dotmaildir-fix.sh"
ewarn "to upgrade your system! (It can do conversions both ways)."
ewarn "You should be able to run it right away without any changes."
ewarn
elog
elog "Use of vpopmail's tcp.smtp[.cdb] is also deprecated now, consider"
elog "using net-mail/relay-ctrl instead."
elog
if use mysql; then
elog
elog "If you are upgrading from 5.4.17 or older, you have to fix your"
elog "MySQL tables:"
elog
elog 'ALTER TABLE `dir_control` CHANGE `domain` `domain` CHAR(96) NOT NULL;'
elog 'ALTER TABLE `ip_alias_map` CHANGE domain domain CHAR(96) NOT NULL;'
elog 'ALTER TABLE `lastauth` CHANGE domain domain CHAR(96) NOT NULL;'
elog 'ALTER TABLE `valias` CHANGE domain domain CHAR(96) NOT NULL;'
elog 'ALTER TABLE `vlog` CHANGE domain domain CHAR(96) NOT NULL;'
elog 'ALTER TABLE `vpopmail` CHANGE domain domain CHAR(96) NOT NULL;'
elog 'ALTER TABLE `limits` CHANGE domain domain CHAR(96) NOT NULL,'
elog ' ADD `disable_spamassassin` TINYINT(1) DEFAULT '0' NOT NULL AFTER `disable_smtp`,'
elog ' ADD `delete_spam` TINYINT(1) DEFAULT '0' NOT NULL AFTER `disable_spamassassin`;'
elog
fi
ewarn
ewarn "Newer versions of vpopmail contain a quota daemon called vusaged."
ewarn "This ebuild DOES NOT INSTALL vusaged and has therefore disabled"
ewarn "its usage in ${VPOP_HOME}/etc/vusagec.conf. DO NOT ENABLE!"
ewarn "Otherwise mail delivery WILL BREAK"
ewarn
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild
@ 2010-02-21 22:27 Christian Faulhammer (fauli)
0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-02-21 22:27 UTC (permalink / raw
To: gentoo-commits
fauli 10/02/21 22:27:04
Modified: ChangeLog vpopmail-5.4.30-r1.ebuild
Log:
stable x86, bug 285213
(Portage version: 2.1.7.17/cvs/Linux i686)
Revision Changes Path
1.93 net-mail/vpopmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?r1=1.92&r2=1.93
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog 20 Feb 2010 10:57:29 -0000 1.92
+++ ChangeLog 21 Feb 2010 22:27:03 -0000 1.93
@@ -1,6 +1,10 @@
# ChangeLog for net-mail/vpopmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.92 2010/02/20 10:57:29 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.93 2010/02/21 22:27:03 fauli Exp $
+
+ 21 Feb 2010; Christian Faulhammer <fauli@gentoo.org>
+ vpopmail-5.4.30-r1.ebuild:
+ stable x86, bug 285213
*vpopmail-5.4.30-r1 (20 Feb 2010)
1.2 net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?r1=1.1&r2=1.2
Index: vpopmail-5.4.30-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vpopmail-5.4.30-r1.ebuild 20 Feb 2010 10:57:29 -0000 1.1
+++ vpopmail-5.4.30-r1.ebuild 21 Feb 2010 22:27:03 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.1 2010/02/20 10:57:29 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.2 2010/02/21 22:27:03 fauli Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sh ~sparc x86"
IUSE="clearpasswd ipalias maildrop mysql"
DEPEND="virtual/qmail
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild
@ 2010-04-05 17:40 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-04-05 17:40 UTC (permalink / raw
To: gentoo-commits
armin76 10/04/05 17:40:57
Modified: ChangeLog vpopmail-5.4.30-r1.ebuild
Log:
arm/s390/sh/sparc stable wrt #285213
(Portage version: 2.1.7.17/cvs/Linux ia64)
Revision Changes Path
1.94 net-mail/vpopmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 21 Feb 2010 22:27:03 -0000 1.93
+++ ChangeLog 5 Apr 2010 17:40:57 -0000 1.94
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/vpopmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.93 2010/02/21 22:27:03 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.94 2010/04/05 17:40:57 armin76 Exp $
+
+ 05 Apr 2010; Raúl Porcel <armin76@gentoo.org> vpopmail-5.4.30-r1.ebuild:
+ arm/s390/sh/sparc stable wrt #285213
21 Feb 2010; Christian Faulhammer <fauli@gentoo.org>
vpopmail-5.4.30-r1.ebuild:
1.3 net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?r1=1.2&r2=1.3
Index: vpopmail-5.4.30-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vpopmail-5.4.30-r1.ebuild 21 Feb 2010 22:27:03 -0000 1.2
+++ vpopmail-5.4.30-r1.ebuild 5 Apr 2010 17:40:57 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.2 2010/02/21 22:27:03 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.3 2010/04/05 17:40:57 armin76 Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sh ~sparc x86"
+KEYWORDS="~amd64 arm ~hppa ~ppc s390 sh sparc x86"
IUSE="clearpasswd ipalias maildrop mysql"
DEPEND="virtual/qmail
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild
@ 2010-06-01 14:21 Joseph Jezak (josejx)
0 siblings, 0 replies; 6+ messages in thread
From: Joseph Jezak (josejx) @ 2010-06-01 14:21 UTC (permalink / raw
To: gentoo-commits
josejx 10/06/01 14:21:18
Modified: ChangeLog vpopmail-5.4.30-r1.ebuild
Log:
Marked ppc stable for bug #285213.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.96 net-mail/vpopmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?r1=1.95&r2=1.96
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog 30 May 2010 06:49:46 -0000 1.95
+++ ChangeLog 1 Jun 2010 14:21:18 -0000 1.96
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/vpopmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.95 2010/05/30 06:49:46 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.96 2010/06/01 14:21:18 josejx Exp $
+
+ 01 Jun 2010; Joseph Jezak <josejx@gentoo.org> vpopmail-5.4.30-r1.ebuild:
+ Marked ppc stable for bug #285213.
*vpopmail-5.4.30-r2 (30 May 2010)
1.5 net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?r1=1.4&r2=1.5
Index: vpopmail-5.4.30-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vpopmail-5.4.30-r1.ebuild 30 May 2010 06:49:46 -0000 1.4
+++ vpopmail-5.4.30-r1.ebuild 1 Jun 2010 14:21:18 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.4 2010/05/30 06:49:46 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.5 2010/06/01 14:21:18 josejx Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~ppc s390 sh sparc x86"
+KEYWORDS="amd64 arm ~hppa ppc s390 sh sparc x86"
IUSE="clearpasswd ipalias maildrop mysql"
DEPEND="virtual/qmail
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild
@ 2010-08-23 1:02 Jeroen Roovers (jer)
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-23 1:02 UTC (permalink / raw
To: gentoo-commits
jer 10/08/23 01:02:10
Modified: ChangeLog vpopmail-5.4.30-r1.ebuild
Log:
Stable for HPPA (bug #285213).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.98 net-mail/vpopmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?r1=1.97&r2=1.98
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 22 Aug 2010 08:19:17 -0000 1.97
+++ ChangeLog 23 Aug 2010 01:02:10 -0000 1.98
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/vpopmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.97 2010/08/22 08:19:17 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.98 2010/08/23 01:02:10 jer Exp $
+
+ 23 Aug 2010; Jeroen Roovers <jer@gentoo.org> vpopmail-5.4.30-r1.ebuild:
+ Stable for HPPA (bug #285213).
22 Aug 2010; Benedikt Böhm <hollow@gentoo.org> metadata.xml:
remove myself from metadata.xml
1.6 net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?r1=1.5&r2=1.6
Index: vpopmail-5.4.30-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vpopmail-5.4.30-r1.ebuild 1 Jun 2010 14:21:18 -0000 1.5
+++ vpopmail-5.4.30-r1.ebuild 23 Aug 2010 01:02:10 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.5 2010/06/01 14:21:18 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.6 2010/08/23 01:02:10 jer Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 arm ~hppa ppc s390 sh sparc x86"
+KEYWORDS="amd64 arm hppa ppc s390 sh sparc x86"
IUSE="clearpasswd ipalias maildrop mysql"
DEPEND="virtual/qmail
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild
@ 2011-09-10 16:43 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2011-09-10 16:43 UTC (permalink / raw
To: gentoo-commits
armin76 11/09/10 16:43:33
Modified: ChangeLog vpopmail-5.4.30-r1.ebuild
Log:
ia64 stable wrt #378373
(Portage version: 2.1.10.11/cvs/Linux ia64)
Revision Changes Path
1.105 net-mail/vpopmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/ChangeLog?r1=1.104&r2=1.105
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog 20 Aug 2011 07:28:13 -0000 1.104
+++ ChangeLog 10 Sep 2011 16:43:33 -0000 1.105
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/vpopmail
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.104 2011/08/20 07:28:13 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/ChangeLog,v 1.105 2011/09/10 16:43:33 armin76 Exp $
+
+ 10 Sep 2011; Raúl Porcel <armin76@gentoo.org> vpopmail-5.4.30-r1.ebuild:
+ ia64 stable wrt #378373
20 Aug 2011; Eray Aslan <eras@gentoo.org> vpopmail-5.4.33.ebuild:
Add mysql incdir to configure script - bug #379813
1.8 net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild?r1=1.7&r2=1.8
Index: vpopmail-5.4.30-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vpopmail-5.4.30-r1.ebuild 3 Oct 2010 17:41:03 -0000 1.7
+++ vpopmail-5.4.30-r1.ebuild 10 Sep 2011 16:43:33 -0000 1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.7 2010/10/03 17:41:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.4.30-r1.ebuild,v 1.8 2011/09/10 16:43:33 armin76 Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 arm hppa ~ia64 ppc s390 sh sparc x86"
+KEYWORDS="amd64 arm hppa ia64 ppc s390 sh sparc x86"
IUSE="clearpasswd ipalias maildrop mysql"
DEPEND="virtual/qmail
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-09-10 16:43 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-05 17:40 [gentoo-commits] gentoo-x86 commit in net-mail/vpopmail: ChangeLog vpopmail-5.4.30-r1.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2011-09-10 16:43 Raul Porcel (armin76)
2010-08-23 1:02 Jeroen Roovers (jer)
2010-06-01 14:21 Joseph Jezak (josejx)
2010-02-21 22:27 Christian Faulhammer (fauli)
2010-02-20 10:57 Benedikt Boehm (hollow)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox