From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/ssmtp/
Date: Sat, 17 Apr 2021 19:20:28 +0000 (UTC) [thread overview]
Message-ID: <1618687165.0e9884d9b9a9e2c42d5056cb223f708bf94f221d.conikost@gentoo> (raw)
commit: 0e9884d9b9a9e2c42d5056cb223f708bf94f221d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 18:00:45 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9884d9
mail-mta/ssmtp: drop old version
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
mail-mta/ssmtp/ssmtp-2.64-r3.ebuild | 119 ------------------------------------
1 file changed, 119 deletions(-)
diff --git a/mail-mta/ssmtp/ssmtp-2.64-r3.ebuild b/mail-mta/ssmtp/ssmtp-2.64-r3.ebuild
deleted file mode 100644
index 6e619476862..00000000000
--- a/mail-mta/ssmtp/ssmtp-2.64-r3.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PATCHSET=4
-
-WANT_AUTOMAKE=none
-
-inherit eutils autotools user
-
-DESCRIPTION="Extremely simple MTA to get mail off the system to a Mailhub"
-HOMEPAGE="ftp://ftp.debian.org/debian/pool/main/s/ssmtp/"
-SRC_URI="mirror://debian/pool/main/s/ssmtp/${P/-/_}.orig.tar.bz2
- https://dev.gentoo.org/~pinkbyte/distfiles/patches/${P}-patches-${PATCHSET}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="ipv6 libressl +ssl gnutls +mta"
-
-DEPEND="ssl? (
- gnutls? ( net-libs/gnutls[openssl] )
- !gnutls? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-RDEPEND="${DEPEND}
- net-mail/mailbase
- mta? (
- !net-mail/mailwrapper
- !mail-mta/courier
- !mail-mta/esmtp
- !mail-mta/exim
- !mail-mta/mini-qmail
- !mail-mta/msmtp[mta]
- !mail-mta/nbsmtp
- !mail-mta/netqmail
- !mail-mta/nullmailer
- !mail-mta/postfix
- !mail-mta/qmail-ldap
- !mail-mta/sendmail
- !mail-mta/opensmtpd
- )"
-
-REQUIRED_USE="gnutls? ( ssl )"
-
-pkg_setup() {
- if ! use prefix; then
- enewgroup ssmtp
- fi
-}
-
-src_prepare() {
- EPATCH_SUFFIX="patch" EPATCH_SOURCE="${WORKDIR}/patches" \
- epatch
- epatch_user
-
- # let's start by not using configure.in anymore as future autoconf
- # versions will not support it.
- mv configure.in configure.ac || die
-
- eautoconf
-}
-
-src_configure() {
- econf \
- --sysconfdir="${EPREFIX}"/etc/ssmtp \
- $(use_enable ssl) $(use_with gnutls) \
- $(use_enable ipv6 inet6) \
- --enable-md5auth
-}
-
-src_compile() {
- emake etcdir="${EPREFIX}"/etc
-}
-
-src_install() {
- dosbin ssmtp
-
- doman ssmtp.8 ssmtp.conf.5
- dodoc ChangeLog CHANGELOG_OLD INSTALL README TLS
- newdoc ssmtp.lsm DESC
-
- insinto /etc/ssmtp
- doins ssmtp.conf revaliases
-
- local conffile="${ED}etc/ssmtp/ssmtp.conf"
-
- # Sorry about the weird indentation, I couldn't figure out a cleverer way
- # to do this without having horribly >80 char lines.
- sed -i -e "s:^hostname=:\n# Gentoo bug #47562\\
-# Commenting the following line will force ssmtp to figure\\
-# out the hostname itself.\n\\
-# hostname=:" \
- "${conffile}" || die "sed failed"
-
- # Comment rewriteDomain (bug #243364)
- sed -i -e "s:^rewriteDomain=:#rewriteDomain=:" "${conffile}"
-
- # Set restrictive perms on ssmtp.conf as per #187841, #239197
- # Protect the ssmtp configfile from being readable by regular users as it
- # may contain login/password data to auth against a the mailhub used.
- if ! use prefix; then
- fowners root:ssmtp /etc/ssmtp/ssmtp.conf
- fperms 640 /etc/ssmtp/ssmtp.conf
- fowners root:ssmtp /usr/sbin/ssmtp
- fperms 2711 /usr/sbin/ssmtp
- fi
-
- if use mta; then
- dosym ../sbin/ssmtp /usr/lib/sendmail
- dosym ../sbin/ssmtp /usr/bin/sendmail
- dosym ssmtp /usr/sbin/sendmail
- dosym ../sbin/ssmtp /usr/bin/mailq
- dosym ../sbin/ssmtp /usr/bin/newaliases
- fi
-}
next reply other threads:[~2021-04-17 19:20 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-17 19:20 Conrad Kostecki [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-07-13 9:13 [gentoo-commits] repo/gentoo:master commit in: mail-mta/ssmtp/ Sam James
2025-07-13 8:58 Sam James
2025-06-02 22:38 Sam James
2025-04-26 6:41 Arthur Zamarin
2025-04-26 1:54 Sam James
2025-04-26 1:17 Sam James
2025-04-26 0:53 Sam James
2025-04-26 0:40 Sam James
2025-04-26 0:39 Sam James
2024-12-30 16:17 Sam James
2024-09-11 19:54 Petr Vaněk
2023-01-13 18:20 Arthur Zamarin
2022-12-18 12:28 Sam James
2022-12-18 12:21 Sam James
2022-12-18 11:38 Sam James
2022-12-18 11:30 Sam James
2022-11-13 1:36 Mike Gilbert
2022-11-13 1:36 Mike Gilbert
2022-11-06 1:49 Sam James
2022-05-13 20:28 Jakov Smolić
2022-02-02 10:48 Sam James
2022-01-22 18:20 Andreas K. Hüttel
2021-05-02 8:54 Mikle Kolyada
2021-04-17 19:20 Conrad Kostecki
2021-01-06 13:51 Fabian Groffen
2020-02-24 17:18 Mikle Kolyada
2020-01-06 6:54 Mike Frysinger
2018-05-03 7:28 Mart Raudsepp
2018-03-18 11:10 Sergei Trofimovich
2018-03-15 13:53 Mikle Kolyada
2018-01-28 16:59 Tobias Klausmann
2017-12-16 13:07 Sergei Trofimovich
2017-12-15 22:53 Sergei Trofimovich
2017-12-14 20:19 Sergei Trofimovich
2017-12-08 20:39 Thomas Deutschmann
2016-04-02 19:29 Anthony G. Basile
2015-11-16 9:51 Sergey Popov
2015-11-16 9:51 Sergey Popov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1618687165.0e9884d9b9a9e2c42d5056cb223f708bf94f221d.conikost@gentoo \
--to=conikost@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox