diff options
author | Alex Legler <a3li@gentoo.org> | 2010-04-02 16:17:12 +0000 |
---|---|---|
committer | Alex Legler <a3li@gentoo.org> | 2010-04-02 16:17:12 +0000 |
commit | a2bb8fb2fabdbf7df98339eb720f5c04bbcb2240 (patch) | |
tree | 5558ea94e23979139cc010ea87114f2cc9133870 /mail-mta | |
parent | Stable for HPPA (bug #312455). (diff) | |
download | gentoo-2-a2bb8fb2fabdbf7df98339eb720f5c04bbcb2240.tar.gz gentoo-2-a2bb8fb2fabdbf7df98339eb720f5c04bbcb2240.tar.bz2 gentoo-2-a2bb8fb2fabdbf7df98339eb720f5c04bbcb2240.zip |
Non-maintainer commit: Version bump for security bug 293647. Removing unneeded vulnerable versions.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/msmtp/ChangeLog | 10 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.14.ebuild | 75 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.16.ebuild | 75 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.19.ebuild (renamed from mail-mta/msmtp/msmtp-1.4.17.ebuild) | 2 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.9.ebuild | 61 |
5 files changed, 10 insertions, 213 deletions
diff --git a/mail-mta/msmtp/ChangeLog b/mail-mta/msmtp/ChangeLog index ccb9240b7cbe..bf3be2647b9a 100644 --- a/mail-mta/msmtp/ChangeLog +++ b/mail-mta/msmtp/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for mail-mta/msmtp # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.74 2010/01/01 18:22:08 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.75 2010/04/02 16:17:12 a3li Exp $ + +*msmtp-1.4.19 (02 Apr 2010) + + 02 Apr 2010; Alex Legler <a3li@gentoo.org> -msmtp-1.4.9.ebuild, + -msmtp-1.4.14.ebuild, -msmtp-1.4.16.ebuild, -msmtp-1.4.17.ebuild, + +msmtp-1.4.19.ebuild: + Non-maintainer commit: Version bump for security bug 293647. Removing + unneeded vulnerable versions. 01 Jan 2010; Christian Faulhammer <fauli@gentoo.org> msmtp-1.4.17.ebuild: Transfer Prefix keywords diff --git a/mail-mta/msmtp/msmtp-1.4.14.ebuild b/mail-mta/msmtp/msmtp-1.4.14.ebuild deleted file mode 100644 index 1d7191a318e6..000000000000 --- a/mail-mta/msmtp/msmtp-1.4.14.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.14.ebuild,v 1.1 2008/03/22 14:51:06 tove Exp $ - -DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt" -HOMEPAGE="http://msmtp.sourceforge.net/" -SRC_URI="mirror://sourceforge/msmtp/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc gnutls idn mailwrapper nls sasl ssl" - -DEPEND="idn? ( net-dns/libidn ) - nls? ( virtual/libintl ) - gnutls? ( >=net-libs/gnutls-1.2.0 ) - !gnutls? ( ssl? ( >=dev-libs/openssl-0.9.6 ) ) - sasl? ( >=virtual/gsasl-0.2.4 )" - -RDEPEND="${DEPEND} - !mailwrapper? ( !virtual/mta ) - mailwrapper? ( >=net-mail/mailwrapper-0.2 )" - -DEPEND="${DEPEND} - nls? ( sys-devel/gettext ) - dev-util/pkgconfig" - -PROVIDE="virtual/mta" - -src_compile () { - local myconf - - if use gnutls ; then - myconf="--with-ssl=gnutls" - elif use ssl ; then - myconf="--with-ssl=openssl" - else - myconf="--with-ssl=no" - fi - - econf \ - $(use_with idn libidn) \ - $(use_with sasl libgsasl) \ - $(use_enable nls) \ - ${myconf} \ - || die "configure failed" - - emake || die "make failed" -} - -src_install () { - emake DESTDIR="${D}" install || die "install failed" - - if use mailwrapper ; then - insinto /etc/mail - doins "${FILESDIR}"/mailer.conf - else - dodir /usr/sbin - dosym /usr/bin/msmtp /usr/sbin/sendmail || die "dosym failed" - fi - - dodoc AUTHORS ChangeLog NEWS README THANKS \ - doc/{Mutt+msmtp.txt,msmtprc*} || die "dodoc failed" - - if use doc ; then - dohtml doc/msmtp.html || die "dohtml failed" - dodoc doc/msmtp.pdf - fi - - local msmtpqueuedir=/usr/share/${PN}/msmtpqueue - insinto ${msmtpqueuedir} - exeinto ${msmtpqueuedir} - doins scripts/msmtpqueue/{ChangeLog,README} || die "dodoc scripts/msmtpqueue failed" - doexe scripts/msmtpqueue/*.sh || die "doexe failed" -} diff --git a/mail-mta/msmtp/msmtp-1.4.16.ebuild b/mail-mta/msmtp/msmtp-1.4.16.ebuild deleted file mode 100644 index e211bb689d00..000000000000 --- a/mail-mta/msmtp/msmtp-1.4.16.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.16.ebuild,v 1.1 2008/09/14 17:34:29 dertobi123 Exp $ - -DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt" -HOMEPAGE="http://msmtp.sourceforge.net/" -SRC_URI="mirror://sourceforge/msmtp/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc gnutls idn mailwrapper nls sasl ssl" - -DEPEND="idn? ( net-dns/libidn ) - nls? ( virtual/libintl ) - gnutls? ( >=net-libs/gnutls-1.2.0 ) - !gnutls? ( ssl? ( >=dev-libs/openssl-0.9.6 ) ) - sasl? ( >=virtual/gsasl-0.2.4 )" - -RDEPEND="${DEPEND} - !mailwrapper? ( !virtual/mta ) - mailwrapper? ( >=net-mail/mailwrapper-0.2 )" - -DEPEND="${DEPEND} - nls? ( sys-devel/gettext ) - dev-util/pkgconfig" - -PROVIDE="virtual/mta" - -src_compile () { - local myconf - - if use gnutls ; then - myconf="--with-ssl=gnutls" - elif use ssl ; then - myconf="--with-ssl=openssl" - else - myconf="--with-ssl=no" - fi - - econf \ - $(use_with idn libidn) \ - $(use_with sasl libgsasl) \ - $(use_enable nls) \ - ${myconf} \ - || die "configure failed" - - emake || die "make failed" -} - -src_install () { - emake DESTDIR="${D}" install || die "install failed" - - if use mailwrapper ; then - insinto /etc/mail - doins "${FILESDIR}"/mailer.conf - else - dodir /usr/sbin - dosym /usr/bin/msmtp /usr/sbin/sendmail || die "dosym failed" - fi - - dodoc AUTHORS ChangeLog NEWS README THANKS \ - doc/{Mutt+msmtp.txt,msmtprc*} || die "dodoc failed" - - if use doc ; then - dohtml doc/msmtp.html || die "dohtml failed" - dodoc doc/msmtp.pdf - fi - - local msmtpqueuedir=/usr/share/${PN}/msmtpqueue - insinto ${msmtpqueuedir} - exeinto ${msmtpqueuedir} - doins scripts/msmtpqueue/{ChangeLog,README} || die "dodoc scripts/msmtpqueue failed" - doexe scripts/msmtpqueue/*.sh || die "doexe failed" -} diff --git a/mail-mta/msmtp/msmtp-1.4.17.ebuild b/mail-mta/msmtp/msmtp-1.4.19.ebuild index a1cd3a74ec4b..f4c433179d66 100644 --- a/mail-mta/msmtp/msmtp-1.4.17.ebuild +++ b/mail-mta/msmtp/msmtp-1.4.19.ebuild @@ -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/msmtp/msmtp-1.4.17.ebuild,v 1.2 2010/01/01 18:22:08 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.19.ebuild,v 1.1 2010/04/02 16:17:12 a3li Exp $ EAPI=2 diff --git a/mail-mta/msmtp/msmtp-1.4.9.ebuild b/mail-mta/msmtp/msmtp-1.4.9.ebuild deleted file mode 100644 index 491854433915..000000000000 --- a/mail-mta/msmtp/msmtp-1.4.9.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.9.ebuild,v 1.4 2009/09/23 18:06:04 patrick Exp $ - -DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt" -HOMEPAGE="http://msmtp.sourceforge.net/" -SRC_URI="mirror://sourceforge/msmtp/${P}.tar.bz2" -LICENSE="GPL-2" -IUSE="ssl gnutls sasl mailwrapper doc nls" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -DEPEND="dev-util/pkgconfig - ssl? ( - gnutls? ( >=net-libs/gnutls-1.2.0 ) - !gnutls? ( >=dev-libs/openssl-0.9.6 ) - ) - sasl? ( >=virtual/gsasl-0.2.4 ) - nls? ( sys-devel/gettext )" -RDEPEND="mailwrapper? ( >=net-mail/mailwrapper-0.2 ) - !mailwrapper? ( !virtual/mta )" -PROVIDE="virtual/mta" - -src_compile () { - local myconf - - if use ssl && use gnutls ; then - myconf="${myconf} --enable-ssl --with-ssl=gnutls" - elif use ssl && ! use gnutls ; then - myconf="${myconf} --enable-ssl --with-ssl=openssl" - else - myconf="${myconf} --disable-ssl" - fi - - econf \ - $(use_enable sasl gsasl) \ - $(use_enable nls) \ - ${myconf} \ - || die "configure failed" - - emake || die "make failed" -} - -src_install () { - make DESTDIR="${D}" install || die "install failed" - - if use mailwrapper; then - insinto /etc/mail - doins "${FILESDIR}"/mailer.conf - else - dodir /usr/sbin /usr/lib - dosym /usr/bin/msmtp /usr/sbin/sendmail || die "dosym failed" - fi - - dodoc AUTHORS ChangeLog NEWS README* THANKS \ - doc/{Mutt+msmtp.txt,msmtprc*} || die "dodoc failed" - - if use doc ; then - dohtml doc/msmtp.html || die "dohtml failed" - dodoc doc/msmtp.pdf - fi -} |