Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/
Date: Sun, 11 Aug 2019 11:20:54
Message-Id: 1565522407.1bb0d0081c1134b102924c2b9056363d1da496cc.soap@gentoo
1 commit: 1bb0d0081c1134b102924c2b9056363d1da496cc
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 11 11:20:07 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 11 11:20:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb0d008
7
8 net-mail/mailbase: [QA] Fix missing trailing slash
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-mail/mailbase/mailbase-1.4.ebuild | 8 ++++----
14 1 file changed, 4 insertions(+), 4 deletions(-)
15
16 diff --git a/net-mail/mailbase/mailbase-1.4.ebuild b/net-mail/mailbase/mailbase-1.4.ebuild
17 index 157b09c6105..30ec0e15153 100644
18 --- a/net-mail/mailbase/mailbase-1.4.ebuild
19 +++ b/net-mail/mailbase/mailbase-1.4.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 @@ -60,8 +60,8 @@ get_permissions_oct() {
27 pkg_postinst() {
28 # bug 614396
29 if [[ "$(get_permissions_oct /var/spool/mail)" != "3775" ]] ; then
30 - einfo "Fixing ${ROOT}var/spool/mail/ permissions"
31 - chown root:mail "${ROOT}var/spool/mail/"
32 - chmod 03775 "${ROOT}var/spool/mail/"
33 + einfo "Fixing ${ROOT}/var/spool/mail/ permissions"
34 + chown root:mail "${ROOT}/var/spool/mail/"
35 + chmod 03775 "${ROOT}/var/spool/mail/"
36 fi
37 }