Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/ssmtp/
Date: Mon, 24 Feb 2020 17:18:50
Message-Id: 1582564723.676efc9aa36244ee36367283ab4daa472c211403.zlogene@gentoo
1 commit: 676efc9aa36244ee36367283ab4daa472c211403
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 24 17:18:11 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 24 17:18:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=676efc9a
7
8 mail-mta/ssmtp: Drop old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 mail-mta/ssmtp/Manifest | 1 -
14 mail-mta/ssmtp/ssmtp-2.64-r2.ebuild | 116 ------------------------------------
15 2 files changed, 117 deletions(-)
16
17 diff --git a/mail-mta/ssmtp/Manifest b/mail-mta/ssmtp/Manifest
18 index b3079ecbc20..7c13c2f362c 100644
19 --- a/mail-mta/ssmtp/Manifest
20 +++ b/mail-mta/ssmtp/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST ssmtp-2.64-patches-3.tar.bz2 5128 BLAKE2B c41c6366a0cfc59a2bbb935d9edd209b439ec4512bc43e0eeadad944af03dad5e25cf03270f352edf3fed45f1f8ca082ccde775970cae8e48655de01d3a758c8 SHA512 140ca571705ee45ca2d6718b456ab028e3aaeb910a64230d8143a29de837eb3be8f16641f21f56f2c5112867512fabdc952886701d596f0bb303fc1524a1ad46
23 DIST ssmtp-2.64-patches-4.tar.xz 6928 BLAKE2B 6f1d9a823273298abc58025c94cb288e1e296031580f63ed489a9d2559cd8846761e78c6fdfc1a385e645f990bc739ce3cf3ad0d1c1a3006dd3bd60e4a38c4f4 SHA512 6fa57c0bc5ad363e21bf69fb60f1cbb87ad1ead393a53ab5bd25b709303c321a29ed37ce7fe95b94dae748703bba3b0631fc2a95e40957c5241b5d9f42bc0c4a
24 DIST ssmtp_2.64.orig.tar.bz2 52501 BLAKE2B be158f8d969f98e1a7105bf4b741da960efa2a1c4a941426d6b6ec0677df13a2272fc71a93d2c44fe65c7d0a30e9acc4ec8259ed298b746c8d9ceefd64f95336 SHA512 911752e744420adf58552b9cf3a6e558d8b39103e5ad33a9ed4429b9a3a2091f7674aac11fe9bbd66747a61cdabe6bd638b80efcaadc86b057c12e2e235cca72
25
26 diff --git a/mail-mta/ssmtp/ssmtp-2.64-r2.ebuild b/mail-mta/ssmtp/ssmtp-2.64-r2.ebuild
27 deleted file mode 100644
28 index 4bfc4613b3c..00000000000
29 --- a/mail-mta/ssmtp/ssmtp-2.64-r2.ebuild
30 +++ /dev/null
31 @@ -1,116 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="4"
36 -
37 -PATCHSET=3
38 -
39 -WANT_AUTOMAKE=none
40 -
41 -inherit eutils autotools user
42 -
43 -DESCRIPTION="Extremely simple MTA to get mail off the system to a Mailhub"
44 -HOMEPAGE="ftp://ftp.debian.org/debian/pool/main/s/ssmtp/"
45 -SRC_URI="mirror://debian/pool/main/s/ssmtp/${P/-/_}.orig.tar.bz2
46 - https://dev.gentoo.org/~flameeyes/ssmtp/${P}-patches-${PATCHSET}.tar.bz2"
47 -
48 -LICENSE="GPL-2"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 -IUSE="ipv6 +ssl gnutls +mta"
52 -
53 -DEPEND="ssl? (
54 - !gnutls? ( dev-libs/openssl:0 )
55 - gnutls? ( net-libs/gnutls[openssl] )
56 - )"
57 -RDEPEND="${DEPEND}
58 - net-mail/mailbase
59 - mta? (
60 - !net-mail/mailwrapper
61 - !mail-mta/courier
62 - !mail-mta/esmtp
63 - !mail-mta/exim
64 - !mail-mta/mini-qmail
65 - !mail-mta/msmtp[mta]
66 - !mail-mta/nbsmtp
67 - !mail-mta/netqmail
68 - !mail-mta/nullmailer
69 - !mail-mta/postfix
70 - !mail-mta/qmail-ldap
71 - !mail-mta/sendmail
72 - !mail-mta/opensmtpd
73 - )"
74 -
75 -REQUIRED_USE="gnutls? ( ssl )"
76 -
77 -pkg_setup() {
78 - if ! use prefix; then
79 - enewgroup ssmtp
80 - fi
81 -}
82 -
83 -src_prepare() {
84 - EPATCH_SUFFIX="patch" EPATCH_SOURCE="${WORKDIR}/patches" \
85 - epatch
86 - epatch_user
87 -
88 - # let's start by not using configure.in anymore as future autoconf
89 - # versions will not support it.
90 - mv configure.in configure.ac || die
91 -
92 - eautoconf
93 -}
94 -
95 -src_configure() {
96 - econf \
97 - --sysconfdir="${EPREFIX}"/etc/ssmtp \
98 - $(use_enable ssl) $(use_with gnutls) \
99 - $(use_enable ipv6 inet6) \
100 - --enable-md5auth
101 -}
102 -
103 -src_compile() {
104 - emake etcdir="${EPREFIX}"/etc
105 -}
106 -
107 -src_install() {
108 - dosbin ssmtp
109 -
110 - doman ssmtp.8 ssmtp.conf.5
111 - dodoc ChangeLog CHANGELOG_OLD INSTALL README TLS
112 - newdoc ssmtp.lsm DESC
113 -
114 - insinto /etc/ssmtp
115 - doins ssmtp.conf revaliases
116 -
117 - local conffile="${ED}etc/ssmtp/ssmtp.conf"
118 -
119 - # Sorry about the weird indentation, I couldn't figure out a cleverer way
120 - # to do this without having horribly >80 char lines.
121 - sed -i -e "s:^hostname=:\n# Gentoo bug #47562\\
122 -# Commenting the following line will force ssmtp to figure\\
123 -# out the hostname itself.\n\\
124 -# hostname=:" \
125 - "${conffile}" || die "sed failed"
126 -
127 - # Comment rewriteDomain (bug #243364)
128 - sed -i -e "s:^rewriteDomain=:#rewriteDomain=:" "${conffile}"
129 -
130 - # Set restrictive perms on ssmtp.conf as per #187841, #239197
131 - # Protect the ssmtp configfile from being readable by regular users as it
132 - # may contain login/password data to auth against a the mailhub used.
133 - if ! use prefix; then
134 - fowners root:ssmtp /etc/ssmtp/ssmtp.conf
135 - fperms 640 /etc/ssmtp/ssmtp.conf
136 - fowners root:ssmtp /usr/sbin/ssmtp
137 - fperms 2711 /usr/sbin/ssmtp
138 - fi
139 -
140 - if use mta; then
141 - dosym ../sbin/ssmtp /usr/lib/sendmail
142 - dosym ../sbin/ssmtp /usr/bin/sendmail
143 - dosym ssmtp /usr/sbin/sendmail
144 - dosym ../sbin/ssmtp /usr/bin/mailq
145 - dosym ../sbin/ssmtp /usr/bin/newaliases
146 - fi
147 -}