Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/
Date: Thu, 29 Aug 2019 10:06:02
Message-Id: 1567073139.25c8c27813158136deb89d7e291b20d86a6f86bc.mgorny@gentoo
1 commit: 25c8c27813158136deb89d7e291b20d86a6f86bc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 29 05:25:14 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 29 10:05:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c8c278
7
8 net-mail/dovecot: Fix DoublePrefixInPath
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-mail/dovecot/dovecot-2.2.36.4.ebuild | 6 +++---
13 net-mail/dovecot/dovecot-2.3.6.ebuild | 6 +++---
14 net-mail/dovecot/dovecot-2.3.7.1.ebuild | 6 +++---
15 net-mail/dovecot/dovecot-2.3.7.2.ebuild | 6 +++---
16 4 files changed, 12 insertions(+), 12 deletions(-)
17
18 diff --git a/net-mail/dovecot/dovecot-2.2.36.4.ebuild b/net-mail/dovecot/dovecot-2.2.36.4.ebuild
19 index b55489b6a01..ddcf00b21ae 100644
20 --- a/net-mail/dovecot/dovecot-2.2.36.4.ebuild
21 +++ b/net-mail/dovecot/dovecot-2.2.36.4.ebuild
22 @@ -160,8 +160,8 @@ src_install () {
23 # better:
24 if use suid;then
25 einfo "Changing perms to allow deliver to be suided"
26 - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
27 - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
28 + fowners root:mail "/usr/libexec/dovecot/dovecot-lda"
29 + fperms 4750 "/usr/libexec/dovecot/dovecot-lda"
30 fi
31
32 newinitd "${FILESDIR}"/dovecot.init-r6 dovecot
33 @@ -187,7 +187,7 @@ src_install () {
34 doins doc/example-config/*.{conf,ext}
35 insinto /etc/dovecot/conf.d
36 doins doc/example-config/conf.d/*.{conf,ext}
37 - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext
38 + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext
39 rm -f "${confd}/../README"
40
41 # .maildir is the Gentoo default
42
43 diff --git a/net-mail/dovecot/dovecot-2.3.6.ebuild b/net-mail/dovecot/dovecot-2.3.6.ebuild
44 index a37dbd5f911..7abeccbbadd 100644
45 --- a/net-mail/dovecot/dovecot-2.3.6.ebuild
46 +++ b/net-mail/dovecot/dovecot-2.3.6.ebuild
47 @@ -167,8 +167,8 @@ src_install () {
48 # better:
49 if use suid;then
50 einfo "Changing perms to allow deliver to be suided"
51 - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
52 - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
53 + fowners root:mail "/usr/libexec/dovecot/dovecot-lda"
54 + fperms 4750 "/usr/libexec/dovecot/dovecot-lda"
55 fi
56
57 newinitd "${FILESDIR}"/dovecot.init-r6 dovecot
58 @@ -194,7 +194,7 @@ src_install () {
59 doins doc/example-config/*.{conf,ext}
60 insinto /etc/dovecot/conf.d
61 doins doc/example-config/conf.d/*.{conf,ext}
62 - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext
63 + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext
64 rm -f "${confd}/../README"
65
66 # .maildir is the Gentoo default
67
68 diff --git a/net-mail/dovecot/dovecot-2.3.7.1.ebuild b/net-mail/dovecot/dovecot-2.3.7.1.ebuild
69 index 9ca01af7c7f..89f0139e20b 100644
70 --- a/net-mail/dovecot/dovecot-2.3.7.1.ebuild
71 +++ b/net-mail/dovecot/dovecot-2.3.7.1.ebuild
72 @@ -164,8 +164,8 @@ src_install () {
73 # better:
74 if use suid;then
75 einfo "Changing perms to allow deliver to be suided"
76 - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
77 - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
78 + fowners root:mail "/usr/libexec/dovecot/dovecot-lda"
79 + fperms 4750 "/usr/libexec/dovecot/dovecot-lda"
80 fi
81
82 newinitd "${FILESDIR}"/dovecot.init-r6 dovecot
83 @@ -191,7 +191,7 @@ src_install () {
84 doins doc/example-config/*.{conf,ext}
85 insinto /etc/dovecot/conf.d
86 doins doc/example-config/conf.d/*.{conf,ext}
87 - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext
88 + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext
89 rm -f "${confd}/../README"
90
91 # .maildir is the Gentoo default
92
93 diff --git a/net-mail/dovecot/dovecot-2.3.7.2.ebuild b/net-mail/dovecot/dovecot-2.3.7.2.ebuild
94 index 38e14dd4818..f94d4cf9aac 100644
95 --- a/net-mail/dovecot/dovecot-2.3.7.2.ebuild
96 +++ b/net-mail/dovecot/dovecot-2.3.7.2.ebuild
97 @@ -164,8 +164,8 @@ src_install () {
98 # better:
99 if use suid;then
100 einfo "Changing perms to allow deliver to be suided"
101 - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
102 - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda"
103 + fowners root:mail "/usr/libexec/dovecot/dovecot-lda"
104 + fperms 4750 "/usr/libexec/dovecot/dovecot-lda"
105 fi
106
107 newinitd "${FILESDIR}"/dovecot.init-r6 dovecot
108 @@ -191,7 +191,7 @@ src_install () {
109 doins doc/example-config/*.{conf,ext}
110 insinto /etc/dovecot/conf.d
111 doins doc/example-config/conf.d/*.{conf,ext}
112 - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext
113 + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext
114 rm -f "${confd}/../README"
115
116 # .maildir is the Gentoo default