Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 21 May 2022 17:00:17
Message-Id: 1653152401.3d6432a583b9a2c858cccb05b9caf58d93553ba3.ulm@gentoo
1 commit: 3d6432a583b9a2c858cccb05b9caf58d93553ba3
2 Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
3 AuthorDate: Mon May 16 14:43:56 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 21 17:00:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d6432a5
7
8 qmail.eclass: drop obsolete install hooks
9
10 The last user went away with mail-mta/qmail-ldap.
11
12 Closes: https://bugs.gentoo.org/843716
13 Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
14 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
15
16 eclass/qmail.eclass | 24 ------------------------
17 1 file changed, 24 deletions(-)
18
19 diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass
20 index 471f2fe7ce5e..9b2c5a8c7fbe 100644
21 --- a/eclass/qmail.eclass
22 +++ b/eclass/qmail.eclass
23 @@ -169,9 +169,6 @@ qmail_base_install() {
24 doexe qmail-queue
25
26 )
27 -
28 - declare -F qmail_base_install_hook >/dev/null && \
29 - qmail_base_install_hook
30 }
31
32 qmail_config_install() {
33 @@ -182,9 +179,6 @@ qmail_config_install() {
34 einfo "Installing configuration sanity checker and launcher"
35 insinto "${QMAIL_HOME}"/bin
36 doins "${GENQMAIL_S}"/control/qmail-config-system
37 -
38 - declare -F qmail_config_install_hook >/dev/null && \
39 - qmail_config_install_hook
40 }
41
42 qmail_man_install() {
43 @@ -200,9 +194,6 @@ qmail_man_install() {
44 else
45 dodoc CHANGES.md FAQ.md SECURITY.md THOUGHTS.md UPGRADE.md
46 fi
47 -
48 - declare -F qmail_man_install_hook >/dev/null && \
49 - qmail_man_install_hook
50 }
51
52 qmail_sendmail_install() {
53 @@ -211,9 +202,6 @@ qmail_sendmail_install() {
54
55 dosym "${QMAIL_HOME}"/bin/sendmail /usr/sbin/sendmail
56 dosym "${QMAIL_HOME}"/bin/sendmail /usr/lib/sendmail
57 -
58 - declare -F qmail_sendmail_install_hook >/dev/null && \
59 - qmail_sendmail_install_hook
60 }
61
62 qmail_maildir_install() {
63 @@ -245,9 +233,6 @@ qmail_maildir_install() {
64 done
65
66 )
67 -
68 - declare -F qmail_maildir_install_hook >/dev/null && \
69 - qmail_maildir_install_hook
70 }
71
72 qmail_tcprules_install() {
73 @@ -280,9 +265,6 @@ qmail_supervise_install() {
74 qmail_supervise_install_one qmail-pop3d
75 use ssl && qmail_supervise_install_one qmail-pop3sd
76 fi
77 -
78 - declare -F qmail_supervise_install_hook >/dev/null && \
79 - qmail_supervise_install_hook
80 }
81
82 qmail_spp_install() {
83 @@ -295,9 +277,6 @@ qmail_spp_install() {
84 for i in authlog mfdnscheck ifauthnext tarpit; do
85 dospp "${GENQMAIL_S}"/spp/${i}
86 done
87 -
88 - declare -F qmail_spp_install_hook >/dev/null && \
89 - qmail_spp_install_hook
90 }
91
92 qmail_ssl_install() {
93 @@ -317,9 +296,6 @@ qmail_ssl_install() {
94 doexe "${GENQMAIL_S}"/ssl/qmail-genrsacert.sh
95
96 keepdir "${QMAIL_HOME}"/control/tlshosts
97 -
98 - declare -F qmail_ssl_install_hook >/dev/null && \
99 - qmail_ssl_install_hook
100 }
101
102 qmail_src_install() {