* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2010-01-04 16:45 Patrick Lauer (patrick)
0 siblings, 0 replies; 9+ messages in thread
From: Patrick Lauer (patrick) @ 2010-01-04 16:45 UTC (permalink / raw
To: gentoo-commits
patrick 10/01/04 16:45:14
Modified: ChangeLog
Added: sendmail-8.14.4.ebuild
Log:
Bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Revision Changes Path
1.86 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 20 Sep 2009 09:26:19 -0000 1.85
+++ ChangeLog 4 Jan 2010 16:45:13 -0000 1.86
@@ -1,6 +1,11 @@
# ChangeLog for mail-mta/sendmail
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.85 2009/09/20 09:26:19 mrness Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.86 2010/01/04 16:45:13 patrick Exp $
+
+*sendmail-8.14.4 (04 Jan 2010)
+
+ 04 Jan 2010; Patrick Lauer <patrick@gentoo.org> +sendmail-8.14.4.ebuild:
+ Bump
*sendmail-8.14.3-r2 (20 Sep 2009)
1.1 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.1&content-type=text/plain
Index: sendmail-8.14.4.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.1 2010/01/04 16:45:13 patrick Exp $
EAPI="2"
inherit eutils toolchain-funcs
DESCRIPTION="Widely-used Mail Transport Agent (MTA)"
HOMEPAGE="http://www.sendmail.org/"
SRC_URI="ftp://ftp.sendmail.org/pub/${PN}/${PN}.${PV}.tar.gz"
LICENSE="Sendmail"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
DEPEND="net-mail/mailbase
sys-devel/m4
sasl? ( >=dev-libs/cyrus-sasl-2.1.10 )
tcpd? ( sys-apps/tcp-wrappers )
ssl? ( dev-libs/openssl )
ldap? ( net-nds/openldap )
>=sys-libs/db-3.2
!net-mail/vacation
"
RDEPEND="${DEPEND}
>=net-mail/mailbase-0.00
!mailwrapper? ( !virtual/mta !net-mail/mailwrapper )
mailwrapper? ( >=net-mail/mailwrapper-0.2 )"
PDEPEND="!mbox? ( mail-filter/procmail )"
PROVIDE="virtual/mta"
# libmilter library is part of sendmail, but it does not share the version number with it.
# In order to find the right libmilter version number, check SMFI_VERSION definition
# that can be found in ${S}/include/libmilter/mfapi.h (see also SM_LM_VRS_* defines).
# For example, version 1.0.1 has a SMFI_VERSION of 0x01000001.
LIBMILTER_VER=1.0.1
pkg_setup() {
einfo "checking for smmsp group... create if missing."
enewgroup smmsp 209 || die "problem adding group smmsp"
einfo "checking for smmsp user... create if missing."
enewuser smmsp 209 -1 /var/spool/mqueue smmsp \
|| die "problem adding user smmsp"
}
src_prepare() {
epatch "${FILESDIR}"/sendmail-build-system.patch
epatch "${FILESDIR}"/sendmail-delivered_hdr.patch
epatch "${FILESDIR}"/libmilter-sharedlib.patch
local confCC="$(tc-getCC)"
local confCCOPTS="${CFLAGS}"
local confLDOPTS="${LDFLAGS}"
local confMAPDEF="-DMAP_REGEX"
local conf_sendmail_LIBS=""
use sasl && confLIBS="${confLIBS} -lsasl2" \
&& confENVDEF="${confENVDEF} -DSASL=2" \
&& confCCOPTS="${confCCOPTS} -I/usr/include/sasl" \
&& conf_sendmail_LIBS="${conf_sendmail_LIBS} -lsasl2"
use tcpd && confENVDEF="${confENVDEF} -DTCPWRAPPERS" \
&& confLIBS="${confLIBS} -lwrap"
use ssl && confENVDEF="${confENVDEF} -DSTARTTLS -D_FFR_DEAL_WITH_ERROR_SSL" \
&& confLIBS="${confLIBS} -lssl -lcrypto" \
&& conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto"
use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \
&& confLIBS="${confLIBS} -lldap -llber"
use ipv6 && confENVDEF="${confENVDEF} -DNETINET6"
use nis && confENVDEF="${confENVDEF} -DNIS"
use sockets && confENVDEF="${confENVDEF} -DSOCKETMAP"
sed -e "s:@@confCCOPTS@@:${confCCOPTS}:" \
-e "s/@@confLDOPTS@@/${confLDOPTS}/" \
-e "s/@@confCC@@/${confCC}/" \
-e "s/@@confMAPDEF@@/${confMAPDEF}/" \
-e "s/@@confENVDEF@@/${confENVDEF}/" \
-e "s/@@confLIBS@@/${confLIBS}/" \
-e "s/@@conf_sendmail_LIBS@@/${conf_sendmail_LIBS}/" \
"${FILESDIR}"/site.config.m4 > devtools/Site/site.config.m4
}
src_compile() {
sh Build || die "compilation failed in main Build script"
pushd libmilter
sh Build MILTER_SOVER=${LIBMILTER_VER} || die "libmilter compilation failed"
popd
}
src_install () {
local MY_LIBDIR=/usr/$(get_libdir)
local MY_OBJDIR="obj.`uname -s`.`uname -r`.`uname -m`"
dodir /usr/bin ${MY_LIBDIR} /usr/include/libmilter
dodir /usr/share/man/man{1,5,8} /usr/sbin /var/log /usr/share/sendmail-cf
dodir /var/spool/{mqueue,clientmqueue} /etc/conf.d
keepdir /var/spool/{clientmqueue,mqueue}
for dir in libsmutil sendmail mailstats praliases smrsh makemap vacation editmap
do
make DESTDIR="${D}" LIBDIR="${MY_LIBDIR}" MANROOT=/usr/share/man/man \
SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
MSPQOWN=root CFOWN=root CFGRP=root \
install -C "${MY_OBJDIR}/${dir}" \
|| die "install failed"
done
for dir in rmail mail.local
do
make DESTDIR="${D}" LIBDIR="${MY_LIBDIR}" MANROOT=/usr/share/man/man \
SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
MSPQOWN=root CFOWN=root CFGRP=root \
force-install -C "${MY_OBJDIR}/${dir}" \
|| die "install failed"
done
make DESTDIR="${D}" LIBDIR="${MY_LIBDIR}" MANROOT=/usr/share/man/man \
SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
MSPQOWN=root CFOWN=root CFGRP=root \
MILTER_SOVER=${LIBMILTER_VER} \
install -C "${MY_OBJDIR}/libmilter" \
|| die "install failed"
fowners root:smmsp /usr/sbin/sendmail
fperms 2555 /usr/sbin/sendmail
fowners smmsp:smmsp /var/spool/clientmqueue
fperms 770 /var/spool/clientmqueue
fperms 700 /var/spool/mqueue
dosym /usr/sbin/makemap /usr/bin/makemap
dodoc FAQ KNOWNBUGS README RELEASE_NOTES doc/op/op.ps
newdoc sendmail/README README.sendmail
newdoc sendmail/SECURITY SECURITY
newdoc sendmail/TUNING TUNING
newdoc smrsh/README README.smrsh
newdoc libmilter/README README.libmilter
newdoc cf/README README.cf
newdoc cf/cf/README README.install-cf
cp -pPR cf/* "${D}"/usr/share/sendmail-cf
insinto /etc/mail
if use mbox
then
doins "${FILESDIR}"/sendmail.mc
else
newins "${FILESDIR}"/sendmail-procmail.mc sendmail.mc
fi
m4 "${D}"/usr/share/sendmail-cf/m4/cf.m4 "${D}"/etc/mail/sendmail.mc \
> "${D}"/etc/mail/sendmail.cf
echo "include(\`/usr/share/sendmail-cf/m4/cf.m4')dnl" \
> "${D}"/etc/mail/submit.mc
cat "${D}"/usr/share/sendmail-cf/cf/submit.mc >> "${D}"/etc/mail/submit.mc
echo "# local-host-names - include all aliases for your machine here" \
> "${D}"/etc/mail/local-host-names
cat <<- EOF > "${D}"/etc/mail/trusted-users
# trusted-users - users that can send mail as others without a warning
# apache, mailman, majordomo, uucp are good candidates
EOF
cat <<- EOF > "${D}"/etc/mail/access
# Check the /usr/share/doc/sendmail/README.cf file for a description
# of the format of this file. (search for access_db in that file)
# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
# package.
#
EOF
cat <<- EOF > "${D}"/etc/conf.d/sendmail
# Config file for /etc/init.d/sendmail
# add start-up options here
SENDMAIL_OPTS="-bd -q30m -L sm-mta" # default daemon mode
CLIENTMQUEUE_OPTS="-Ac -q30m -L sm-cm" # clientmqueue
KILL_OPTS="" # add -9/-15/your favorite evil SIG level here
EOF
doinitd "${FILESDIR}"/sendmail
keepdir /usr/adm/sm.bin
if use mailwrapper
then
mv "${D}"/usr/sbin/sendmail "${D}"/usr/sbin/sendmail.sendmail
insinto /etc/mail
doins "${FILESDIR}"/mailer.conf
rm "${D}"/usr/bin/mailq
rm "${D}"/usr/bin/newaliases
mv "${D}"/usr/share/man/man8/sendmail.8 \
"${D}"/usr/share/man/man8/sendmail-sendmail.8
mv "${D}"/usr/share/man/man1/mailq.1 \
"${D}"/usr/share/man/man1/mailq-sendmail.1
mv "${D}"/usr/share/man/man1/newaliases.1 \
"${D}"/usr/share/man/man1/newaliases-sendmail.1
mv "${D}"/usr/share/man/man5/aliases.5 \
"${D}"/usr/share/man/man5/aliases-sendmail.5
dosed 's/} sendmail/} sendmail.sendmail/' /etc/init.d/sendmail
dosed 's/sbin\/sendmail/sbin\/sendmail.sendmail/' /etc/init.d/sendmail
fi
}
pkg_postinst() {
if ! use mailwrapper && [[ -e /etc/mailer.conf ]]
then
elog
elog "Since you emerged sendmail without mailwrapper in USE,"
elog "you probably want to 'emerge -C mailwrapper' now."
elog
fi
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2010-01-10 12:04 Christian Faulhammer (fauli)
0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-10 12:04 UTC (permalink / raw
To: gentoo-commits
fauli 10/01/10 12:04:28
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
stable x86, security bug 299120
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.87 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 4 Jan 2010 16:45:13 -0000 1.86
+++ ChangeLog 10 Jan 2010 12:04:27 -0000 1.87
@@ -1,6 +1,10 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.86 2010/01/04 16:45:13 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.87 2010/01/10 12:04:27 fauli Exp $
+
+ 10 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
+ sendmail-8.14.4.ebuild:
+ stable x86, security bug 299120
*sendmail-8.14.4 (04 Jan 2010)
1.2 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.1&r2=1.2
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sendmail-8.14.4.ebuild 4 Jan 2010 16:45:13 -0000 1.1
+++ sendmail-8.14.4.ebuild 10 Jan 2010 12:04:27 -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/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.1 2010/01/04 16:45:13 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.2 2010/01/10 12:04:27 fauli Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="Sendmail"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
DEPEND="net-mail/mailbase
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2010-01-11 16:02 Brent Baude (ranger)
0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-01-11 16:02 UTC (permalink / raw
To: gentoo-commits
ranger 10/01/11 16:02:27
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
Marking sendmail-8.14.4 ppc64 and ppc for bug 299120
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.88 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 10 Jan 2010 12:04:27 -0000 1.87
+++ ChangeLog 11 Jan 2010 16:02:27 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.87 2010/01/10 12:04:27 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.88 2010/01/11 16:02:27 ranger Exp $
+
+ 11 Jan 2010; Brent Baude <ranger@gentoo.org> sendmail-8.14.4.ebuild:
+ Marking sendmail-8.14.4 ppc64 and ppc for bug 299120
10 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
sendmail-8.14.4.ebuild:
1.3 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.2&r2=1.3
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sendmail-8.14.4.ebuild 10 Jan 2010 12:04:27 -0000 1.2
+++ sendmail-8.14.4.ebuild 11 Jan 2010 16:02:27 -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/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.2 2010/01/10 12:04:27 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.3 2010/01/11 16:02:27 ranger Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="Sendmail"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86"
IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
DEPEND="net-mail/mailbase
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2010-01-12 18:26 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-01-12 18:26 UTC (permalink / raw
To: gentoo-commits
jer 10/01/12 18:26:26
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
Stable for HPPA (bug #299120).
(Portage version: 2.2_rc61/cvs/Linux i686)
Revision Changes Path
1.89 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 11 Jan 2010 16:02:27 -0000 1.88
+++ ChangeLog 12 Jan 2010 18:26:25 -0000 1.89
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.88 2010/01/11 16:02:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.89 2010/01/12 18:26:25 jer Exp $
+
+ 12 Jan 2010; Jeroen Roovers <jer@gentoo.org> sendmail-8.14.4.ebuild:
+ Stable for HPPA (bug #299120).
11 Jan 2010; Brent Baude <ranger@gentoo.org> sendmail-8.14.4.ebuild:
Marking sendmail-8.14.4 ppc64 and ppc for bug 299120
1.4 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.3&r2=1.4
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sendmail-8.14.4.ebuild 11 Jan 2010 16:02:27 -0000 1.3
+++ sendmail-8.14.4.ebuild 12 Jan 2010 18:26:25 -0000 1.4
@@ -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/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.3 2010/01/11 16:02:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.4 2010/01/12 18:26:25 jer Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="Sendmail"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86"
IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
DEPEND="net-mail/mailbase
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2010-01-13 19:22 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-01-13 19:22 UTC (permalink / raw
To: gentoo-commits
armin76 10/01/13 19:22:32
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
alpha/arm/ia64/s390/sh/sparc stable wrt #299120
(Portage version: 2.1.6.13/cvs/Linux ia64)
Revision Changes Path
1.90 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 12 Jan 2010 18:26:25 -0000 1.89
+++ ChangeLog 13 Jan 2010 19:22:31 -0000 1.90
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.89 2010/01/12 18:26:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.90 2010/01/13 19:22:31 armin76 Exp $
+
+ 13 Jan 2010; Raúl Porcel <armin76@gentoo.org> sendmail-8.14.4.ebuild:
+ alpha/arm/ia64/s390/sh/sparc stable wrt #299120
12 Jan 2010; Jeroen Roovers <jer@gentoo.org> sendmail-8.14.4.ebuild:
Stable for HPPA (bug #299120).
1.5 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.4&r2=1.5
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sendmail-8.14.4.ebuild 12 Jan 2010 18:26:25 -0000 1.4
+++ sendmail-8.14.4.ebuild 13 Jan 2010 19:22:31 -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/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.4 2010/01/12 18:26:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.5 2010/01/13 19:22:31 armin76 Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="Sendmail"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
DEPEND="net-mail/mailbase
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2010-02-01 19:54 Markus Meier (maekke)
0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2010-02-01 19:54 UTC (permalink / raw
To: gentoo-commits
maekke 10/02/01 19:54:56
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
amd64 stable, bug #299120
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Revision Changes Path
1.91 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 13 Jan 2010 19:22:31 -0000 1.90
+++ ChangeLog 1 Feb 2010 19:54:56 -0000 1.91
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.90 2010/01/13 19:22:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.91 2010/02/01 19:54:56 maekke Exp $
+
+ 01 Feb 2010; Markus Meier <maekke@gentoo.org> sendmail-8.14.4.ebuild:
+ amd64 stable, bug #299120
13 Jan 2010; Raúl Porcel <armin76@gentoo.org> sendmail-8.14.4.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #299120
1.6 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.5&r2=1.6
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sendmail-8.14.4.ebuild 13 Jan 2010 19:22:31 -0000 1.5
+++ sendmail-8.14.4.ebuild 1 Feb 2010 19:54:56 -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/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.5 2010/01/13 19:22:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.6 2010/02/01 19:54:56 maekke Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="Sendmail"
SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
DEPEND="net-mail/mailbase
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2011-01-10 13:47 Diego Petteno (flameeyes)
0 siblings, 0 replies; 9+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-01-10 13:47 UTC (permalink / raw
To: gentoo-commits
flameeyes 11/01/10 13:47:12
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
Add patch to build against berkdb 5 (bug #321299).
(Portage version: 2.2.0_alpha14/cvs/Linux x86_64)
Revision Changes Path
1.92 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 1 Feb 2010 19:54:56 -0000 1.91
+++ ChangeLog 10 Jan 2011 13:47:12 -0000 1.92
@@ -1,6 +1,10 @@
# ChangeLog for mail-mta/sendmail
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.91 2010/02/01 19:54:56 maekke Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.92 2011/01/10 13:47:12 flameeyes Exp $
+
+ 10 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org> sendmail-8.14.4.ebuild,
+ +files/sendmail-8.14.4+db-5.0.patch:
+ Add patch to build against berkdb 5 (bug #321299).
01 Feb 2010; Markus Meier <maekke@gentoo.org> sendmail-8.14.4.ebuild:
amd64 stable, bug #299120
1.7 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.6&r2=1.7
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sendmail-8.14.4.ebuild 1 Feb 2010 19:54:56 -0000 1.6
+++ sendmail-8.14.4.ebuild 10 Jan 2011 13:47:12 -0000 1.7
@@ -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/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.6 2010/02/01 19:54:56 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.7 2011/01/10 13:47:12 flameeyes Exp $
EAPI="2"
@@ -49,6 +49,7 @@
epatch "${FILESDIR}"/sendmail-build-system.patch
epatch "${FILESDIR}"/sendmail-delivered_hdr.patch
epatch "${FILESDIR}"/libmilter-sharedlib.patch
+ epatch "${FILESDIR}"/${P}+db-5.0.patch
local confCC="$(tc-getCC)"
local confCCOPTS="${CFLAGS}"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2011-03-28 9:53 Eray Aslan (eras)
0 siblings, 0 replies; 9+ messages in thread
From: Eray Aslan (eras) @ 2011-03-28 9:53 UTC (permalink / raw
To: gentoo-commits
eras 11/03/28 09:53:41
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
change to new style virtual/mta - bug 360305. remove mailwrapper support - bug 158003
(Portage version: 2.1.9.45/cvs/Linux x86_64)
Revision Changes Path
1.94 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 28 Mar 2011 09:47:24 -0000 1.93
+++ ChangeLog 28 Mar 2011 09:53:41 -0000 1.94
@@ -1,6 +1,10 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.93 2011/03/28 09:47:24 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.94 2011/03/28 09:53:41 eras Exp $
+
+ 28 Mar 2011; Eray Aslan <eras@gentoo.org> sendmail-8.14.4.ebuild:
+ change to new style virtual/mta - bug 360305. remove mailwrapper support -
+ bug 158003
28 Mar 2011; Eray Aslan <eras@gentoo.org> -sendmail-8.14.0.ebuild,
-sendmail-8.14.1.ebuild, -sendmail-8.14.2.ebuild,
1.8 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.7&r2=1.8
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sendmail-8.14.4.ebuild 10 Jan 2011 13:47:12 -0000 1.7
+++ sendmail-8.14.4.ebuild 28 Mar 2011 09:53:41 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.7 2011/01/10 13:47:12 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.8 2011/03/28 09:53:41 eras Exp $
EAPI="2"
@@ -13,7 +13,7 @@
LICENSE="Sendmail"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
-IUSE="ssl ldap sasl tcpd mbox mailwrapper ipv6 nis sockets"
+IUSE="ssl ldap sasl tcpd mbox ipv6 nis sockets"
DEPEND="net-mail/mailbase
sys-devel/m4
@@ -26,10 +26,19 @@
"
RDEPEND="${DEPEND}
>=net-mail/mailbase-0.00
- !mailwrapper? ( !virtual/mta !net-mail/mailwrapper )
- mailwrapper? ( >=net-mail/mailwrapper-0.2 )"
+ !mail-mta/courier
+ !mail-mta/esmtp
+ !mail-mta/exim
+ !mail-mta/mini-qmail
+ !mail-mta/msmtp
+ !mail-mta/nbsmtp
+ !mail-mta/netqmail
+ !mail-mta/nullmailer
+ !mail-mta/postfix
+ !mail-mta/qmail-ldap
+ !mail-mta/ssmtp"
+
PDEPEND="!mbox? ( mail-filter/procmail )"
-PROVIDE="virtual/mta"
# libmilter library is part of sendmail, but it does not share the version number with it.
# In order to find the right libmilter version number, check SMFI_VERSION definition
@@ -177,33 +186,4 @@
doinitd "${FILESDIR}"/sendmail
keepdir /usr/adm/sm.bin
- if use mailwrapper
- then
- mv "${D}"/usr/sbin/sendmail "${D}"/usr/sbin/sendmail.sendmail
- insinto /etc/mail
- doins "${FILESDIR}"/mailer.conf
- rm "${D}"/usr/bin/mailq
- rm "${D}"/usr/bin/newaliases
- mv "${D}"/usr/share/man/man8/sendmail.8 \
- "${D}"/usr/share/man/man8/sendmail-sendmail.8
- mv "${D}"/usr/share/man/man1/mailq.1 \
- "${D}"/usr/share/man/man1/mailq-sendmail.1
- mv "${D}"/usr/share/man/man1/newaliases.1 \
- "${D}"/usr/share/man/man1/newaliases-sendmail.1
- mv "${D}"/usr/share/man/man5/aliases.5 \
- "${D}"/usr/share/man/man5/aliases-sendmail.5
- dosed 's/} sendmail/} sendmail.sendmail/' /etc/init.d/sendmail
- dosed 's/sbin\/sendmail/sbin\/sendmail.sendmail/' /etc/init.d/sendmail
- fi
-
-}
-
-pkg_postinst() {
- if ! use mailwrapper && [[ -e /etc/mailer.conf ]]
- then
- elog
- elog "Since you emerged sendmail without mailwrapper in USE,"
- elog "you probably want to 'emerge -C mailwrapper' now."
- elog
- fi
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild
@ 2011-04-22 16:12 Diego Petteno (flameeyes)
0 siblings, 0 replies; 9+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-04-22 16:12 UTC (permalink / raw
To: gentoo-commits
flameeyes 11/04/22 16:12:51
Modified: ChangeLog sendmail-8.14.4.ebuild
Log:
Prepare for new ssmtp with optional mta support (bug #289973).
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Revision Changes Path
1.95 mail-mta/sendmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.94&r2=1.95
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog 28 Mar 2011 09:53:41 -0000 1.94
+++ ChangeLog 22 Apr 2011 16:12:51 -0000 1.95
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/sendmail
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.94 2011/03/28 09:53:41 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.95 2011/04/22 16:12:51 flameeyes Exp $
+
+ 22 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> sendmail-8.14.4.ebuild:
+ Prepare for new ssmtp with optional mta support (bug #289973).
28 Mar 2011; Eray Aslan <eras@gentoo.org> sendmail-8.14.4.ebuild:
change to new style virtual/mta - bug 360305. remove mailwrapper support -
1.9 mail-mta/sendmail/sendmail-8.14.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild?r1=1.8&r2=1.9
Index: sendmail-8.14.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sendmail-8.14.4.ebuild 28 Mar 2011 09:53:41 -0000 1.8
+++ sendmail-8.14.4.ebuild 22 Apr 2011 16:12:51 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.8 2011/03/28 09:53:41 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.9 2011/04/22 16:12:51 flameeyes Exp $
EAPI="2"
@@ -36,7 +36,8 @@
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap
- !mail-mta/ssmtp"
+ !<mail-mta/ssmtp-2.64-r2
+ !>=mail-mta/ssmtp-2.64-r2[mta]"
PDEPEND="!mbox? ( mail-filter/procmail )"
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-04-22 16:13 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-10 12:04 [gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.4.ebuild Christian Faulhammer (fauli)
-- strict thread matches above, loose matches on Subject: below --
2011-04-22 16:12 Diego Petteno (flameeyes)
2011-03-28 9:53 Eray Aslan (eras)
2011-01-10 13:47 Diego Petteno (flameeyes)
2010-02-01 19:54 Markus Meier (maekke)
2010-01-13 19:22 Raul Porcel (armin76)
2010-01-12 18:26 Jeroen Roovers (jer)
2010-01-11 16:02 Brent Baude (ranger)
2010-01-04 16:45 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox