commit:     ec02fae120eba438feecc7f896a227da27e9e622
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  1 15:16:17 2022 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Jul  1 15:16:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec02fae1

mail-mta/msmtp: drop 1.8.16, 1.8.19

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 mail-mta/msmtp/Manifest            |   2 -
 mail-mta/msmtp/msmtp-1.8.16.ebuild | 145 -------------------------------------
 mail-mta/msmtp/msmtp-1.8.19.ebuild | 145 -------------------------------------
 3 files changed, 292 deletions(-)

diff --git a/mail-mta/msmtp/Manifest b/mail-mta/msmtp/Manifest
index 283b5cd5d7c4..a7e6adba1d18 100644
--- a/mail-mta/msmtp/Manifest
+++ b/mail-mta/msmtp/Manifest
@@ -1,3 +1 @@
-DIST msmtp-1.8.16.tar.xz 375372 BLAKE2B 
4567c323bf2f53fa878ed315dc4a2c524918de22305d2034be476373409bc61a9c841f0b9c6075e06e47eceb816ea24e9d6cb71c2bd94d9ba6738ae36ccb09b7
 SHA512 
5e7e39927007fe8e1763b13a83f44f6456e8e9efade8e1c3148f34d5c2b5aff51b1e4519337628776e6bce91066de9f145c7c2957927cadb0962a25452a47247
-DIST msmtp-1.8.19.tar.xz 383100 BLAKE2B 
4a24fc63f8d1057bceaede09050bd2fa81ae9cfe20f5663dd1766b261634af580a190fdbbff36a0373e804fe2d6b357268d349bf78a4c8c47ec87b63e03f7798
 SHA512 
0be193fc0a415824e311f88b57521898caaed49737370b6ae688c7f75e3ff5bc3dc9d87d9d08289b46a1b9650b2a48fb3cd40fb156f894b3fe805136d124f1bd
 DIST msmtp-1.8.20.tar.xz 385696 BLAKE2B 
cf75715538a65ac0f6fb3b8407e5b7cec865d552b6ecc5a450f5e35d4e42581cfb9f15bb7edc67dae1846018a834769d4e3be5da60ae0e52390cb61531a29a87
 SHA512 
cc5ad4ab21d05f24bac75ab25607d1ede50f5ac24ce40d72cf1b61f9cdfc48e9af477f9975d799a93f1990d0c2e24b651e5a3b3aa6b71279b37a4a43fce11f11

diff --git a/mail-mta/msmtp/msmtp-1.8.16.ebuild 
b/mail-mta/msmtp/msmtp-1.8.16.ebuild
deleted file mode 100644
index 10959a15403e..000000000000
--- a/mail-mta/msmtp/msmtp-1.8.16.ebuild
+++ /dev/null
@@ -1,145 +0,0 @@
-# Copyright 2004-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps
-
-DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
-HOMEPAGE="https://marlam.de/msmtp/";
-SRC_URI="https://marlam.de/msmtp/releases/${P}.tar.xz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="daemon doc gnome-keyring idn +mta nls sasl ssl vim-syntax"
-
-# fcaps.eclass unconditionally defines "filecaps" USE flag which we need for
-# USE="daemon" in order to set the caps we need.
-REQUIRED_USE="daemon? ( filecaps )"
-
-# Upstream discourages usage of openssl. See also
-# https://marlam.de/msmtp/news/openssl-discouraged/
-DEPEND="
-       gnome-keyring? ( app-crypt/libsecret )
-       idn? ( net-dns/libidn2:= )
-       nls? ( virtual/libintl )
-       sasl? ( virtual/gsasl )
-       ssl? ( net-libs/gnutls[idn?] )
-"
-
-RDEPEND="${DEPEND}
-       net-mail/mailbase
-       daemon? (
-               acct-group/msmtpd
-               acct-user/msmtpd
-       )
-       mta? (
-               !mail-mta/courier
-               !mail-mta/esmtp
-               !mail-mta/exim
-               !mail-mta/mini-qmail
-               !mail-mta/netqmail
-               !mail-mta/nullmailer
-               !mail-mta/postfix
-               !mail-mta/qmail-ldap
-               !mail-mta/sendmail
-               !mail-mta/opensmtpd
-               !<mail-mta/ssmtp-2.64-r2
-               !>=mail-mta/ssmtp-2.64-r2[mta]
-       )
-"
-
-BDEPEND="
-       doc? ( virtual/texi2dvi )
-       nls? ( sys-devel/gettext )
-       virtual/pkgconfig
-"
-
-DOCS="AUTHORS ChangeLog NEWS README THANKS doc/msmtprc*"
-
-src_prepare() {
-       # Use default Gentoo location for mail aliases
-       sed 's:/etc/aliases:/etc/mail/aliases:' \
-               -i scripts/find_alias/find_alias_for_msmtp.sh || die
-
-       default
-}
-
-src_configure() {
-       local myeconfargs=(
-               --disable-gai-idn
-               $(use_enable nls)
-               $(use_with daemon msmtpd)
-               $(use_with gnome-keyring libsecret)
-               $(use_with idn libidn)
-               $(use_with sasl libgsasl)
-               $(use_with ssl tls gnutls)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       default
-
-       if use doc ; then
-               cd doc || die
-               emake html pdf
-       fi
-}
-
-src_install() {
-       default
-
-       if use daemon ; then
-               fcaps CAP_NET_BIND_SERVICE usr/bin/msmtpd
-               newinitd "${FILESDIR}"/msmtpd.init msmtpd
-               newconfd "${FILESDIR}"/msmtpd.confd msmtpd
-       fi
-
-       if use doc ; then
-               dodoc doc/msmtp.{html,pdf}
-       fi
-
-       if use mta ; then
-               dosym ../bin/msmtp /usr/sbin/sendmail
-               dosym ../bin/msmtp /usr/$(get_libdir)/sendmail
-       fi
-
-       if use vim-syntax ; then
-               insinto /usr/share/vim/vimfiles/syntax
-               doins scripts/vim/msmtp.vim
-       fi
-
-       insinto /etc
-       newins doc/msmtprc-system.example msmtprc
-
-       src_install_contrib find_alias find_alias_for_msmtp.sh
-       src_install_contrib msmtpqueue "*.sh" "README ChangeLog"
-       src_install_contrib msmtpq "msmtpq msmtp-queue" README.msmtpq
-       src_install_contrib set_sendmail set_sendmail.sh set_sendmail.conf
-}
-
-pkg_postinst() {
-       if [[ -z ${REPLACING_VERSIONS} ]]; then
-               einfo "Please edit ${EROOT}/etc/msmtprc before first use."
-               einfo "In addition, per user configuration files can be placed"
-               einfo "as '~/.msmtprc'.  See the msmtprc-user.example file 
under"
-               einfo "/usr/share/doc/${PF}/ for an example."
-       fi
-}
-
-src_install_contrib() {
-       subdir="$1"
-       bins="$2"
-       docs="$3"
-       local dir=/usr/share/${PN}/${subdir}
-       insinto ${dir}
-       exeinto ${dir}
-       for i in ${bins} ; do
-               doexe scripts/${subdir}/${i}
-       done
-       for i in ${docs} ; do
-               newdoc scripts/${subdir}/${i} ${subdir}.${i}
-       done
-}

diff --git a/mail-mta/msmtp/msmtp-1.8.19.ebuild 
b/mail-mta/msmtp/msmtp-1.8.19.ebuild
deleted file mode 100644
index 8eb6da2b8159..000000000000
--- a/mail-mta/msmtp/msmtp-1.8.19.ebuild
+++ /dev/null
@@ -1,145 +0,0 @@
-# Copyright 2004-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps
-
-DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
-HOMEPAGE="https://marlam.de/msmtp/";
-SRC_URI="https://marlam.de/msmtp/releases/${P}.tar.xz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="daemon doc gnome-keyring idn +mta nls sasl ssl vim-syntax"
-
-# fcaps.eclass unconditionally defines "filecaps" USE flag which we need for
-# USE="daemon" in order to set the caps we need.
-REQUIRED_USE="daemon? ( filecaps )"
-
-# Upstream discourages usage of openssl. See also
-# https://marlam.de/msmtp/news/openssl-discouraged/
-DEPEND="
-       gnome-keyring? ( app-crypt/libsecret )
-       idn? ( net-dns/libidn2:= )
-       nls? ( virtual/libintl )
-       sasl? ( virtual/gsasl )
-       ssl? ( net-libs/gnutls[idn?] )
-"
-
-RDEPEND="${DEPEND}
-       net-mail/mailbase
-       daemon? (
-               acct-group/msmtpd
-               acct-user/msmtpd
-       )
-       mta? (
-               !mail-mta/courier
-               !mail-mta/esmtp
-               !mail-mta/exim
-               !mail-mta/mini-qmail
-               !mail-mta/netqmail
-               !mail-mta/nullmailer
-               !mail-mta/postfix
-               !mail-mta/qmail-ldap
-               !mail-mta/sendmail
-               !mail-mta/opensmtpd
-               !<mail-mta/ssmtp-2.64-r2
-               !>=mail-mta/ssmtp-2.64-r2[mta]
-       )
-"
-
-BDEPEND="
-       doc? ( virtual/texi2dvi )
-       nls? ( sys-devel/gettext )
-       virtual/pkgconfig
-"
-
-DOCS="AUTHORS ChangeLog NEWS README THANKS doc/msmtprc*"
-
-src_prepare() {
-       # Use default Gentoo location for mail aliases
-       sed 's:/etc/aliases:/etc/mail/aliases:' \
-               -i scripts/find_alias/find_alias_for_msmtp.sh || die
-
-       default
-}
-
-src_configure() {
-       local myeconfargs=(
-               --disable-gai-idn
-               $(use_enable nls)
-               $(use_with daemon msmtpd)
-               $(use_with gnome-keyring libsecret)
-               $(use_with idn libidn)
-               $(use_with sasl libgsasl)
-               $(use_with ssl tls gnutls)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       default
-
-       if use doc ; then
-               cd doc || die
-               emake html pdf
-       fi
-}
-
-src_install() {
-       default
-
-       if use daemon ; then
-               fcaps CAP_NET_BIND_SERVICE usr/bin/msmtpd
-               newinitd "${FILESDIR}"/msmtpd.init msmtpd
-               newconfd "${FILESDIR}"/msmtpd.confd msmtpd
-       fi
-
-       if use doc ; then
-               dodoc doc/msmtp.{html,pdf}
-       fi
-
-       if use mta ; then
-               dosym ../bin/msmtp /usr/sbin/sendmail
-               dosym ../bin/msmtp /usr/$(get_libdir)/sendmail
-       fi
-
-       if use vim-syntax ; then
-               insinto /usr/share/vim/vimfiles/syntax
-               doins scripts/vim/msmtp.vim
-       fi
-
-       insinto /etc
-       newins doc/msmtprc-system.example msmtprc
-
-       src_install_contrib find_alias find_alias_for_msmtp.sh
-       src_install_contrib msmtpqueue "*.sh" "README ChangeLog"
-       src_install_contrib msmtpq "msmtpq msmtp-queue" README.msmtpq
-       src_install_contrib set_sendmail set_sendmail.sh set_sendmail.conf
-}
-
-pkg_postinst() {
-       if [[ -z ${REPLACING_VERSIONS} ]]; then
-               einfo "Please edit ${EROOT}/etc/msmtprc before first use."
-               einfo "In addition, per user configuration files can be placed"
-               einfo "as '~/.msmtprc'.  See the msmtprc-user.example file 
under"
-               einfo "/usr/share/doc/${PF}/ for an example."
-       fi
-}
-
-src_install_contrib() {
-       subdir="$1"
-       bins="$2"
-       docs="$3"
-       local dir=/usr/share/${PN}/${subdir}
-       insinto ${dir}
-       exeinto ${dir}
-       for i in ${bins} ; do
-               doexe scripts/${subdir}/${i}
-       done
-       for i in ${docs} ; do
-               newdoc scripts/${subdir}/${i} ${subdir}.${i}
-       done
-}

Reply via email to